/*
Theme Name: TGC KIDS CLUB
Theme URI: https://tgckidsclub.jp
Author: W TOKYO
Author URI: https://www.w-tokyo.co.jp
Description: TGC KIDS CLUB公式WordPressテーマ - 東京ガールズコレクション主催のキッズスクール
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tgc-kids-club
Tags: custom-menu, custom-logo, featured-images, full-width-template, one-column, blog

TGC KIDS CLUB - ポップ＆キュートデザイン
サンリオ/ちいかわ/ナチュール風
*/

/* ========================================
   TGC KIDS CLUB - ポップ＆キュートデザイン
   サンリオ/ちいかわ/ナチュール風
   ======================================== */

/* Google Fonts - 丸みのあるかわいいフォント */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ========================================
   ローディングアニメーション
   ======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/hero.webp') center/cover no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.loading-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.loading-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    width: 280px;
    height: auto;
}

@media (min-width: 768px) {
    .loading-logo-container {
        width: 380px;
    }
}

.loading-logo-img {
    width: 100%;
    height: auto;
    display: block;
}

.loading-logo-outline {
    filter: brightness(0) invert(1);
    opacity: 0.3;
}

.loading-logo-fill {
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0) invert(0);
    clip-path: inset(0 100% 0 0);
    animation: logoReveal 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

@keyframes logoReveal {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        clip-path: inset(0 0% 0 0);
        opacity: 1;
    }
}

.loading-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
    animation: loadingDotPulse 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(1) { animation-delay: 0s; }
.loading-dot:nth-child(2) { animation-delay: 0.15s; }
.loading-dot:nth-child(3) { animation-delay: 0.3s; }
.loading-dot:nth-child(4) { animation-delay: 0.45s; }
.loading-dot:nth-child(5) { animation-delay: 0.6s; }

@keyframes loadingDotPulse {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.loading-message {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.loading-stars {
    display: none;
}

.loading-star,
.loading-heart {
    display: none;
}

/* ========================================
   リセット & ベーススタイル
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'M PLUS Rounded 1c', 'Nunito', 'Hiragino Maru Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    font-size: 18px; /* SP: 最小フォントサイズ */
    line-height: 1.7;
    color: var(--color-black);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* PC: 最小フォントサイズ 18px */
@media (min-width: 768px) {
    body {
        font-size: 18px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ========================================
   カラー変数（マットなパステルスタイル）
   ======================================== */
:root {
    /* メインカラー - ポップ＆ビビッド（新LPトンマナ） */
    --color-pink: #FF6B9D;
    --color-pink-light: #FFD1DC;
    --color-pink-hover: #FF5085;
    --color-purple: #B8A4E3;
    --color-purple-light: #E8E0F5;
    --color-green: #8DD7A6;
    --color-green-light: #D4F5E0;
    --color-blue: #7DD3E8;
    --color-blue-light: #D0E9F7;
    --color-yellow: #FFD56B;
    --color-yellow-light: #FFF0C9;
    --color-coral: #FFAB91;
    --color-coral-light: #FFDDD4;
    --color-mint: #7FDBCA;
    --color-mint-light: #D0F5ED;
    --color-orange: #FFB366;
    
    /* ベーシックカラー */
    --color-black: #333333;
    --color-white: #FFFFFF;
    --color-gray: #7A7A7A;
    --color-gray-light: #F5F5F5;
    --color-border: #E8E8E8;
    
    /* 背景カラー - より明るく柔らかく */
    --bg-cream: #FFFEF9;
    --bg-lavender: #FAF7FF;
    --bg-sky: #F5FBFF;
    --bg-mint: #F5FFFB;
    --bg-peach: #FFF9F5;
}

/* ========================================
   レイアウト
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
}

.sp {
    display: none;
}

@media (max-width: 768px) {
    .sp {
        display: block;
    }
}

@media (max-width: 768px) {
    .pc {
        display: none;
    }
}

/* ========================================
   装飾パターン用の共通スタイル
   ======================================== */

/* ドットパターン背景 */
.pattern-dots {
    background-image: radial-gradient(var(--color-pink-light) 2px, transparent 2px);
    background-size: 24px 24px;
}

.pattern-dots-blue {
    background-image: radial-gradient(var(--color-blue-light) 2px, transparent 2px);
    background-size: 24px 24px;
}

.pattern-dots-yellow {
    background-image: radial-gradient(var(--color-yellow-light) 2.5px, transparent 2.5px);
    background-size: 28px 28px;
}

/* ストライプパターン */
.pattern-stripes {
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 180, 200, 0.1) 10px,
        rgba(255, 180, 200, 0.1) 20px
    );
}

/* ========================================
   波形セクションディバイダー（サンリオ風）
   ======================================== */

/* 波形の基本スタイル */
.wave-divider {
    position: absolute;
    width: 100%;
    height: 120px;
    bottom: 0;
    left: 0;
    z-index: 5;
    overflow: visible;
    pointer-events: none;
}

.wave-divider-top {
    top: 0;
    bottom: auto;
    transform: scaleY(-1);
}

/* ========================================
   多様な境界線デザイン
   ======================================== */
.section-divider {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
    line-height: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
}

/* 斜め直線 */
.divider-slant {
    height: 100px;
}

.divider-slant svg {
    height: 100px;
}

/* 斜め直線（反対方向） */
.divider-slant-reverse {
    height: 100px;
}

.divider-slant-reverse svg {
    height: 100px;
}

/* ギザギザ（三角形） */
.divider-zigzag {
    height: 80px;
}

.divider-zigzag svg {
    height: 80px;
}

/* 半円/スカラップ */
.divider-scallop {
    height: 80px;
}

.divider-scallop svg {
    height: 80px;
}

/* 山形/V字 */
.divider-arrow {
    height: 100px;
}

.divider-arrow svg {
    height: 100px;
}

/* 細かいギザギザ */
.divider-teeth {
    height: 60px;
}

.divider-teeth svg {
    height: 60px;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .divider-slant,
    .divider-slant-reverse,
    .divider-arrow {
        height: 60px;
    }
    
    .divider-slant svg,
    .divider-slant-reverse svg,
    .divider-arrow svg {
        height: 60px;
    }
    
    .divider-zigzag,
    .divider-scallop {
        height: 50px;
    }
    
    .divider-zigzag svg,
    .divider-scallop svg {
        height: 50px;
    }
    
    .divider-teeth {
        height: 40px;
    }
    
    .divider-teeth svg {
        height: 40px;
    }
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* 波形バリエーション */

/* 波形1: シンプルな1つの波 */
.wave-simple::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wave-color, var(--color-white));
    clip-path: ellipse(70% 100% at 50% 100%);
}

/* 波形2: ダブルウェーブ */
.wave-double {
    height: 120px;
}

.wave-double::before,
.wave-double::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave-double::before {
    bottom: 0;
    background: var(--wave-color, var(--color-white));
    clip-path: ellipse(60% 80% at 30% 100%);
    opacity: 0.5;
}

.wave-double::after {
    bottom: 0;
    background: var(--wave-color, var(--color-white));
    clip-path: ellipse(55% 70% at 70% 100%);
}

/* 波形3: 流れるような複数の波 */
.wave-flow {
    height: 150px;
}

.wave-flow::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--wave-color-light, rgba(255,255,255,0.4));
    border-radius: 100% 100% 0 0;
    transform: translateY(30%);
}

.wave-flow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 80%;
    background: var(--wave-color, var(--color-white));
    border-radius: 100% 100% 0 0;
    transform: translateY(20%);
}

/* 波形4: カーブ（画像2枚目のような） */
.wave-curve {
    height: 80px;
}

.wave-curve::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 200%;
    background: var(--wave-color, var(--color-white));
    border-radius: 50%;
}

/* 波形5: 斜めスライス */
.wave-slant::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wave-color, var(--color-white));
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* 波形6: ソフトウェーブ（メイン使用） */
.wave-soft {
    height: 100px;
}

.wave-soft::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 150%;
    background: var(--wave-color, var(--color-white));
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* 多層波形 */
.wave-layers {
    height: 120px;
}

.wave-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-layer-1 {
    opacity: 0.3;
    transform: translateY(-30px);
}

.wave-layer-1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 55%;
    height: 120%;
    background: var(--wave-color, var(--color-pink-light));
    border-radius: 0 100% 0 0;
}

.wave-layer-2 {
    opacity: 0.5;
    transform: translateY(-15px);
}

.wave-layer-2::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 60%;
    height: 100%;
    background: var(--wave-color, var(--color-pink-light));
    border-radius: 100% 0 0 0;
}

.wave-layer-3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--wave-color, var(--color-white));
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .wave-divider,
    .wave-simple,
    .wave-curve,
    .wave-soft {
        height: 60px;
    }
    
    .wave-double,
    .wave-layers {
        height: 80px;
    }
    
    .wave-flow {
        height: 100px;
    }
}

/* 各セクション用の波形スタイル */
.wave-hero-to-news,
.wave-news-to-about,
.wave-about-to-course,
.wave-course-to-cta,
.wave-cta-to-faq,
.wave-faq-to-company,
.wave-company-to-footer {
    height: 120px;
    z-index: 10;
}

.wave-hero-to-news svg,
.wave-news-to-about svg,
.wave-about-to-course svg,
.wave-course-to-cta svg,
.wave-cta-to-faq svg,
.wave-faq-to-company svg,
.wave-company-to-footer svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .wave-hero-to-news,
    .wave-news-to-about,
    .wave-about-to-course,
    .wave-course-to-cta,
    .wave-cta-to-faq,
    .wave-faq-to-company,
    .wave-company-to-footer {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .wave-hero-to-news,
    .wave-news-to-about,
    .wave-about-to-course,
    .wave-course-to-cta,
    .wave-cta-to-faq,
    .wave-faq-to-company,
    .wave-company-to-footer {
        height: 60px;
    }
}

/* ========================================
   かわいい装飾要素
   ======================================== */
.decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* 星の装飾 */
.deco-star {
    width: 30px;
    height: 30px;
    background: var(--color-yellow);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 2s ease-in-out infinite;
}

.deco-star.star-pink {
    background: var(--color-pink);
}

.deco-star.star-purple {
    background: var(--color-purple);
}

.deco-star.star-blue {
    background: var(--color-blue);
}

@keyframes twinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(15deg); opacity: 0.8; }
}

/* ハートの装飾 */
.deco-heart {
    width: 24px;
    height: 24px;
    position: relative;
}

.deco-heart::before,
.deco-heart::after {
    content: '';
    position: absolute;
    top: 0;
    width: 12px;
    height: 20px;
    background: var(--color-pink);
    border-radius: 12px 12px 0 0;
}

.deco-heart::before {
    left: 12px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.deco-heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

/* 雲の装飾 */
.deco-cloud {
    width: 60px;
    height: 30px;
    background: var(--color-white);
    border-radius: 30px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.deco-cloud::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--color-white);
    border-radius: 50%;
    top: -12px;
    left: 10px;
}

.deco-cloud::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: var(--color-white);
    border-radius: 50%;
    top: -18px;
    right: 10px;
}

/* リボンの装飾 */
.deco-ribbon {
    width: 40px;
    height: 30px;
    position: relative;
}

.deco-ribbon::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--color-pink);
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
    left: 0;
    top: 5px;
}

.deco-ribbon::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--color-pink);
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    right: 0;
    top: 5px;
}

/* キラキラ装飾 */
.deco-sparkle {
    width: 20px;
    height: 20px;
    position: relative;
}

.deco-sparkle::before,
.deco-sparkle::after {
    content: '';
    position: absolute;
    background: var(--color-yellow);
}

.deco-sparkle::before {
    width: 4px;
    height: 20px;
    left: 8px;
    top: 0;
    border-radius: 2px;
}

.deco-sparkle::after {
    width: 20px;
    height: 4px;
    left: 0;
    top: 8px;
    border-radius: 2px;
}

/* 丸装飾（浮遊） */
.deco-circle {
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, 
        var(--color-pink) 0%, 
        #ff9fc4 50%, 
        var(--color-pink) 100%);
    background-size: 200% 100%;
    border-bottom: 4px solid var(--color-pink-hover);
    box-shadow: 0 4px 20px rgba(255, 143, 171, 0.3);
    animation: headerShimmer 8s ease-in-out infinite;
}

@keyframes headerShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 16px;
    }
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-white);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 12px;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .nav-link {
        font-size: 18px;
    }
}

.nav-link:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    font-size: 18px;
    transition: transform 0.3s;
}

@media (min-width: 768px) {
    .nav-link::after {
        font-size: 18px;
    }
}

.nav-link:hover::after {
    transform: translateX(-50%) scale(1);
}

/* ヘッダー右側 */
.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ソーシャルアイコン */
.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icon {
    color: var(--color-white);
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.social-icon:hover {
    background: var(--color-white);
    color: var(--color-pink);
    transform: translateY(-3px) rotate(10deg);
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

/* モバイルメニュー */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 26px;
    height: 3px;
    background: var(--color-white);
    transition: all 0.3s;
    border-radius: 3px;
}

.mobile-menu {
    display: none;
    border-top: 2px dashed rgba(255, 255, 255, 0.4);
    padding: 20px 0;
    background: var(--color-pink);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-white);
    padding: 14px 24px;
    transition: all 0.3s;
    border-radius: 16px;
    margin: 0 16px;
}

@media (min-width: 768px) {
    .mobile-nav-link {
        font-size: 18px;
    }
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    margin-top: 16px;
    padding: 10px 20px;
}

/* ========================================
   ボタン（ポップスタイル）
   ======================================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .btn {
        font-size: 18px;
    }
}

/* ボタン共通のかわいいエフェクト */
.btn::before {
    content: '';
    position: absolute;
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .btn::before {
        font-size: 18px;
    }
}

.btn:hover::before {
    opacity: 1;
    animation: btnSparkle 0.5s ease;
}

@keyframes btnSparkle {
    0% { top: 50%; left: 10%; transform: scale(0); }
    50% { transform: scale(1.5); }
    100% { top: 20%; left: 80%; transform: scale(0); }
}

.btn-primary {
    background: linear-gradient(135deg, #fa505e 0%, #FF6B9D 100%);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-pink {
    background: linear-gradient(135deg, #fa505e 0%, #FF6B9D 100%);
    color: var(--color-white);
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.btn-pink:active {
    transform: translateY(0);
}

.btn-black {
    background: linear-gradient(135deg, #B8A4E3 0%, #9B8AD1 100%);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-black:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.btn-white {
    background: var(--color-white);
    color: #fa505e;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.btn-hero {
    background: linear-gradient(135deg, #fa505e 0%, #FF6B9D 100%);
    color: var(--color-white);
    padding: 20px 56px;
    font-size: 20px;
    font-weight: 900;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.btn-cta {
    background: var(--color-white);
    color: #fa505e;
    padding: 20px 56px;
    font-size: 20px;
    font-weight: 900;
    border: 3px solid #fa505e;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #fa505e;
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ========================================
   4パネル分割ヒーローセクション
   ======================================== */
.hero-panels {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    overflow: hidden;
}

/* パネルグリッド */
.hero-panel-grid {
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100svh;
}

/* 各パネル共通 */
.hero-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.panel-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.panel-img.active {
    opacity: 1;
}

.panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.panel-overlay {
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    opacity: 0.45;
}

/* パネル1: ピンク - ビビッド */
.panel-pink .panel-overlay {
    background: linear-gradient(180deg, 
        rgba(255, 107, 157, 0.8) 0%, 
        rgba(255, 80, 130, 0.5) 50%,
        rgba(255, 60, 110, 0.3) 100%);
}

/* パネル2: イエロー - ビビッド */
.panel-yellow .panel-overlay {
    background: linear-gradient(180deg, 
        rgba(254, 216, 120, 0.8) 0%, 
        rgba(255, 200, 80, 0.5) 50%,
        rgba(255, 180, 50, 0.3) 100%);
}

/* パネル3: シアン - ビビッド */
.panel-cyan .panel-overlay {
    background: linear-gradient(180deg, 
        rgba(125, 211, 232, 0.8) 0%, 
        rgba(100, 200, 220, 0.5) 50%,
        rgba(80, 190, 210, 0.3) 100%);
}

/* パネル4: パープル - ビビッド */
.panel-purple .panel-overlay {
    background: linear-gradient(180deg, 
        rgba(184, 164, 227, 0.8) 0%, 
        rgba(160, 140, 210, 0.5) 50%,
        rgba(140, 120, 200, 0.3) 100%);
}

/* パネルホバーエフェクト */
.hero-panel {
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}




/* 中央下部のテキストブロック */
.hero-text-block {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

.hero-sub-copy {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

.hero-main-title {
    font-family: 'Nunito', 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
    background: -webkit-linear-gradient(-45deg, #fed878 0%, #fa505e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #fff;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.hero-brand-script {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(20px, 3.5vw, 36px);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.7s forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スクロールインジケーター */
.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 1s forwards;
}

.scroll-label {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    writing-mode: vertical-rl;
}

.scroll-bar-anim {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 1;
        transform: scaleY(1);
    }
    50% { 
        opacity: 0.3;
        transform: scaleY(0.5);
    }
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .hero-main-title {
        font-size: clamp(32px, 6vw, 60px);
    }
    
    .hero-brand-script {
        font-size: clamp(20px, 3.5vw, 36px);
    }
}

@media (max-width: 767px) {
    .hero-panel-grid {
        height: 100svh;
    }
    
    /* モバイルでは2x2グリッドに */
    .hero-panel-grid {
        flex-wrap: wrap;
    }
    
    .hero-panel {
        flex: 1 1 50%;
        min-height: 50vh;
    }
    
    }
    
    
    .hero-text-block {
        bottom: 8%;
    }
    
    .hero-main-title {
        font-size: clamp(28px, 8vw, 48px);
        letter-spacing: 0.05em;
    }
    
    .hero-sub-copy {
        font-size: clamp(12px, 3vw, 14px);
        letter-spacing: 0.1em;
    }
    
    .hero-brand-script {
        font-size: clamp(18px, 5vw, 28px);
    }
    
    .hero-scroll-indicator {
        right: 15px;
        bottom: 15px;
    }
    
    .scroll-bar-anim {
        height: 35px;
    }

@media (max-width: 480px) {
    .hero-text-block {
        bottom: 6%;
    }
    
    .hero-main-title {
        font-size: clamp(24px, 7vw, 36px);
    }
    
    .hero-sub-copy {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .hero-brand-script {
        font-size: clamp(16px, 5vw, 24px);
    }
}

/* ========================================
   セクション斜め境界線（完璧版）
   ======================================== */
.slant-divider {
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: -1px;
    margin-bottom: -1px;
    line-height: 0;
    overflow: hidden;
}

.slant-divider svg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .slant-divider {
        height: 50px;
    }
}

/* ========================================
   YouTubeセクション
   ======================================== */
.youtube-section {
    position: relative;
    padding: 100px 20px;
    background: #EDE5DB;
    overflow: hidden;
}

.youtube-bg-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
}

/* ブロブ */
.yt-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.yt-blob-1 {
    width: 350px;
    height: 350px;
    background: #fff;
    top: -100px;
    left: -100px;
}

.yt-blob-2 {
    width: 300px;
    height: 300px;
    background: #fff;
    bottom: -100px;
    right: -100px;
}

.youtube-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.youtube-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.label-line {
    width: 30px;
    height: 1px;
    background: #999;
}

.youtube-frame {
    background: #fff;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.youtube-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .youtube-section {
        padding: 120px 40px;
    }
    
    .youtube-label {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .youtube-frame {
        padding: 20px;
        border-radius: 40px;
    }
    
    .youtube-embed {
        border-radius: 25px;
    }
}

/* ========================================
   ヒーローセクション - 旧デザイン（バックアップ）
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFF0F5 0%, #FFE4EC 50%, #FFF5F8 100%);
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
    padding: 120px 20px 200px;
}

.hero-kidzania {
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 143, 171, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 164, 227, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 213, 107, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, #FFF5F8 0%, #FFF0F5 30%, #F8F4FF 70%, #F0F8FF 100%);
}

/* 3Dパララックス背景レイヤー */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-bg-layer-1 {
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 213, 107, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(184, 164, 227, 0.25) 0%, transparent 35%);
    animation: bgFloat1 20s ease-in-out infinite;
}

.hero-bg-layer-2 {
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 143, 171, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 20% 70%, rgba(127, 219, 202, 0.2) 0%, transparent 30%);
    animation: bgFloat2 25s ease-in-out infinite;
}

.hero-bg-layer-3 {
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 40%);
    animation: bgFloat3 15s ease-in-out infinite;
}

@keyframes bgFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes bgFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 30px) scale(1.05); }
}

@keyframes bgFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(10px, -10px) scale(1.15); opacity: 0.8; }
}

/* 浮遊パーティクル */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: 20px;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.particle-star { color: var(--color-yellow); font-size: 24px; }
.particle-heart { color: var(--color-pink); font-size: 22px; }
.particle-circle { color: var(--color-mint); font-size: 18px; }
.particle-sparkle { color: var(--color-purple); font-size: 18px; }

@keyframes particleFloat {
    0%, 100% {
        opacity: 0; 
        transform: translateY(0) rotate(0deg) scale(0.5); 
    }
    10% { opacity: 1; }
    50% { 
        opacity: 1; 
        transform: translateY(-40px) rotate(180deg) scale(1.2); 
    }
    90% { opacity: 1; }
}

/* リボン装飾 */
.hero-ribbons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ribbon {
    position: absolute;
    width: 300px;
    height: 60px;
    opacity: 0.15;
}

.ribbon-1 {
    top: 15%;
    left: -50px;
    background: linear-gradient(90deg, transparent, var(--color-pink), transparent);
    transform: rotate(-15deg);
    animation: ribbonFloat1 12s ease-in-out infinite;
}

.ribbon-2 {
    top: 60%;
    right: -80px;
    background: linear-gradient(90deg, transparent, var(--color-purple), transparent);
    transform: rotate(20deg);
    animation: ribbonFloat2 15s ease-in-out infinite;
}

.ribbon-3 {
    bottom: 25%;
    left: 10%;
    background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
    transform: rotate(-8deg);
    animation: ribbonFloat3 10s ease-in-out infinite;
}

@keyframes ribbonFloat1 {
    0%, 100% { transform: rotate(-15deg) translateX(0); }
    50% { transform: rotate(-12deg) translateX(50px); }
}

@keyframes ribbonFloat2 {
    0%, 100% { transform: rotate(20deg) translateX(0); }
    50% { transform: rotate(18deg) translateX(-40px); }
}

@keyframes ribbonFloat3 {
    0%, 100% { transform: rotate(-8deg) translateX(0); }
    50% { transform: rotate(-5deg) translateX(30px); }
}

/* メインコンテンツ - キッザニア風 */
.hero-content-kidzania {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    padding: 0 20px;
}

/* ロゴバッジ */
.hero-badge {
    position: relative;
    width: 180px;
    height: 180px;
    animation: badgeEntrance 1s ease-out forwards;
    opacity: 0;
}

.hero-badge-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ffffff, #fff5f8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 40px rgba(255, 143, 171, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 -5px 20px rgba(255, 143, 171, 0.1);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge .hero-logo-img {
    width: 120px;
    height: auto;
}

.hero-badge-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px dashed var(--color-pink);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
    opacity: 0.5;
}

.hero-badge-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-badge-sparkles span {
    position: absolute;
    color: var(--color-yellow);
    font-size: 18px;
    animation: sparkleGlow 2s ease-in-out infinite;
}

.hero-badge-sparkles span:nth-child(1) { top: -5px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hero-badge-sparkles span:nth-child(2) { top: 50%; right: -5px; transform: translateY(-50%); animation-delay: 0.5s; }
.hero-badge-sparkles span:nth-child(3) { bottom: -5px; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.hero-badge-sparkles span:nth-child(4) { top: 50%; left: -5px; transform: translateY(-50%); animation-delay: 1.5s; }

@keyframes badgeEntrance {
    0% { opacity: 0; transform: scale(0.5) rotate(-10deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes sparkleGlow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.3); }
}

/* キャッチコピー */
.hero-catchcopy {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-title-fancy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 36px;
    font-weight: bold;
    color: var(--color-black);
    line-height: 1.4;
}

.hero-title-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}

.char-animate {
    display: inline-block;
    animation: charBounce 0.6s ease-out forwards;
    opacity: 0;
    text-shadow: 
        3px 3px 0 var(--color-white),
        -1px -1px 0 var(--color-white),
        1px -1px 0 var(--color-white),
        -1px 1px 0 var(--color-white);
}

.hero-title-line-1 .char-animate:nth-child(1) { animation-delay: 0.5s; }
.hero-title-line-1 .char-animate:nth-child(2) { animation-delay: 0.55s; }
.hero-title-line-1 .char-animate:nth-child(3) { animation-delay: 0.6s; }
.hero-title-line-1 .char-animate:nth-child(4) { animation-delay: 0.65s; }
.hero-title-line-1 .char-animate:nth-child(5) { animation-delay: 0.7s; }
.hero-title-line-1 .char-animate:nth-child(6) { animation-delay: 0.75s; }
.hero-title-line-1 .char-animate:nth-child(7) { animation-delay: 0.8s; }

.hero-title-line-2 .char-animate:nth-child(1) { animation-delay: 0.9s; }
.hero-title-line-2 .char-animate:nth-child(2) { animation-delay: 0.95s; }
.hero-title-line-2 .char-animate:nth-child(3) { animation-delay: 1s; }
.hero-title-line-2 .char-animate:nth-child(4) { animation-delay: 1.05s; }
.hero-title-line-2 .char-animate:nth-child(5) { animation-delay: 1.1s; }
.hero-title-line-2 .char-animate:nth-child(6) { animation-delay: 1.15s; }
.hero-title-line-2 .char-animate:nth-child(7) { animation-delay: 1.2s; }
.hero-title-line-2 .char-animate:nth-child(8) { animation-delay: 1.25s; }

.hero-title-accent {
    color: var(--color-pink);
    animation: heartPop 0.5s ease-out forwards, heartBeat 2s ease-in-out infinite 1.5s;
    opacity: 0;
}

.hero-title-line-2 .hero-title-accent:first-child { animation-delay: 0.85s, 1.5s; }
.hero-title-line-2 .hero-title-accent:last-child { animation-delay: 1.3s, 1.5s; }

@keyframes charBounce {
    0% { opacity: 0; transform: translateY(30px) scale(0.5); }
    60% { transform: translateY(-5px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heartPop {
    0% { opacity: 0; transform: scale(0); }
    70% { transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

/* サブテキスト */
.hero-description {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 1.5s forwards;
    opacity: 0;
}

.highlight-text {
    display: inline-block;
    background: linear-gradient(transparent 60%, rgba(255, 143, 171, 0.3) 60%);
    font-weight: bold;
    color: var(--color-black);
}

/* CTAボタングループ */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 1s ease-out 1.8s forwards;
    opacity: 0;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--color-pink) 0%, #ff6b8a 100%);
    color: var(--color-white);
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 
        0 10px 30px rgba(255, 143, 171, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 143, 171, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary .btn-icon {
    animation: starSpin 3s linear infinite;
}

@keyframes starSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    background: transparent;
    color: var(--color-black);
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
    border: 2px solid var(--color-black);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-hero-secondary .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-hero-secondary:hover .btn-arrow {
    transform: translateX(5px);
}

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 2.2s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-black);
    border-radius: 20px;
    position: relative;
    opacity: 0.6;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--color-black);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

.scroll-text {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--color-black);
    opacity: 0.6;
}

/* 下部の曲線 */
.hero-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 5;
}

.hero-bottom-curve svg {
    width: 100%;
    height: 100%;
}

/* レスポンシブ */
@media (min-width: 768px) {
    .hero {
        padding: 140px 40px 200px;
    }
    
    .hero-badge {
        width: 220px;
        height: 220px;
    }
    
    .hero-badge .hero-logo-img {
        width: 150px;
    }
    
    .hero-title-fancy {
        font-size: 52px;
        gap: 15px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-cta-group {
        flex-direction: row;
        gap: 20px;
    }
    
    .scroll-indicator {
        bottom: 230px;
    }
    
    .particle {
        font-size: 28px;
    }
    
    .particle-star { font-size: 32px; }
    .particle-heart { font-size: 30px; }
}

@media (min-width: 1024px) {
    .hero-title-fancy {
        font-size: 64px;
    }
    
    .hero-badge {
    width: 250px;
    height: 250px;
    }
    
    .hero-badge .hero-logo-img {
        width: 170px;
    }
    
    .btn-hero-primary {
        padding: 20px 60px;
        font-size: 20px;
    }
    
    .ribbon {
        width: 500px;
        height: 80px;
    }
}

/* 装飾コンテナ */
.fluid-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

/* かわいい装飾ブロブ */
.fluid-blob {
    position: absolute;
    opacity: 0.7;
}

.fluid-blob-1 {
    width: 280px;
    height: 280px;
    background: var(--color-yellow);
    border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
    top: -80px;
    left: -80px;
    animation: morphBlob1 8s ease-in-out infinite;
}

.fluid-blob-2 {
    width: 220px;
    height: 220px;
    background: var(--color-purple-light);
    border-radius: 40% 60% 45% 55% / 55% 45% 55% 45%;
    top: 10%;
    right: -60px;
    animation: morphBlob2 7s ease-in-out infinite;
}

.fluid-blob-3 {
    width: 350px;
    height: 350px;
    background: var(--color-blue-light);
    border-radius: 55% 45% 40% 60% / 60% 40% 55% 45%;
    bottom: -120px;
    left: 5%;
    animation: morphBlob1 9s ease-in-out infinite reverse;
}

.fluid-blob-4 {
    width: 180px;
    height: 180px;
    background: var(--color-green-light);
    border-radius: 45% 55% 60% 40% / 40% 60% 45% 55%;
    bottom: 15%;
    right: 8%;
    animation: morphBlob2 6s ease-in-out infinite;
}

.fluid-blob-5 {
    width: 300px;
    height: 300px;
    background: var(--color-coral-light);
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: morphBlob3 8s ease-in-out infinite;
}

@keyframes morphBlob1 {
    0%, 100% {
        border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%;
        transform: translate(10px, -15px) rotate(5deg);
    }
    66% {
        border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
        transform: translate(-10px, 10px) rotate(-5deg);
    }
}

@keyframes morphBlob2 {
    0%, 100% {
        border-radius: 40% 60% 45% 55% / 55% 45% 55% 45%;
        transform: translate(0, 0) scale(1);
    }
    50% {
        border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
        transform: translate(-15px, 15px) scale(1.05);
    }
}

@keyframes morphBlob3 {
    0%, 100% {
        border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
        transform: translate(-50%, calc(-50% - 20px)) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .fluid-blob-1 { width: 180px; height: 180px; }
    .fluid-blob-2 { width: 140px; height: 140px; }
    .fluid-blob-3 { width: 220px; height: 220px; }
    .fluid-blob-4 { width: 120px; height: 120px; }
    .fluid-blob-5 { width: 180px; height: 180px; }
}

/* ヒーロー装飾 - 星やハート */
.hero-decoration {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.hero-star-1 {
    top: 15%;
    left: 10%;
    width: 40px;
    height: 40px;
    background: var(--color-yellow);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 3s ease-in-out infinite;
}

.hero-star-2 {
    top: 25%;
    right: 15%;
    width: 30px;
    height: 30px;
    background: var(--color-white);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 2.5s ease-in-out infinite 0.5s;
}

.hero-star-3 {
    bottom: 25%;
    left: 15%;
    width: 25px;
    height: 25px;
    background: var(--color-pink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 2s ease-in-out infinite 1s;
}

.hero-heart-1 {
    top: 20%;
    right: 25%;
    width: 35px;
    height: 32px;
    background: var(--color-pink);
    transform: rotate(-15deg);
    animation: heartBeat 2s ease-in-out infinite;
}

.hero-heart-1::before,
.hero-heart-1::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: var(--color-pink);
    border-radius: 50%;
}

.hero-heart-1::before {
    top: -17px;
    left: 0;
}

.hero-heart-1::after {
    top: 0;
    left: 17px;
}

@keyframes heartBeat {
    0%, 100% { transform: rotate(-15deg) scale(1); }
    50% { transform: rotate(-15deg) scale(1.1); }
}

.hero-cloud-1 {
    bottom: 20%;
    right: 10%;
    width: 80px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border-radius: 40px;
    animation: float 8s ease-in-out infinite;
}

.hero-cloud-1::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    top: -15px;
    left: 15px;
}

.hero-cloud-1::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    top: -22px;
    right: 12px;
}

/* ヒーローメインテキスト */
.hero-main-text {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-shadow: 
        2px 2px 0 var(--color-white),
        -2px -2px 0 var(--color-white),
        2px -2px 0 var(--color-white),
        -2px 2px 0 var(--color-white);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-sub-text {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-pink);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-main-text {
        font-size: 48px;
    }
    
    .hero-sub-text {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-main-text {
        font-size: 56px;
    }
    
    .hero-sub-text {
        font-size: 32px;
    }
}

/* キッズ画像（セクション下部に横並び配置） */
.hero-kids-row {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    z-index: 5;
    padding: 0 20px;
    pointer-events: none;
}

.hero-kid {
    pointer-events: auto;
    transition: all 0.4s ease;
}

.hero-kid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease;
}



/* 左の画像（ダンス） */
.hero-kid-left {
    width: 100px;
    height: 130px;
    animation: kidFloatLeft 6s ease-in-out infinite;
}

/* 中央の画像（モデル） */
.hero-kid-center {
    width: 130px;
    height: 170px;
    animation: kidFloatCenter 5s ease-in-out infinite 0.3s;
    z-index: 2;
}

/* 右の画像（ボーカル） */
.hero-kid-right {
    width: 100px;
    height: 130px;
    animation: kidFloatRight 6s ease-in-out infinite 0.6s;
}

@keyframes kidFloatLeft {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
}

@keyframes kidFloatCenter {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes kidFloatRight {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
}

/* タブレット */
@media (min-width: 768px) {
    .hero-kids-row {
        gap: 20px;
        bottom: 100px;
    }
    
    .hero-kid-left {
        width: 160px;
        height: 200px;
    }
    
    .hero-kid-center {
        width: 200px;
        height: 250px;
    }
    
    .hero-kid-right {
        width: 160px;
        height: 200px;
    }
}

/* PC */
@media (min-width: 1024px) {
    .hero-kids-row {
        gap: 40px;
        bottom: 100px;
    }
    
    .hero-kid-left {
        width: 200px;
        height: 260px;
    }
    
    .hero-kid-center {
        width: 260px;
        height: 330px;
    }
    
    .hero-kid-right {
        width: 200px;
        height: 260px;
    }
}

/* 大画面 */
@media (min-width: 1400px) {
    .hero-kids-row {
        gap: 60px;
    }
    
    .hero-kid-left {
        width: 240px;
        height: 310px;
    }
    
    .hero-kid-center {
        width: 300px;
        height: 380px;
    }
    
    .hero-kid-right {
        width: 240px;
        height: 310px;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo-img {
    height: 90px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 6px 20px rgba(255, 143, 171, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@media (min-width: 768px) {
    .hero-logo-img {
        height: 140px;
    }
}

.hero-text {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.9;
    margin-bottom: 48px;
    color: var(--color-black);
    text-shadow: 0 2px 4px rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
    .hero-text {
        font-size: 30px;
    }
}

/* ========================================
   セクション見出し（装飾付き）
   ======================================== */
.section-heading {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.section-heading-left {
    text-align: left;
}

.section-heading:not(.section-heading-left) {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* セクション見出しの装飾コンテナ */
.section-title-wrapper {
    position: relative;
    display: inline-block;
}

.section-title {
    font-size: 52px;
    font-weight: bold;
    color: var(--color-pink);
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    position: relative;
    display: inline-block;
    text-shadow: 3px 3px 0 var(--color-pink-light);
    padding: 0 80px;
}

/* メインの星装飾 - 左 */
.section-title::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--color-yellow);
    animation: starPop 2s ease-in-out infinite;
}

/* メインの星装飾 - 右 */
.section-title::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--color-purple);
    animation: starPop 2s ease-in-out infinite 1s;
}

@keyframes starPop {
    0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); }
    25% { transform: translateY(-50%) scale(1.3) rotate(15deg); }
    75% { transform: translateY(-50%) scale(0.9) rotate(-10deg); }
}

/* 追加の装飾要素 */
.section-heading-deco {
    position: absolute;
    pointer-events: none;
}

/* 左側の装飾群 */
.deco-left-1 {
    left: -60px;
    top: -20px;
    font-size: 18px;
    color: var(--color-pink);
    animation: floatDeco 3s ease-in-out infinite;
}

.deco-left-2 {
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--color-green);
    animation: floatDeco 2.5s ease-in-out infinite 0.5s;
}

.deco-left-3 {
    left: -55px;
    bottom: -15px;
    font-size: 18px;
    color: var(--color-blue);
    animation: floatDeco 3.5s ease-in-out infinite 1s;
}

/* 右側の装飾群 */
.deco-right-1 {
    right: -60px;
    top: -20px;
    font-size: 18px;
    color: var(--color-coral);
    animation: floatDeco 3s ease-in-out infinite 0.3s;
}

.deco-right-2 {
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--color-yellow);
    animation: floatDeco 2.8s ease-in-out infinite 0.8s;
}

.deco-right-3 {
    right: -50px;
    bottom: -15px;
    font-size: 18px;
    color: var(--color-mint);
    animation: floatDeco 3.2s ease-in-out infinite 1.2s;
}

@keyframes floatDeco {
    0%, 100% {
        transform: translateY(0) scale(1); 
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px) scale(1.1); 
        opacity: 1;
    }
}

/* キラキラエフェクト */
@keyframes sparkleFloat {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.6;
    }
    25% { 
        transform: scale(1.2) rotate(10deg); 
        opacity: 1;
    }
    50% { 
        transform: scale(0.8) rotate(-5deg); 
        opacity: 0.8;
    }
    75% { 
        transform: scale(1.1) rotate(5deg); 
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 40px;
        padding: 0 55px;
    }
    
    .section-title::before,
    .section-title::after {
        font-size: 18px;
    }
    
    .section-title::before {
        left: 5px;
    }
    
    .section-title::after {
        right: 5px;
    }
    
    .section-heading-deco {
        display: none;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 72px;
        padding: 0 90px;
    }
    
    .section-title::before,
    .section-title::after {
        font-size: 36px;
    }
    
    .section-title::before {
        left: 15px;
    }
    
    .section-title::after {
        right: 15px;
    }
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: 10px 32px;
    background: var(--color-white);
    border-radius: 30px;
    border: 3px dashed var(--color-pink-light);
    box-shadow: 0 4px 0 var(--color-pink-light);
    transition: all 0.3s ease;
}


/* サブタイトルの左右にかわいいドット */
.section-subtitle::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--color-pink);
    animation: dotPulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .section-subtitle::before {
        font-size: 18px;
    }
}

.section-subtitle::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--color-purple);
    animation: dotPulse 2s ease-in-out infinite 1s;
}

@media (min-width: 768px) {
    .section-subtitle::after {
        font-size: 18px;
    }
}

@keyframes dotPulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
    50% { transform: translateY(-50%) scale(1.5); opacity: 1; }
}

/* ========================================
   ニュースセクション
   ======================================== */
.news-section {
    position: relative;
    background: var(--bg-sky);
    overflow: visible;
    padding-bottom: 150px;
}

/* セクション背景の浮遊装飾 */
.section-float-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    font-size: 24px;
}

.float-deco-1 {
    top: 15%;
    left: 5%;
    color: var(--color-pink);
    animation: floatSlow 8s ease-in-out infinite;
}

.float-deco-2 {
    top: 30%;
    right: 8%;
    color: var(--color-yellow);
    animation: floatSlow 7s ease-in-out infinite 1s;
}

.float-deco-3 {
    bottom: 25%;
    left: 10%;
    color: var(--color-purple);
    animation: floatSlow 9s ease-in-out infinite 2s;
}

.float-deco-4 {
    bottom: 35%;
    right: 5%;
    color: var(--color-green);
    animation: floatSlow 6s ease-in-out infinite 0.5s;
}

.float-deco-5 {
    top: 50%;
    left: 3%;
    color: var(--color-blue);
    font-size: 18px;
    animation: floatSlow 10s ease-in-out infinite 1.5s;
}

.float-deco-6 {
    top: 20%;
    right: 3%;
    color: var(--color-coral);
    font-size: 20px;
    animation: floatSlow 8s ease-in-out infinite 2.5s;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@media (max-width: 768px) {
    .section-float-deco {
        display: none;
    }
}

/* 背景パターン */
.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(var(--color-blue-light) 2px, transparent 2px),
        radial-gradient(var(--color-white) 1.5px, transparent 1.5px);
    background-size: 32px 32px, 48px 48px;
    background-position: 0 0, 16px 16px;
    opacity: 0.6;
    z-index: 0;
}

.news-section .container {
    position: relative;
    z-index: 10;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.news-card {
    background: var(--color-white);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 28px;
    border: 4px solid var(--color-blue-light);
    box-shadow: 0 6px 0 var(--color-blue-light);
}


.news-image {
    overflow: hidden;
    height: 200px;
    position: relative;
    border-bottom: 4px dashed var(--color-blue-light);
}


.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}


.news-content {
    padding: 24px;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 16px;
    min-height: 48px;
    line-height: 1.5;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-date {
    font-size: 18px;
    color: var(--color-gray);
    font-weight: bold;
}

.news-badge {
    font-size: 18px;
    background: var(--color-pink);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 0 var(--color-pink-hover);
}

/* ========================================
   Aboutセクション
   ======================================== */
.about-section {
    background: var(--color-white);
    position: relative;
    overflow: visible;
    padding: 0;
}

/* 背景の装飾 */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(var(--color-pink-light) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-image-item {
    overflow: hidden;
    border-radius: 24px;
    transition: all 0.3s;
}


.about-image-item img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid var(--color-pink-light);
    transition: all 0.3s;
}


.about-image-2 {
    margin-top: 32px;
}

.about-image-3 {
    margin-top: -32px;
}

.about-content {
    position: relative;
    z-index: 5;
}

.about-heading {
    font-size: 40px;
    font-weight: bold;
    color: var(--color-black);
    line-height: 1.4;
    margin-bottom: 28px;
    text-shadow: 2px 2px 0 var(--color-pink-light);
}

@media (min-width: 768px) {
    .about-heading {
        font-size: 52px;
    }
}

@media (min-width: 1024px) {
    .about-heading {
        font-size: 60px;
    }
}

.text-pink {
    color: var(--color-pink);
    position: relative;
    display: inline-block;
}

.text-pink::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 0;
    font-size: 24px;
    animation: heartBeat 2s ease-in-out infinite;
}

.about-text {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 2;
    margin-bottom: 36px;
    padding: 20px;
    background: var(--color-pink-light);
    border-radius: 20px;
    border: 3px dashed var(--color-pink);
}

@media (min-width: 768px) {
    .about-text {
        font-size: 18px;
    }
}

/* スクロールテキスト */
.scrolling-section {
    position: relative;
    overflow: visible;
    background: var(--color-yellow-light);
    padding: 50px 0;
    border-top: 4px solid var(--color-yellow);
    border-bottom: 4px solid var(--color-yellow);
    z-index: 1;
}

/* 装飾の星を追加 */
.scrolling-section::before,
.scrolling-section::after {
    content: '';
    position: absolute;
    font-size: 60px;
    color: var(--color-yellow);
    opacity: 0.5;
    z-index: 5;
}

.scrolling-section::before {
    top: 50%;
    left: 5%;
    transform: translateY(-50%) rotate(-15deg);
}

.scrolling-section::after {
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(15deg);
}

.scrolling-text {
    display: flex;
    white-space: nowrap;
    animation: scroll 25s linear infinite;
    position: relative;
    z-index: 10;
}

.scrolling-text span {
    font-size: 70px;
    font-weight: bold;
    color: var(--color-pink);
    margin-right: 50px;
    text-shadow: 4px 4px 0 var(--color-pink-light);
}

@media (min-width: 768px) {
    .scrolling-text span {
        font-size: 110px;
    }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   コースセクション
   ======================================== */
.course-section {
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(255, 213, 107, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(255, 143, 171, 0.1) 0%, transparent 50%),
        var(--bg-cream);
    position: relative;
    overflow: visible;
    padding-bottom: 150px;
}

/* 背景パターン */
.course-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(var(--color-yellow-light) 3px, transparent 3px),
        radial-gradient(var(--color-pink-light) 2px, transparent 2px);
    background-size: 35px 35px, 50px 50px;
    background-position: 0 0, 17px 17px;
    opacity: 0.6;
    z-index: 0;
}

.course-section .container {
    position: relative;
    z-index: 5;
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .course-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.course-card {
    background: var(--color-white);
    border: 5px solid var(--color-yellow);
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 0 var(--color-yellow);
    overflow: hidden;
    position: relative;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--color-yellow);
    animation: twinkle 2s ease-in-out infinite;
    z-index: 10;
}


.course-card:nth-child(1) {
    border-color: var(--color-green);
    box-shadow: 0 8px 0 var(--color-green);
}

.course-card:nth-child(1)::before {
    color: var(--color-green);
}


.course-card:nth-child(2) {
    border-color: var(--color-pink);
    box-shadow: 0 8px 0 var(--color-pink);
}

.course-card:nth-child(2)::before {
    color: var(--color-pink);
}


.course-card:nth-child(3) {
    border-color: var(--color-purple);
    box-shadow: 0 8px 0 var(--color-purple);
}

.course-card:nth-child(3)::before {
    color: var(--color-purple);
}


.course-header {
    text-align: center;
    padding: 28px;
    background: var(--color-green-light);
    border-bottom: 4px dashed var(--color-green);
    position: relative;
}

.course-card:nth-child(2) .course-header {
    background: var(--color-pink-light);
    border-color: var(--color-pink);
}

.course-card:nth-child(3) .course-header {
    background: var(--color-purple-light);
    border-color: var(--color-purple);
}

/* コースアイコン */
.course-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--color-white);
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.course-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 3px dashed currentColor;
    opacity: 0.3;
    animation: iconRotate 10s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.course-icon-beginner {
    background: var(--color-green);
}

.course-icon-beginner::before {
    color: var(--color-green);
}

.course-icon-standard {
    background: var(--color-pink);
}

.course-icon-standard::before {
    color: var(--color-pink);
}

.course-icon-standard i {
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(15deg); }
}

.course-icon-pro {
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 100%);
}

.course-icon-pro::before {
    color: var(--color-yellow);
}

.course-icon-pro i {
    animation: crownBounce 2s ease-in-out infinite;
}

@keyframes crownBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.course-title {
    font-size: 26px;
    font-weight: bold;
    color: var(--color-black);
    letter-spacing: 0.05em;
}

.course-body {
    padding: 32px 24px;
    text-align: center;
}

.course-frequency {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-green);
    margin-bottom: 12px;
}

.course-card:nth-child(2) .course-frequency {
    color: var(--color-pink);
}

.course-card:nth-child(3) .course-frequency {
    color: var(--color-purple);
}

.course-info {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: bold;
}

/* ========================================
   CTAセクション
   ======================================== */
.cta-section {
    background: var(--color-mint-light);
    padding: 100px 0;
    padding-bottom: 150px;
    text-align: center;
    position: relative;
    overflow: visible;
}

/* 背景装飾 */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L33 15 L43 15 L35 22 L38 32 L30 26 L22 32 L25 22 L17 15 L27 15 Z' fill='%237FDBCA' fill-opacity='0.3'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    opacity: 0.5;
    z-index: 0;
}

/* 左右のリボン装飾 */
.cta-section::after {
    content: '🎀';
    position: absolute;
    font-size: 80px;
    opacity: 0.3;
    top: 50%;
    left: 5%;
    transform: translateY(-50%) rotate(-15deg);
    z-index: 0;
}

.cta-content {
    color: var(--color-black);
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 44px;
    line-height: 1.5;
    text-shadow: 3px 3px 0 var(--color-white);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 54px;
    }
}

/* ========================================
   FAQセクション
   ======================================== */
.faq-section {
    background: var(--bg-lavender);
    position: relative;
    overflow: visible;
    padding-bottom: 150px;
}

/* 背景パターン */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(var(--color-purple-light) 2.5px, transparent 2.5px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 5;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 4px solid var(--color-purple-light);
    border-radius: 24px;
    margin-bottom: 18px;
    background: var(--color-white);
    transition: all 0.3s;
    box-shadow: 0 5px 0 var(--color-purple-light);
    overflow: hidden;
}


.faq-item.active {
    border-color: var(--color-pink);
    box-shadow: 0 8px 0 var(--color-pink);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 18px;
    }
}


.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-pink);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 3px 0 var(--color-pink-hover);
}

.faq-question-text {
    flex: 1;
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: var(--color-purple);
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-purple-light);
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--color-pink);
    color: var(--color-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 28px 96px;
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.9;
    background: var(--color-pink-light);
    margin: 0 20px 20px 20px;
    border-radius: 16px;
    padding: 20px;
}

@media (max-width: 768px) {
    .faq-answer p {
        margin: 0 16px 16px 16px;
        padding: 16px;
    }
}

.text-center {
    text-align: center;
}

/* ========================================
   会社情報セクション
   ======================================== */
.company-section {
    background: var(--color-coral-light);
    color: var(--color-black);
    position: relative;
    overflow: visible;
    padding-bottom: 150px;
}

/* 背景パターン */
.company-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(var(--color-white) 2px, transparent 2px);
    background-size: 28px 28px;
    opacity: 0.5;
    z-index: 0;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .company-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.company-info,
.contact-info {
    background: var(--color-white);
    padding: 40px;
    border-radius: 28px;
    border: 4px solid var(--color-coral);
    box-shadow: 0 8px 0 var(--color-coral);
    transition: all 0.3s;
}


.contact-info {
    border-color: var(--color-pink);
    box-shadow: 0 8px 0 var(--color-pink);
}


.company-heading,
.contact-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-black);
    position: relative;
    display: inline-block;
}

.company-heading::after,
.contact-heading::after {
    content: '';
    margin-left: 10px;
    font-size: 20px;
    color: var(--color-pink);
}

.company-text,
.contact-text {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 28px;
    color: var(--color-gray);
}

/* ========================================
   フッター
   ======================================== */
.footer {
    position: relative;
    background: linear-gradient(135deg, 
        var(--color-yellow) 0%, 
        #ffe566 50%, 
        var(--color-yellow) 100%);
    background-size: 200% 200%;
    color: var(--color-black);
    padding: 60px 0 28px;
    overflow: hidden;
    animation: footerGradient 10s ease-in-out infinite;
}

@keyframes footerGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ギザギザトップ */
.footer::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--color-yellow);
    clip-path: polygon(
        0% 50%, 5% 100%, 10% 50%, 15% 100%, 20% 50%, 25% 100%, 30% 50%, 35% 100%, 
        40% 50%, 45% 100%, 50% 50%, 55% 100%, 60% 50%, 65% 100%, 70% 50%, 75% 100%, 
        80% 50%, 85% 100%, 90% 50%, 95% 100%, 100% 50%, 100% 100%, 0% 100%
    );
}

/* 背景パターン */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(var(--color-white) 2px, transparent 2px);
    background-size: 24px 24px;
    opacity: 0.3;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 36px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-pink);
    text-shadow: 2px 2px 0 var(--color-white);
}

.footer-subtitle {
    font-size: 18px;
    color: var(--color-black);
    margin-top: 8px;
    font-weight: bold;
    opacity: 0.7;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 18px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-nav {
        justify-content: flex-end;
    }
}

.footer-link {
    transition: all 0.3s;
    color: var(--color-black);
    font-weight: bold;
    position: relative;
    padding: 6px 14px;
    background: var(--color-white);
    border-radius: 20px;
    border: 2px solid var(--color-white);
}

.footer-link:hover {
    border-color: var(--color-pink);
    color: var(--color-pink);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 3px dashed var(--color-yellow-light);
    padding-top: 24px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.copyright {
    font-size: 18px;
    color: var(--color-black);
    font-weight: bold;
    opacity: 0.7;
}

/* ========================================
   ページヒーロー
   ======================================== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/images/hero.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.7) 0%, rgba(255, 213, 107, 0.5) 50%, rgba(184, 164, 227, 0.7) 100%);
    z-index: 0;
}

.page-hero::after {
    display: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--color-white);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 90px;
    }
}

/* ========================================
   フィーチャーグリッド
   ======================================== */
.features-section {
    background: var(--bg-lavender);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(var(--color-purple-light) 2px, transparent 2px);
    background-size: 28px 28px;
    opacity: 0.5;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    text-align: center;
    background: var(--color-white);
    padding: 40px 28px;
    border-radius: 28px;
    border: 4px solid var(--color-pink);
    box-shadow: 0 8px 0 var(--color-pink-light);
    transition: all 0.3s;
}


.feature-item:nth-child(2) {
    border-color: var(--color-yellow);
    box-shadow: 0 8px 0 var(--color-yellow-light);
}


.feature-item:nth-child(3) {
    border-color: var(--color-blue);
    box-shadow: 0 8px 0 var(--color-blue-light);
}


.feature-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--color-pink);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 40px;
    font-weight: bold;
    margin: 0 auto 28px;
    border: 4px solid var(--color-white);
    box-shadow: 0 6px 0 var(--color-pink-hover);
}

.feature-item:nth-child(2) .feature-number {
    background: var(--color-yellow);
    box-shadow: 0 6px 0 #E8C050;
}

.feature-item:nth-child(3) .feature-number {
    background: var(--color-blue);
    box-shadow: 0 6px 0 #6BA8D0;
}

.feature-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.feature-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    font-weight: bold;
    line-height: 1.7;
}

/* ========================================
   ヒストリーセクション
   ======================================== */
.history-section {
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(var(--color-yellow-light) 2px, transparent 2px);
    background-size: 32px 32px;
    opacity: 0.5;
    z-index: 0;
}

.history-section .container {
    position: relative;
    z-index: 5;
}

.history-item {
    max-width: 800px;
    margin: 0 auto 36px;
    padding: 32px;
    background: var(--color-white);
    border-left: 8px solid var(--color-pink);
    border-radius: 20px;
    box-shadow: 0 6px 0 var(--color-pink-light);
    transition: all 0.3s;
    position: relative;
}

.history-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-yellow);
    animation: starPop 2s ease-in-out infinite;
}


.history-year {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-pink);
    margin-bottom: 16px;
}

.history-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 14px;
}

.history-text {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.9;
}

/* ========================================
   講師カード
   ======================================== */
.teachers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .teachers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.teacher-card {
    background: var(--color-yellow-light);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid var(--color-yellow);
    box-shadow: 0 6px 0 var(--color-yellow);
}


.teacher-card:nth-child(2n) {
    background: var(--color-pink-light);
    border-color: var(--color-pink);
    box-shadow: 0 6px 0 var(--color-pink);
}


.teacher-card:nth-child(3n) {
    background: var(--color-blue-light);
    border-color: var(--color-blue);
    box-shadow: 0 6px 0 var(--color-blue);
}


.teacher-card:nth-child(4n) {
    background: var(--color-green-light);
    border-color: var(--color-green);
    box-shadow: 0 6px 0 var(--color-green);
}


.teacher-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-gray-light);
    border-bottom: 4px dashed var(--color-yellow);
}

.teacher-card:nth-child(2n) .teacher-image {
    border-color: var(--color-pink);
}

.teacher-card:nth-child(3n) .teacher-image {
    border-color: var(--color-blue);
}

.teacher-card:nth-child(4n) .teacher-image {
    border-color: var(--color-green);
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}


.teacher-info {
    padding: 20px;
}

.teacher-name {
    font-size: 24px!important;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.teacher-name-ja {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 14px;
    font-weight: bold;
}

.teacher-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid;
}

.badge-dance {
    background: var(--color-pink);
    color: var(--color-white);
    border-color: var(--color-pink-hover);
}

.badge-vocal {
    background: var(--color-purple);
    color: var(--color-white);
    border-color: #9B8AD1;
}

.badge-model {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: #6BA8D0;
}

.teacher-experience {
    font-size: 18px;
    color: var(--color-pink);
    font-weight: bold;
    margin-bottom: 10px;
}

.teacher-description {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.7;
}

/* ========================================
   ページネーション
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 48px;
}

.pagination-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-purple-light);
    border: 3px solid var(--color-purple);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 3px 0 var(--color-purple);
}

.pagination-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: var(--color-purple);
}


.pagination-dot.active {
    background: var(--color-pink);
    border-color: var(--color-pink-hover);
    box-shadow: 0 3px 0 var(--color-pink-hover);
}

.pagination-dot.active::after {
    color: var(--color-white);
}

/* ========================================
   コンタクトフォーム
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-title,
.contact-info-title {
    font-size: 30px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 36px;
    position: relative;
    display: inline-block;
}

.contact-form-title::after,
.contact-info-title::after {
    content: '';
    margin-left: 12px;
    font-size: 24px;
    color: var(--color-pink);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 4px solid var(--color-pink-light);
    border-radius: 16px;
    font-size: 18px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 4px 0 var(--color-pink-light);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 16px;
    background: var(--color-pink-light);
    border-radius: 12px;
    transition: all 0.3s;
}


.form-checkbox {
    margin-right: 12px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

/* ===== Contact Form 7 Compatibility ===== */
.wpcf7-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.wpcf7-form .form-group p {
    margin: 0;
    line-height: 1;
}

.wpcf7-form .form-group .form-label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 6px;
    line-height: 1.4;
}

/* CF7がラベルと入力の間に挿入する<br>を非表示 */
.wpcf7-form .form-group p > br,
.wpcf7-form .form-group .form-label > br {
    display: none;
}

.wpcf7-form .form-input,
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-select {
    width: 100%;
    padding: 16px 20px;
    border: 4px solid var(--color-pink-light);
    border-radius: 16px;
    font-size: 18px;
    background: #fff;
    box-sizing: border-box;
}

.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-tel:focus,
.wpcf7-form .wpcf7-select:focus,
.wpcf7-form .wpcf7-textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 4px 0 var(--color-pink-light);
}

.wpcf7-form .form-textarea,
.wpcf7-form .wpcf7-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 4px solid var(--color-pink-light);
    border-radius: 16px;
    font-size: 18px;
    resize: vertical;
    min-height: 150px;
    background: #fff;
    box-sizing: border-box;
}

/* CF7 Checkbox group — ラッパーspanに .form-checkbox が付くため上書き */
.wpcf7-form .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wpcf7-form .checkbox-group p {
    margin: 0;
}

/* CF7が .form-checkbox をチェックボックス全体のラッパーspanに付与するためリセット */
.wpcf7-form .wpcf7-checkbox.form-checkbox {
    width: auto !important;
    height: auto !important;
    margin-right: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 16px;
    background: var(--color-pink-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] {
    margin-right: 12px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item-label {
    font-size: 18px;
}

/* CF7 Privacy policy acceptance */
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
    margin-right: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* プライバシーポリシーのラベル全体を横並びに */
.wpcf7-form .form-group .form-label .wpcf7-form-control-wrap {
    display: inline;
}

.wpcf7-form .form-group .form-label .wpcf7-acceptance {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-right: 6px;
}

/* CF7 Submit button */
.wpcf7-form .wpcf7-submit {
    display: block;
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: var(--color-pink);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.wpcf7-form .wpcf7-submit:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* CF7 Spinner */
.wpcf7-form .wpcf7-spinner {
    display: none;
}

.wpcf7-form.submitting .wpcf7-spinner {
    display: inline-block;
}

/* CF7 Validation errors */
.wpcf7-not-valid {
    border-color: #e74c3c !important;
}

.wpcf7-not-valid-tip {
    display: block;
    color: #e74c3c;
    font-size: 14px;
    margin-top: 6px;
    font-weight: bold;
}

.wpcf7-response-output {
    margin: 20px 0 0;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 18px;
    text-align: center;
}

.wpcf7-form.sent .wpcf7-response-output {
    border: 2px solid #27ae60;
    color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
    border: 2px solid #e74c3c;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.wpcf7-form.invalid .wpcf7-response-output {
    border: 2px solid #f39c12;
    color: #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

/* Required asterisk */
.wpcf7-form .required {
    color: var(--color-pink);
    font-weight: bold;
}

/* Screen reader response - hide but accessible */
.wpcf7 .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Hidden fields container */
.wpcf7-form .hidden-fields-container {
    display: none;
}

.contact-info-box {
    /* background: var(--color-pink-light); */
    padding: 36px;
    border-radius: 28px;
    border: 4px solid var(--color-pink);
    /* box-shadow: 0 6px 0 var(--color-pink); */
}

.contact-info-item {
    margin-bottom: 32px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-heading {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 10px;
}

.contact-info-text {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.9;
}

.contact-info-note {
    font-size: 18px;
    color: var(--color-gray);
    margin-top: 6px;
}

/* ========================================
   アニメーション
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* アニメーションクラス */
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.fade-in { animation: fadeIn 0.8s ease-out forwards; }
.slide-in-left { animation: slideInLeft 0.8s ease-out forwards; }
.slide-in-right { animation: slideInRight 0.8s ease-out forwards; }
.scale-in { animation: scaleIn 0.6s ease-out forwards; }
.bounce-in { animation: bounceIn 0.8s ease-out forwards; }

/* 初期状態 */
.animate-on-scroll { opacity: 0; }

/* 遅延クラス */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* セクション要素にアニメーション適用 */
.news-card,
.course-card,
.faq-item,
.feature-item,
.teacher-card,
.about-image-item,
.history-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* 順次表示 */
.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }

.course-card:nth-child(1) { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.2s; }
.course-card:nth-child(3) { animation-delay: 0.3s; }

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

.teacher-card:nth-child(1) { animation-delay: 0.1s; }
.teacher-card:nth-child(2) { animation-delay: 0.2s; }
.teacher-card:nth-child(3) { animation-delay: 0.3s; }
.teacher-card:nth-child(4) { animation-delay: 0.4s; }
.teacher-card:nth-child(5) { animation-delay: 0.5s; }
.teacher-card:nth-child(6) { animation-delay: 0.6s; }
.teacher-card:nth-child(7) { animation-delay: 0.7s; }
.teacher-card:nth-child(8) { animation-delay: 0.8s; }

.about-image-item:nth-child(1) { animation-delay: 0.1s; }
.about-image-item:nth-child(2) { animation-delay: 0.2s; }
.about-image-item:nth-child(3) { animation-delay: 0.3s; }
.about-image-item:nth-child(4) { animation-delay: 0.4s; }

/* セクション見出しアニメーション */
.section-heading {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* ヒーローコンテンツアニメーション */
.hero-logo {
    animation: bounceIn 1s ease-out forwards;
    opacity: 0;
}

.hero-text {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero .btn-hero {
    animation: bounceIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* ページヒーローアニメーション */
.page-hero-title {
    animation: bounceIn 1s ease-out forwards;
    opacity: 0;
}

/* ========================================
   リッチアニメーション
   ======================================== */

/* スクロール連動フェードイン */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* 遅延クラス */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* キラキラパーティクルエフェクト */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-yellow);
    border-radius: 50%;
    animation: sparkleAnim 1s ease-out forwards;
    pointer-events: none;
}

.sparkle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: var(--color-yellow);
}

@keyframes sparkleAnim {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* ボタンのシャイニーエフェクト */
.btn-shiny {
    position: relative;
    overflow: hidden;
}

.btn-shiny::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg) translateX(-100%);
    animation: shiny 3s infinite;
}

@keyframes shiny {
    0% {
        transform: rotate(30deg) translateX(-100%);
    }
    20%, 100% {
        transform: rotate(30deg) translateX(100%);
    }
}

/* カードのリッチホバー */
.card-hover-rich {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/* テキストのウェーブアニメーション */
.text-wave {
    display: inline-block;
}

.text-wave span {
    display: inline-block;
    animation: textWave 2s ease-in-out infinite;
}

.text-wave span:nth-child(1) { animation-delay: 0s; }
.text-wave span:nth-child(2) { animation-delay: 0.1s; }
.text-wave span:nth-child(3) { animation-delay: 0.2s; }
.text-wave span:nth-child(4) { animation-delay: 0.3s; }
.text-wave span:nth-child(5) { animation-delay: 0.4s; }
.text-wave span:nth-child(6) { animation-delay: 0.5s; }
.text-wave span:nth-child(7) { animation-delay: 0.6s; }
.text-wave span:nth-child(8) { animation-delay: 0.7s; }

@keyframes textWave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* パルスリングエフェクト */
.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-pink);
    border-radius: inherit;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* 浮遊バブルエフェクト */
.floating-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    opacity: 0.6;
    animation: bubbleRise linear infinite;
}

.bubble:nth-child(1) {
    left: 10%;
    width: 40px;
    height: 40px;
    background: var(--color-pink-light);
    animation-duration: 12s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    left: 25%;
    width: 25px;
    height: 25px;
    background: var(--color-yellow-light);
    animation-duration: 10s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    left: 45%;
    width: 50px;
    height: 50px;
    background: var(--color-purple-light);
    animation-duration: 14s;
    animation-delay: 1s;
}

.bubble:nth-child(4) {
    left: 65%;
    width: 30px;
    height: 30px;
    background: var(--color-green-light);
    animation-duration: 11s;
    animation-delay: 3s;
}

.bubble:nth-child(5) {
    left: 85%;
    width: 35px;
    height: 35px;
    background: var(--color-blue-light);
    animation-duration: 13s;
    animation-delay: 0.5s;
}

@keyframes bubbleRise {
    0% {
        bottom: -100px;
        transform: translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        bottom: 100%;
        transform: translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

/* グロウエフェクト */
.glow-effect {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px var(--color-pink), 0 0 10px var(--color-pink-light);
    }
    50% {
        box-shadow: 0 0 20px var(--color-pink), 0 0 40px var(--color-pink-light);
    }
}

/* タイピングアニメーション */
.typing-effect {
    overflow: hidden;
    border-right: 3px solid var(--color-pink);
    white-space: nowrap;
    animation: typing 3s steps(30) forwards, blinkCursor 0.7s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCursor {
    50% { border-color: transparent; }
}

/* 回転アイコン */
.spin-slow {
    animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* バウンスアニメーション強化 */

@keyframes bounceHover {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-10px); }
    50% { transform: translateY(-5px); }
    75% { transform: translateY(-8px); }
}

/* カウントアップ用 */
.count-up {
    display: inline-block;
}

/* マウス追従キラキラ用 */
.cursor-sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 20px;
    animation: cursorSparkle 0.8s ease-out forwards;
}

@keyframes cursorSparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(180deg) translateY(-30px);
        opacity: 0;
    }
}

/* ========================================
   キッザニア風リッチデザイン
   ======================================== */

/* ===== グローバルグロー効果 ===== */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, 
        var(--color-pink), 
        var(--color-yellow), 
        var(--color-mint), 
        var(--color-purple),
        var(--color-pink));
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: glowRotate 3s linear infinite;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s;
}


@keyframes glowRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== 3Dカードエフェクト ===== */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}


/* ===== セクション背景デコレーション ===== */
.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.section-bg-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 143, 171, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(184, 164, 227, 0.08) 0%, transparent 20%),
        radial-gradient(circle at 60% 20%, rgba(255, 213, 107, 0.08) 0%, transparent 15%),
        radial-gradient(circle at 30% 80%, rgba(127, 219, 202, 0.08) 0%, transparent 18%);
    animation: patternFloat 30s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, -2%) rotate(1deg); }
    50% { transform: translate(0, -3%) rotate(0deg); }
    75% { transform: translate(-2%, -1%) rotate(-1deg); }
}

/* ===== 浮遊オブジェクト追加 ===== */
.floating-objects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.float-obj {
    position: absolute;
    opacity: 0.6;
    animation: floatObject 8s ease-in-out infinite;
}

.float-obj-1 { left: 5%; top: 20%; font-size: 40px; animation-delay: 0s; color: var(--color-yellow); }
.float-obj-2 { right: 8%; top: 30%; font-size: 30px; animation-delay: 1s; color: var(--color-pink); }
.float-obj-3 { left: 10%; bottom: 25%; font-size: 35px; animation-delay: 2s; color: var(--color-mint); }
.float-obj-4 { right: 15%; bottom: 35%; font-size: 28px; animation-delay: 0.5s; color: var(--color-purple); }
.float-obj-5 { left: 25%; top: 15%; font-size: 24px; animation-delay: 1.5s; color: var(--color-green); }
.float-obj-6 { right: 25%; top: 10%; font-size: 32px; animation-delay: 2.5s; color: var(--color-yellow); }

@keyframes floatObject {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-15px) rotate(10deg) scale(1.05);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-25px) rotate(0deg) scale(1.1);
        opacity: 0.7;
    }
    75% { 
        transform: translateY(-15px) rotate(-10deg) scale(1.05);
        opacity: 0.8;
    }
}

/* ===== カラフルボーダーアニメーション ===== */
.rainbow-border {
    position: relative;
    background: white;
    z-index: 1;
}

.rainbow-border::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg, 
        var(--color-pink),
        var(--color-yellow),
        var(--color-mint),
        var(--color-purple),
        var(--color-pink));
    background-size: 300% 100%;
    border-radius: inherit;
    z-index: -1;
    animation: rainbowSlide 4s linear infinite;
}

@keyframes rainbowSlide {
    0% { background-position: 0% 0; }
    100% { background-position: 300% 0; }
}

/* ===== ニュースカード強化 ===== */
.news-card {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-card::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 28px;
    color: var(--color-yellow);
    animation: starPop 2s ease-in-out infinite;
    z-index: 10;
}

.news-card:nth-child(2)::after { animation-delay: 0.3s; }
.news-card:nth-child(3)::after { animation-delay: 0.6s; }

@keyframes starPop {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(15deg); }
}

/* ニュースカード装飾ドット */
.news-card .news-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 10px;
    display: flex;
    background: 
        radial-gradient(circle, var(--color-pink) 40%, transparent 40%) 0 0,
        radial-gradient(circle, var(--color-yellow) 40%, transparent 40%) 15px 0,
        radial-gradient(circle, var(--color-mint) 40%, transparent 40%) 30px 0;
    background-size: 15px 10px;
    background-repeat: no-repeat;
    z-index: 2;
}

/* ===== コースカード強化 ===== */
.course-card {
    transform-style: preserve-3d;
    position: relative;
}

.course-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 15px;
    background: inherit;
    border-radius: 0 0 20px 20px;
    filter: blur(10px);
    opacity: 0;
    transition: all 0.4s;
}

/* コースカード内部グロー */
.course-card .course-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 50%,
        rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

/* ===== セクションタイトル強化 ===== */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5em;
    color: var(--color-yellow);
    animation: titleStarBounce 1.5s ease-in-out infinite;
}

.section-title::before {
    left: -1.2em;
    animation-delay: 0s;
}

.section-title::after {
    right: -1.2em;
    animation-delay: 0.3s;
}

@keyframes titleStarBounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.3); }
}

/* ===== CTAセクション強化 ===== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    background-image: 
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10 L44 25 L60 25 L48 35 L52 50 L40 42 L28 50 L32 35 L20 25 L36 25 Z' fill='%237FDBCA' fill-opacity='0.2'/%3E%3Ccircle cx='15' cy='65' r='8' fill='%23FF8FAB' fill-opacity='0.15'/%3E%3Ccircle cx='65' cy='65' r='5' fill='%23FFD56B' fill-opacity='0.2'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* CTA浮遊装飾 */
.cta-floating-deco {
    position: absolute;
    font-size: 60px;
    opacity: 0.15;
    animation: ctaFloat 10s ease-in-out infinite;
    pointer-events: none;
}

.cta-floating-deco:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; }
.cta-floating-deco:nth-child(2) { right: 5%; top: 30%; animation-delay: 2s; }
.cta-floating-deco:nth-child(3) { left: 15%; bottom: 20%; animation-delay: 4s; }
.cta-floating-deco:nth-child(4) { right: 15%; bottom: 25%; animation-delay: 1s; }

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* ===== ボタンシャイン強化 ===== */
.btn-hero-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-pink) 0%, #ff6b9d 100%);
    box-shadow: 
        0 8px 0 var(--color-pink-hover),
        0 15px 35px rgba(255, 143, 171, 0.4);
    animation: btnPulse 2s ease-in-out infinite;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 80%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

@keyframes btnPulse {
    0%, 100% { 
        box-shadow: 
            0 8px 0 var(--color-pink-hover),
            0 15px 35px rgba(255, 143, 171, 0.4);
    }
    50% { 
        box-shadow: 
            0 8px 0 var(--color-pink-hover),
            0 20px 50px rgba(255, 143, 171, 0.6);
    }
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 0 var(--color-pink-hover),
        0 25px 50px rgba(255, 143, 171, 0.5);
}

/* ===== FAQアコーディオン強化 ===== */
.faq-item {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-pink), var(--color-purple));
    border-radius: 5px 0 0 5px;
    opacity: 0;
    transition: opacity 0.3s;
}



/* ===== スクロールアニメーション強化 ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-80px) rotate(-5deg);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-reveal-left.active {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(80px) rotate(5deg);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-reveal-right.active {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

/* ===== 背景グラデーションアニメーション ===== */
.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 143, 171, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(127, 219, 202, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 30%, rgba(255, 213, 107, 0.08) 0%, transparent 35%);
    animation: bgShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bgShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(3%, -3%) rotate(2deg); }
    66% { transform: translate(-3%, 3%) rotate(-2deg); }
}

/* ===== キラキラカーソルトレイル ===== */
.sparkle-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 18px;
    animation: sparkleTrail 1s ease-out forwards;
}

@keyframes sparkleTrail {
    0% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    100% { 
        opacity: 0;
        transform: scale(0) rotate(180deg) translateY(-30px);
    }
}

/* ===== ローディングスクリーン強化 ===== */
.loading-screen {
    background: linear-gradient(135deg, 
        #FFF5F8 0%, 
        #FFF0F5 25%, 
        #F8F4FF 50%, 
        #F0F8FF 75%, 
        #FFF5F8 100%);
    background-size: 400% 400%;
    animation: loadingBg 3s ease infinite;
}

@keyframes loadingBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== コンフェッティエフェクト ===== */
.confetti {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===== インタラクティブホバーカード ===== */
.hover-card-container {
    perspective: 1000px;
}

.hover-card {
    transform-style: preserve-3d;
    transition: transform 0.6s;
}


.hover-card-inner {
    position: relative;
    transform-style: preserve-3d;
}

.hover-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: inherit;
}


/* ===== バブルアニメーション ===== */
.bubble-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.8), 
        rgba(255, 255, 255, 0.2));
    animation: bubbleRise 8s ease-in infinite;
    opacity: 0.6;
}

.bubble:nth-child(1) { left: 10%; width: 20px; height: 20px; animation-delay: 0s; animation-duration: 6s; }
.bubble:nth-child(2) { left: 30%; width: 15px; height: 15px; animation-delay: 1s; animation-duration: 8s; }
.bubble:nth-child(3) { left: 50%; width: 25px; height: 25px; animation-delay: 2s; animation-duration: 7s; }
.bubble:nth-child(4) { left: 70%; width: 18px; height: 18px; animation-delay: 0.5s; animation-duration: 9s; }
.bubble:nth-child(5) { left: 90%; width: 22px; height: 22px; animation-delay: 1.5s; animation-duration: 6.5s; }

@keyframes bubbleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ========================================
   キッザニア風フィーチャーショーケース
   ======================================== */
.feature-showcase {
    background: #FFFFFF;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* テキストエリア */
.showcase-text {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 60px;
}

.showcase-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-black);
    line-height: 1.4;
    margin-bottom: 20px;
}

.showcase-title-accent {
    color: var(--color-yellow);
    font-size: 1.2em;
    position: relative;
    display: inline-block;
}

.showcase-title-accent::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 18px;
    color: var(--color-pink);
    animation: sparkle 2s ease-in-out infinite;
}

/* 下線装飾 */
.showcase-underline {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 30px;
}

.underline-pink {
    width: 40px;
    height: 5px;
    background: var(--color-pink);
    border-radius: 3px;
}

.underline-yellow {
    width: 40px;
    height: 5px;
    background: var(--color-yellow);
    border-radius: 3px;
}

/* 説明文 */
.showcase-description {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-black);
    line-height: 1.8;
    margin-bottom: 40px;
}

.showcase-description .text-yellow {
    color: var(--color-yellow);
}

.showcase-description .text-pink {
    color: var(--color-pink);
}

.showcase-description .text-purple {
    color: var(--color-purple);
}

/* ボタン */
.showcase-buttons {
    display: flex;
    justify-content: center;
}

.btn-showcase {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #F5F5F5;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: bold;
    color: var(--color-black);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-showcase:hover {
    background: #ECECEC;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.btn-showcase-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-yellow);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-showcase:hover .btn-showcase-arrow {
    transform: translateX(3px);
}

.btn-showcase-label {
    color: var(--color-pink);
    font-weight: bold;
}

/* 画像エリア */
.showcase-image-area {
    position: relative;
    width: 100%;
    padding-top: 60px;
}

.showcase-image-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-image-mask {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0 200px 0 0;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0f5 100%);
}

.showcase-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* 飛び出すキャラクター */
.showcase-character {
    position: absolute;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-character img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.showcase-character-1 {
    right: -20px;
    bottom: 20px;
    width: 180px;
    height: 220px;
    animation: characterBounce1 4s ease-in-out infinite;
}

.showcase-character-2 {
    right: 120px;
    bottom: -30px;
    width: 150px;
    height: 180px;
    animation: characterBounce2 4.5s ease-in-out infinite 0.5s;
}

@keyframes characterBounce1 {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotate(3deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(-2deg); 
    }
    75% { 
        transform: translateY(-20px) rotate(2deg); 
    }
}

@keyframes characterBounce2 {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    30% { 
        transform: translateY(-10px) rotate(-3deg) scale(1.02); 
    }
    60% { 
        transform: translateY(-18px) rotate(2deg) scale(1); 
    }
}


/* 装飾 */
.showcase-deco {
    position: absolute;
    font-size: 40px;
    opacity: 0.7;
    animation: decoFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.showcase-deco-leaf-1 {
    left: 5%;
    bottom: 100px;
    transform: rotate(-30deg);
}

.showcase-deco-leaf-2 {
    left: 45%;
    bottom: -10px;
    font-size: 30px;
    transform: rotate(15deg);
    animation-delay: 1s;
}

@keyframes decoFloat {
    0%, 100% { transform: translateY(0) rotate(-30deg); }
    50% { transform: translateY(-15px) rotate(-25deg); }
}

/* レスポンシブ */
@media (min-width: 768px) {
    .feature-showcase {
        padding: 100px 0 0;
    }
    
    .showcase-title {
        font-size: 48px;
    }
    
    .showcase-description {
        font-size: 26px;
    }
    
    .showcase-image-mask {
        height: 500px;
        border-radius: 0 300px 0 0;
    }
    
    .showcase-character-1 {
        right: 0;
        bottom: 30px;
        width: 250px;
        height: 300px;
    }
    
    .showcase-character-2 {
        right: 200px;
        bottom: -20px;
        width: 200px;
        height: 240px;
    }
}

@media (min-width: 1024px) {
    .feature-showcase {
        padding: 120px 0 0;
    }
    
    .showcase-title {
        font-size: 56px;
    }
    
    .showcase-description {
        font-size: 30px;
    }
    
    .showcase-image-mask {
        height: 550px;
    }
    
    .showcase-character-1 {
        right: 50px;
        bottom: 50px;
        width: 300px;
        height: 360px;
    }
    
    .showcase-character-2 {
        right: 300px;
        bottom: 0;
        width: 240px;
        height: 290px;
    }
    
    .showcase-deco {
        font-size: 60px;
    }
    
    .showcase-deco-leaf-2 {
        font-size: 45px;
    }
}

/* ========================================
   セクション見出し（洗練デザイン）
   ======================================== */
.section-header-fancy {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* 大きなアウトライン英語タイトル - 新LPトンマナ */
.section-title-outline {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: -webkit-linear-gradient(-45deg, #fed878 0%, #fa505e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: rgba(250, 80, 94, 0.3);
    line-height: 1.1;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

/* 筆記体サブタイトル */
.section-title-script {
    display: block;
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 28px;
    font-weight: bold;
    color: var(--color-black);
    margin-top: -10px;
    margin-left: 60px;
    position: relative;
}

/* 日本語サブテキスト */
.section-title-sub {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-black);
    margin-top: 24px;
    letter-spacing: 0.05em;
}

/* 強調カラー */
.section-title-sub .highlight-yellow {
    color: #D4A000;
    font-weight: 900;
}

.section-title-sub .highlight-pink {
    color: #fa505e;
    font-weight: 900;
}

/* タイトル下のカラーライン装飾 */
.section-title-underline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
}

.title-line {
    height: 6px;
    border-radius: 3px;
}

.title-line-pink {
    width: 50px;
    background: linear-gradient(90deg, #fa505e, #FF6B9D);
}

.title-line-yellow {
    width: 50px;
    background: linear-gradient(90deg, #FFD56B, #fed878);
}

/* レスポンシブ */
@media (min-width: 768px) {
    .section-title-outline {
        font-size: 90px;
    }
    
    .section-title-script {
        font-size: 36px;
        margin-left: 100px;
    }
    
    .section-title-sub {
        font-size: 22px;
    }
    
    .title-line {
        height: 8px;
    }
    
    .title-line-pink,
    .title-line-yellow {
        width: 50px;
    }
}

@media (min-width: 1024px) {
    .section-title-outline {
        font-size: 120px;
    }
    
    .section-title-script {
        font-size: 42px;
        margin-left: 150px;
    }
    
    .section-title-sub {
        font-size: 26px;
    }
    
    .title-line-pink,
    .title-line-yellow {
        width: 60px;
    }
}

/* ========================================
   画像バナーセクション
   ======================================== */
.image-banner-section {
    position: relative;
    overflow: visible;
}

/* バナー上部斜め境界 */
.banner-slant-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    line-height: 0;
}

.banner-slant-top svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* バナー下部斜め境界 */
.banner-slant-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    line-height: 0;
}

.banner-slant-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .banner-slant-top,
    .banner-slant-bottom {
        height: 50px;
    }
}

.image-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}


.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 213, 107, 0.7) 0%, 
        rgba(255, 143, 171, 0.5) 100%);
    mix-blend-mode: multiply;
}

.banner-overlay-pink {
    background: linear-gradient(135deg, 
        rgba(255, 143, 171, 0.7) 0%, 
        rgba(184, 164, 227, 0.5) 100%);
}

.banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.banner-text {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-white);
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.banner-subtext {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-white);
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .image-banner {
        height: 400px;
    }
    
    .banner-text {
        font-size: 48px;
    }
    
    .banner-subtext {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .image-banner {
        height: 450px;
    }
    
    .banner-text {
        font-size: 56px;
    }
    
    .banner-subtext {
        font-size: 22px;
    }
}

/* ========================================
   セクション導入デザイン
   ======================================== */
.section-intro {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 60px;
}

.section-intro-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-black);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* アクセントカラー */
.accent-yellow {
    color: var(--color-yellow);
    position: relative;
    display: inline-block;
}

.accent-yellow::before {
    content: '+';
    position: absolute;
    top: -8px;
    left: -12px;
    font-size: 18px;
    color: var(--color-pink);
    font-weight: 400;
}

.accent-yellow::after {
    content: '+';
    position: absolute;
    top: -8px;
    right: -12px;
    font-size: 18px;
    color: var(--color-pink);
    font-weight: 400;
}

.accent-pink {
    color: var(--color-pink);
}

.accent-purple {
    color: var(--color-purple);
}

.accent-green {
    color: var(--color-green);
}

/* 下線装飾 */
.section-intro-underline {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.underline-pink {
    width: 35px;
    height: 4px;
    background: var(--color-pink);
    border-radius: 2px;
}

.underline-yellow {
    width: 35px;
    height: 4px;
    background: var(--color-yellow);
    border-radius: 2px;
}

/* 説明文 */
.section-intro-description {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
    line-height: 1.8;
    margin-bottom: 30px;
}

.section-intro-description .text-yellow {
    color: var(--color-yellow);
    font-weight: bold;
}

.section-intro-description .text-pink {
    color: var(--color-pink);
    font-weight: bold;
}

.section-intro-description .text-purple {
    color: var(--color-purple);
    font-weight: bold;
}

.section-intro-description .text-green {
    color: var(--color-green);
    font-weight: bold;
}

/* ボタン */
.section-intro-button {
    display: flex;
    justify-content: center;
}

.btn-intro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #F5F5F5;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: bold;
    font-size: 18px;
    color: var(--color-black);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.btn-intro:hover {
    background: #ECECEC;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-intro-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-yellow);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-intro:hover .btn-intro-arrow {
    transform: translateX(3px);
}

.btn-intro-label {
    color: var(--color-pink);
    font-weight: bold;
}

/* レスポンシブ */
@media (min-width: 768px) {
    .section-intro {
        margin-bottom: 80px;
    }
    
    .section-intro-title {
        font-size: 40px;
    }
    
    .section-intro-description {
        font-size: 22px;
    }
    
    .underline-pink,
    .underline-yellow {
        width: 45px;
        height: 5px;
    }
    
    .accent-yellow::before,
    .accent-yellow::after {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .section-intro-title {
        font-size: 48px;
    }
    
    .section-intro-description {
        font-size: 26px;
    }
    
    .btn-intro {
        padding: 16px 32px;
        font-size: 18px;
    }
}

/* ========================================
   円形画像ギャラリーセクション
   ======================================== */
.circle-gallery-section {
    padding: 80px 0;
    background: #FAFAFA;
    position: relative;
}

/* ヘッダー */
.circle-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

/* 吹き出しアイコン */
.gallery-speech-icon {
    margin-bottom: 20px;
}

.speech-icon-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-pink);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 143, 171, 0.3);
    animation: bubbleBounce 3s ease-in-out infinite;
}

.speech-icon-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--color-pink);
}

.speech-icon-bubble i {
    font-size: 24px;
    color: #fff;
}

@keyframes bubbleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.gallery-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 5px;
}

.gallery-title-accent {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-pink);
    font-family: 'Dancing Script', cursive;
}

/* グリッド */
.circle-gallery-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* 各アイテム */
.circle-gallery-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 吹き出し */
.speech-bubble {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    border: 2px solid var(--color-black);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 15px;
    position: relative;
    box-shadow: 3px 3px 0 var(--color-black);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--color-white);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid var(--color-black);
}

.bubble-icon {
    color: var(--color-pink);
    font-size: 18px;
}

.bubble-text {
    white-space: nowrap;
}

/* 円形画像 */
.circle-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}


.circle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-large {
    width: 220px;
    height: 220px;
}

/* タブレット */
@media (min-width: 768px) {
    .circle-gallery-section {
        padding: 100px 0;
    }
    
    .gallery-title {
        font-size: 20px;
    }
    
    .gallery-title-accent {
        font-size: 36px;
    }
    
    .circle-gallery-grid {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
    }
    
    .item-left {
        margin-top: 60px;
    }
    
    .item-right {
        margin-top: 40px;
    }
    
    .circle-image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .circle-large {
        width: 260px;
        height: 260px;
    }
    
    .speech-bubble {
        font-size: 18px;
        padding: 12px 24px;
    }
}

/* PC */
@media (min-width: 1024px) {
    .circle-gallery-grid {
        gap: 50px;
    }
    
    .circle-image-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .circle-large {
        width: 300px;
        height: 300px;
    }
    
    .gallery-title-accent {
        font-size: 42px;
    }
}

/* ========================================
   Three.js 背景キャンバス
   ======================================== */
.three-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.news-section,
.about-section {
    position: relative;
}

.news-section .container,
.about-section .container,
.news-section .section-header-fancy,
.about-section .section-header-fancy {
    position: relative;
    z-index: 1;
}

/* ===== ユーティリティ ===== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }


/* ========================================
   TOPICS Section (YouTube)
   ======================================== */
.topics-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFF 100%);
    padding: 100px 0;
}

.topics-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.topics-video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 143, 171, 0.2);
}

.topics-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   NEWS Section
   ======================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}


.news-card-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.news-card-body {
    padding: 20px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.news-date {
    font-size: 18px;
    color: #000;
}

.news-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-pink);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 20px;
}

.news-badge-event {
    background: var(--color-yellow);
    color: #333;
}

.news-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
}

.btn-outline-pink {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--color-pink);
    color: var(--color-pink);
    background: transparent;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: var(--color-pink);
    color: #fff;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONCEPT Section (Cute)
   ======================================== */
.concept-section-cute {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFF0F5 50%, #F8F4FF 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.concept-floating-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.concept-deco {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: floatSlow 6s ease-in-out infinite;
}

.concept-deco-1 { top: 10%; left: 5%; color: var(--color-pink); }
.concept-deco-2 { top: 20%; right: 8%; color: var(--color-yellow); animation-delay: 1s; }
.concept-deco-3 { bottom: 30%; left: 10%; color: var(--color-mint); animation-delay: 2s; }
.concept-deco-4 { bottom: 20%; right: 5%; color: var(--color-purple); animation-delay: 3s; }

.concept-card-cute {
    max-width: 880px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
}

.concept-card-cute::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #FF6B9D, #FFD56B, #7DD3E8, #B8A4E3);
    border-radius: 33px;
    z-index: -1;
}

.concept-icon-area {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.concept-main-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.concept-title-cute {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
}

.concept-text-cute {
    font-size: 18px;
    line-height: 2;
    color: #000;
    text-align: center;
}

/* ========================================
   SUPPORT Section (Cute)
   ======================================== */
.support-section-cute {
    background: linear-gradient(180deg, #F8F4FF 0%, #FFF5FA 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.support-inner-cute {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* align-items: center; */
    max-width: 1100px;
    margin: 0 auto;
}

.support-image-cute {
    position: relative;
}

.support-image-cute img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 30px;
}

.support-text-cute {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}


.support-point-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.support-point-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.support-point-text p {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .support-inner-cute {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   LESSON Section
   ======================================== */
.lesson-section {
    background: linear-gradient(180deg, #FFF 0%, #FFF5FA 100%);
    padding: 100px 0;
}

.lesson-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lesson-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.lesson-card-image {
    position: absolute;
    inset: 0;
}

.lesson-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.lesson-card-overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease;
}

.lesson-model .lesson-card-overlay {
    background: linear-gradient(180deg, rgba(255, 182, 193, 0.3) 0%, rgba(255, 105, 180, 0.7) 100%);
}

.lesson-dance .lesson-card-overlay {
    background: linear-gradient(180deg, rgba(255, 223, 186, 0.3) 0%, rgba(255, 165, 0, 0.7) 100%);
}

.lesson-vocal .lesson-card-overlay {
    background: linear-gradient(180deg, rgba(173, 216, 230, 0.3) 0%, rgba(0, 191, 255, 0.7) 100%);
}

.lesson-idol .lesson-card-overlay {
    background: linear-gradient(180deg, rgba(221, 160, 221, 0.3) 0%, rgba(186, 85, 211, 0.7) 100%);
}


.lesson-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.lesson-number {
    font-size: 18px;
    font-weight: bold;
    opacity: 0.8;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.lesson-name {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}

.lesson-name-jp {
    font-size: 18px;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .lesson-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .lesson-grid {
        grid-template-columns: 1fr;
    }
    
    .lesson-card {
        aspect-ratio: 16/9;
    }
}

/* ========================================
   VOICE Section (スライドショー)
   ======================================== */
.voice-section {
    background: linear-gradient(180deg, #F8F4FF 0%, #FFF 100%);
    padding: 100px 0;
    overflow: hidden;
}

.voice-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}

.voice-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.voice-slide {
    min-width: 500px;
    max-width: 500px;
    flex-shrink: 0;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .voice-slide {
        min-width: 450px;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .voice-slider-wrapper {
        padding: 0;
        width: 100%;
    }
    
    .voice-slider {
        /*gap: 15px;*/
        padding: 0 7.5vw;
    }
    
    .voice-slide {
        min-width: 85vw;
        max-width: 85vw;
    }
}

/* 吹き出しスタイルのカード */
.voice-card-cute {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 1 !important;
}

.voice-bubble {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.voice-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 80px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--color-white);
}

.voice-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1.6;
}

.voice-content {
    font-size: 18px;
    color: #000;
    line-height: 1.9;
}

@media (min-width: 768px) {
    .voice-title {
        font-size: 24px;
    }
    
    .voice-content {
        font-size: 18px;
    }
}

.voice-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
}

.voice-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.voice-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.voice-author-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
}

.voice-author-course {
    font-size: 18px;
    color: var(--color-gray);
}

@media (min-width: 768px) {
    .voice-author-name,
    .voice-author-course {
        font-size: 18px;
    }
}

.voice-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    border: 3px solid var(--color-pink);
    box-shadow: 0 5px 20px rgba(255, 143, 171, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-pink);
    transition: all 0.3s ease;
    z-index: 10;
}


.voice-slider-prev {
    left: 10px;
}

.voice-slider-next {
    right: 10px;
}

@media (max-width: 768px) {
    .voice-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .voice-slider-prev {
        left: 5px;
    }
    
    .voice-slider-next {
        right: 5px;
    }
}

.voice-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.voice-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-pink-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--color-pink-light);
}

.voice-slider-dot.active {
    background: var(--color-pink);
    border-color: var(--color-pink);
    transform: scale(1.3);
}

/* ========================================
   体験案内バナー
   ======================================== */
.trial-banner-section {
    padding: 0;
}

.trial-banner {
    position: relative;
    display: block;
    min-height: 350px;
    text-decoration: none;
    overflow: hidden;
}

.trial-banner-bg {
    position: absolute;
    inset: 0;
}

.trial-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.trial-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 80, 94, 0.85) 0%, rgba(254, 216, 120, 0.85) 100%);
}

.trial-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 80px 20px;
}

.trial-banner-label {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.3em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.trial-banner-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 15px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.8);
}

.trial-banner-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.trial-banner-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: var(--color-pink);
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}


/* ========================================
   SNS Section
   ======================================== */
.sns-section {
    background: #fff;
    padding: 80px 0;
}

.sns-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.sns-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sns-link-card i {
    font-size: 36px;
}

.sns-link-card span {
    font-size: 18px;
    font-weight: bold;
}

.sns-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.sns-youtube {
    background: #FF0000;
    color: #fff;
}

.sns-tiktok {
    background: #000;
    color: #fff;
}

.sns-x {
    background: #000;
    color: #fff;
}

.sns-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .sns-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .sns-link-card {
        padding: 25px 10px;
    }
    
    .sns-link-card i {
        font-size: 24px;
    }
    
    .sns-link-card span {
        font-size: 13px;
    }
}

/* ========================================
   CONTACT LINE SECTION
   ======================================== */
.contact-line-section {
    background: #00bc10;
    padding: 80px 0;
}

.contact-line-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(6, 199, 85, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-line-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #06C755 0%, #00B900 50%, #06C755 100%);
    border-radius: 33px;
    z-index: -1;
    opacity: 0.6;
}

.contact-line-deco {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    font-size: 20px;
}

.contact-line-deco span {
    color: #06C755;
    animation: bounce 2s ease-in-out infinite;
}

.contact-line-deco span:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--color-pink);
}

.contact-line-deco span:nth-child(3) {
    animation-delay: 0.4s;
    color: var(--color-yellow);
}

.contact-line-content {
    text-align: center;
}

.contact-line-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #06C755 0%, #00B900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(6, 199, 85, 0.3);
    animation: pulse 2s infinite;
}

.contact-line-text h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.contact-line-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 25px;
}

.btn-line {
    background: linear-gradient(135deg, #06C755 0%, #00B900 100%);
    color: #fff;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.35);
}

.btn-line:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(6, 199, 85, 0.45);
    background: linear-gradient(135deg, #00B900 0%, #06C755 100%);
}

.btn-line i {
    font-size: 24px;
}

.contact-line-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px dashed rgba(6, 199, 85, 0.2);
    flex-wrap: wrap;
}

.line-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.line-feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E8FFE8 0%, #D0F8D0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06C755;
    font-size: 18px;
}

@media (max-width: 767px) {
    .contact-line-card {
        padding: 35px 25px;
    }

    .contact-line-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .contact-line-features {
        gap: 20px;
    }

    .line-feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .btn-line {
        padding: 15px 35px;
        font-size: 14px;
    }
}

/* ========================================
   Floating Animation
   ======================================== */
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(6, 199, 85, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(6, 199, 85, 0.4);
    }
}

/* ========================================
   PAGE HERO (Colorful Version)
   ======================================== */
.page-hero-colorful {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.9) 0%, rgba(255, 213, 107, 0.9) 50%, rgba(184, 164, 227, 0.9) 100%);
}

.page-hero-deco {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    pointer-events: none;
}

.hero-deco-item {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    animation: floatSlow 4s ease-in-out infinite;
}

.hero-deco-item:nth-child(2) {
    animation-delay: 1s;
}

.hero-deco-item:nth-child(3) {
    animation-delay: 2s;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.page-hero-label {
    font-size: 42px;
    font-weight: 900 !important;
    letter-spacing: 0.3em;
    margin-bottom: 5px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(-45deg, #fed878 0%, #fa505e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}

.page-hero-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 900;
    margin-bottom: 15px;
    max-width: 1000px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    color: #fff;
}

.page-hero-text {
    font-size: 20px;
    color: #fff;
    text-shadow: #000 1px 1px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Intro Section */
.about-intro-section {
    background: linear-gradient(180deg, #FFF 0%, #FFF5FA 100%);
    padding: 100px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image-main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: auto;
}

.about-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.about-image-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-image-sub {
    border-radius: 20px;
    overflow: hidden;
}

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

.about-intro-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-intro-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    position: relative;
}

.about-intro-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-yellow), var(--color-mint));
    border-radius: 33px;
    z-index: -1;
    opacity: 0.5;
}

.about-intro-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

.about-intro-card h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.about-intro-card p {
    font-size: 18px;
    line-height: 2;
    color: #000;
    text-align: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-stat-item {
    background: #fff;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}


.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--color-pink);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

/* About Features Section */
.about-features-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #F8F4FF 100%);
    padding: 100px 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-feature-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}


.about-feature-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-feature-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.about-feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.about-feature-pink .about-feature-image::after {
    background: linear-gradient(180deg, transparent 0%, var(--color-pink) 100%);
}

.about-feature-yellow .about-feature-image::after {
    background: linear-gradient(180deg, transparent 0%, var(--color-yellow) 100%);
}

.about-feature-mint .about-feature-image::after {
    background: linear-gradient(180deg, transparent 0%, var(--color-mint) 100%);
}

.about-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.about-feature-content {
    padding: 25px;
    text-align: center;
}

.about-feature-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.about-feature-content p {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
}

.about-feature-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-pink-light);
    color: var(--color-pink);
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
}

/* About Gallery Section */
.about-gallery-section {
    background: #fff;
    padding: 100px 0;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 143, 171, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.gallery-overlay i {
    color: #fff;
    font-size: 30px;
}

/* About Mission Section */
.about-mission-section {
    background: linear-gradient(135deg, #FFF5FA 0%, #F8F4FF 100%);
    padding: 100px 0;
}

.about-mission-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 143, 171, 0.15);
    position: relative;
}

.about-mission-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-yellow), var(--color-purple));
    border-radius: 34px;
    z-index: -1;
    opacity: 0.5;
}

.about-mission-deco {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    font-size: 24px;
}

.about-mission-deco span:nth-child(1) { color: var(--color-yellow); }
.about-mission-deco span:nth-child(2) { color: var(--color-pink); }
.about-mission-deco span:nth-child(3) { color: var(--color-purple); }

.about-mission-card h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.about-mission-lead {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-pink);
    margin-bottom: 20px;
}

.about-mission-text {
    font-size: 18px;
    line-height: 2;
    color: #000;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    padding: 100px 0;
}

.about-cta-content {
    text-align: center;
    color: #fff;
}

.about-cta-deco {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    font-size: 28px;
    opacity: 0.8;
}

.about-cta-content h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(24px, 5vw, 36px);
    font-weight: bold;
    margin-bottom: 15px;
}

.about-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item-large {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 1;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   LESSON PAGE STYLES
   ======================================== */

/* Lesson Intro */
.lesson-intro-section {
    background: linear-gradient(180deg, #FFF 0%, #FFF5FA 100%);
    padding: 80px 0;
}

.lesson-intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 143, 171, 0.15);
    position: relative;
}

.lesson-intro-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-yellow), var(--color-mint));
    border-radius: 33px;
    z-index: -1;
    opacity: 0.5;
}

.lesson-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.lesson-intro-card h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.lesson-intro-card p {
    font-size: 18px;
    line-height: 2;
    color: #000;
}

/* Lesson Curriculum */
.lesson-curriculum-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFE4EC 100%);
    padding: 100px 0;
    position: relative;
}

.lesson-curriculum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* コース限定レッスン案内 */
.lesson-course-notice {
    background: linear-gradient(135deg, #FFD56B 0%, #FF8FAB 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin: 60px auto 40px;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(255, 143, 171, 0.3);
    position: relative;
    overflow: hidden;
}

.lesson-course-notice::before {
    content: '✨';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 30px;
    opacity: 0.6;
}

.lesson-course-notice::after {
    content: '✨';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 30px;
    opacity: 0.6;
}

.lesson-course-notice-icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.lesson-course-notice-text {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.lesson-course-notice-text strong {
    font-size: 22px;
}

.lesson-curriculum-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}



.lesson-curriculum-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.lesson-curriculum-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.lesson-curriculum-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.lesson-card-vocal .lesson-curriculum-overlay {
    background: linear-gradient(135deg, #FF8FAB 0%, #FFB6C1 100%);
}

.lesson-card-model .lesson-curriculum-overlay {
    background: linear-gradient(135deg, #FFD56B 0%, #FFE4A0 100%);
}

.lesson-card-dance .lesson-curriculum-overlay {
    background: linear-gradient(135deg, #7DD3E8 0%, #A8E6CF 100%);
}

.lesson-card-idol .lesson-curriculum-overlay {
    background: linear-gradient(135deg, #B8A4E3 0%, #D4C8F0 100%);
}

.lesson-card-kogyaru .lesson-curriculum-overlay {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFA8CC 100%);
}

.lesson-card-self .lesson-curriculum-overlay {
    background: linear-gradient(135deg, #FFB347 0%, #FFD700 100%);
}

.lesson-card-himelove .lesson-curriculum-overlay {
    background: linear-gradient(135deg, #FFB6D9 0%, #FFE5F1 100%);
}

.lesson-card-acting .lesson-curriculum-overlay {
    background: linear-gradient(135deg, #C9A0DC 0%, #E8D5F2 100%);
}

.lesson-card-sns .lesson-curriculum-overlay {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 100%);
}

.lesson-curriculum-content {
    padding: 30px 25px;
    text-align: center;
}

.lesson-curriculum-icon {
    display:none!important;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lesson-card-vocal .lesson-curriculum-icon {
    background: linear-gradient(135deg, #FF8FAB 0%, #FF6B9D 100%);
}

.lesson-card-model .lesson-curriculum-icon {
    background: linear-gradient(135deg, #FFD56B 0%, #FFC107 100%);
}

.lesson-card-dance .lesson-curriculum-icon {
    background: linear-gradient(135deg, #7DD3E8 0%, #4FC3F7 100%);
}

.lesson-card-idol .lesson-curriculum-icon {
    background: linear-gradient(135deg, #B8A4E3 0%, #9575CD 100%);
}

.lesson-curriculum-content h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.lesson-curriculum-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.lesson-level {
    display: inline-block;
    background: var(--color-pink-light);
    color: var(--color-pink);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
}

/* Special Lessons */
.lesson-special-section {
    background: linear-gradient(135deg, #E8F8FF 0%, #F0E8FF 50%, #FFE8F0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.special-script {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: #B8A4E3;
    margin-left: 10px;
}

.special-lessons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.special-lesson-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.special-lesson-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.special-lesson-purple::before {
    background: linear-gradient(90deg, #B8A4E3 0%, #D4C8F0 100%);
}

.special-lesson-blue::before {
    background: linear-gradient(90deg, #7DD3E8 0%, #A8E6CF 100%);
}

.special-lesson-pink::before {
    background: linear-gradient(90deg, var(--color-pink) 0%, #FFB6C1 100%);
}

.special-lesson-coral::before {
    background: linear-gradient(90deg, #FF8A80 0%, #FFB6C1 100%);
}


.special-lesson-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.special-lesson-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.special-lesson-purple .special-lesson-icon {
    background: linear-gradient(135deg, #B8A4E3 0%, #9575CD 100%);
}

.special-lesson-blue .special-lesson-icon {
    background: linear-gradient(135deg, #7DD3E8 0%, #4FC3F7 100%);
}

.special-lesson-pink .special-lesson-icon {
    background: linear-gradient(135deg, var(--color-pink) 0%, #FF6B9D 100%);
}

.special-lesson-coral .special-lesson-icon {
    background: linear-gradient(135deg, #FF8A80 0%, #FF5252 100%);
}

.special-lesson-header h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 26px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

.special-lesson-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.special-lesson-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-lesson-desc {
    font-size: 18px;
    line-height: 1.9;
    color: #000;
    margin-bottom: 20px;
}

.special-lesson-teacher {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    clear: both;
}

.special-lesson-teacher img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.special-lesson-teacher .teacher-info {
    display: flex;
    flex-direction: column;
}

.special-lesson-teacher .teacher-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.special-lesson-teacher .teacher-title {
    font-size: 18px;
    color: #000;
}

/* Lesson Schedule */
.lesson-schedule-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFF 100%);
    padding: 100px 0;
}

.schedule-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-pink);
    margin-bottom: 10px;
}

.schedule-age-note {
    text-align: center;
    font-size: 18px;
    color: #000;
    margin-bottom: 40px;
}

.schedule-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.schedule-table th,
.schedule-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.schedule-table th {
    background: #f8f8f8;
    font-weight: bold;
    font-size: 18px;
}

.schedule-header-vocal {
    background: linear-gradient(135deg, #FFE4EC 0%, #FFD1DC 100%) !important;
    color: var(--color-pink);
}

.schedule-header-model {
    background: linear-gradient(135deg, #FFF0C9 0%, #FFE4A0 100%) !important;
    color: #D4A000;
}

.schedule-header-dance {
    background: linear-gradient(135deg, #D0F5ED 0%, #A8E6CF 100%) !important;
    color: #2E8B57;
}

.schedule-table td {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
}

.schedule-age-label {
    background: var(--color-pink-light);
    color: var(--color-pink);
    font-weight: bold;
}

.schedule-note {
    display: block;
    font-size: 18px;
    color: #999;
    margin-top: 5px;
}

.schedule-note-footer {
    text-align: center;
    font-size: 18px;
    color: #000;
}

/* Lesson Price */
.lesson-price-section {
    background: #fff;
    padding: 100px 0;
}

.lesson-price-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Price Simple Layout */
.price-simple-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.price-simple-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.price-simple-lead {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
}

.price-simple-fees {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.price-simple-fee {
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
}

.price-simple-fee-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.price-simple-fee-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.price-simple-fee-unit {
    font-size: 18px;
    color: #000;
}

/* Course rows */
.price-simple-courses {
    border-bottom: 1px solid #eee;
}

.price-simple-course {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #f5f5f5;
}

.price-simple-course:last-child {
    border-bottom: none;
}

.price-simple-course-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-simple-course-age {
    font-size: 18px;
    color: #000;
}

.price-simple-course-name {
    font-size: 20px;
    font-weight: bold;
    color: #D50000;
}

.price-simple-course-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    /* white-space: nowrap; */
}

.price-simple-course-label {
    font-size: 18px;
    color: #000;
}

.price-simple-course-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.price-simple-course-unit {
    font-size: 18px;
    color: #000;
}

/* Discount row */
.price-simple-discount {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    flex-wrap: wrap;
}

.price-simple-discount-title {
    font-size: 20px;
    font-weight: bold;
    color: #D50000;
}

.price-simple-discount-desc {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.price-simple-discount-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-simple-discount-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.price-simple-discount-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #D50000;
    line-height: 1;
}

.price-simple-course-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.price-simple-course-arrow {
    font-size: 20px;
    color: #D50000;
    margin: 0 5px;
}

.price-simple-course-badge {
    font-size: 18px;
    font-weight: bold;
    color: #D50000;
    margin-left: 10px;
}

.price-simple-note {
    font-size: 18px;
    color: #000;
    text-align: center;
    margin-top: 20px;
}

/* 新コース開始予定の案内 */
.price-simple-new-course-notice {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
    border: 2px solid #FFD56B;
    border-radius: 15px;
    padding: 25px 30px;
    margin-top: 30px;
    text-align: center;
}

.price-simple-new-course-notice p {
    font-size: 16px;
    color: #D4A000;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.8;
}

.price-simple-new-course-notice p:last-child {
    margin-bottom: 0;
}

.price-simple-new-course-notice strong {
    color: #FF8FAB;
    font-size: 18px;
}

/* SP responsive */
@media (max-width: 768px) {
    .price-simple-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 25px;
    }
    
    .price-simple-lead {
        font-size: 18px;
    }
    
    .price-simple-fees {
        flex-direction: column;
        gap: 5px;
    }
    
    .price-simple-fee {
        gap: 10px;
    }
    
    .price-simple-fee-number {
        font-size: 32px;
    }
    
    .price-simple-course {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 25px 0;
    }
    
    .price-simple-course-info {
        flex-direction: column;
        gap: 2px;
    }
    
    .price-simple-course-name {
        font-size: 22px;
    }
    
    .price-simple-course-price {
        flex-wrap: wrap;
        align-items: baseline;
        gap: 5px;
    }
    
    .price-simple-course-label {
        width: 100%;
        font-size: 18px;
    }
    
    .price-simple-course-number {
        font-size: 40px;
    }
    
    .price-simple-course-old {
        font-size: 18px;
    }
    
    .price-simple-course-badge {
        margin-left: 0;
    }
    
    .price-simple-discount {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .price-simple-note {
        text-align: left;
        font-size: 14px;
    }

    .price-simple-new-course-notice {
        padding: 20px 15px;
    }

    .price-simple-new-course-notice p {
        font-size: 14px;
    }

    .price-simple-new-course-notice strong {
        font-size: 15px;
    }
}

.admission-fee-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    max-width: 450px;
    margin: 0 auto 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.admission-fee-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.admission-fee-content h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.admission-fee-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-number-large {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--color-pink);
}

@media (min-width: 768px) {
    .price-number-large {
        font-size: 56px;
    }
}

.price-yen-large {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

@media (min-width: 768px) {
    .price-yen-large {
        font-size: 24px;
    }
}

.admission-fee-note {
    font-size: 18px;
    color: #000;
    margin-top: 5px;
}

@media (min-width: 768px) {
    .admission-fee-note {
        font-size: 18px;
    }
}

.course-price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.course-price-card {
    background: #fff;
    border-radius: 25px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}


.course-price-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--color-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-pink);
}

.course-amateur .course-price-icon {
    background: var(--color-green-light);
    color: var(--color-green);
}

.course-semipro .course-price-icon {
    background: var(--color-yellow-light);
    color: var(--color-yellow);
}

.course-pro .course-price-icon {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    color: #fff;
}

.course-price-card h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .course-price-card h3 {
        font-size: 28px;
    }
}

.course-price-details {
    margin-bottom: 20px;
}

.course-price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.course-price-item .label {
    font-size: 18px;
    color: #000;
}

@media (min-width: 768px) {
    .course-price-item .label {
        font-size: 20px;
    }
}

.course-price-item .value {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

@media (min-width: 768px) {
    .course-price-item .value {
        font-size: 22px;
    }
}

.price-highlight {
    color: var(--color-pink) !important;
    font-size: 20px !important;
}

@media (min-width: 768px) {
    .price-highlight {
        font-size: 28px !important;
    }
}

.course-price-badge {
    background: var(--color-yellow-light);
    border-radius: 15px;
    padding: 15px;
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .course-price-badge {
        font-size: 18px;
        padding: 20px;
    }
}

.course-price-badge i {
    color: var(--color-yellow);
    margin-right: 5px;
}

.course-price-special {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FF6B9D 0%, var(--color-pink) 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

@media (min-width: 768px) {
    .course-price-special {
        font-size: 20px;
        padding: 15px 30px;
    }
}

.price-original {
    text-decoration: line-through;
    color: #999 !important;
    font-size: 18px !important;
}

@media (min-width: 768px) {
    .price-original {
        font-size: 24px !important;
    }
}

.price-arrow {
    color: var(--color-pink);
    margin: 0 5px;
    font-size: 20px;
}

@media (min-width: 768px) {
    .price-arrow {
        font-size: 28px;
    }
}

.price-discount {
    color: var(--color-pink) !important;
    font-size: 22px !important;
    font-weight: bold !important;
}

@media (min-width: 768px) {
    .price-discount {
        font-size: 32px !important;
    }
}

.price-note-text {
    text-align: center;
    font-size: 18px;
    color: #000;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .price-note-text {
        font-size: 20px;
    }
}

/* Lesson CTA */
.lesson-cta-section {
    background: linear-gradient(135deg, rgba(250, 80, 94, 0.85) 0%, rgba(254, 216, 120, 0.85) 100%), url('assets/images/cta.jpeg') center/cover no-repeat;
    padding: 100px 0;
    position: relative;
}

.lesson-cta-content {
    text-align: center;
    color: #fff;
}

.lesson-cta-deco {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 28px;
    opacity: 0.8;
}

.lesson-cta-content h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: bold;
    margin-bottom: 20px;
}

.lesson-cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.lesson-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .lesson-curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .special-lessons-grid {
        grid-template-columns: 1fr;
    }
    
    .course-price-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .lesson-curriculum-grid {
        grid-template-columns: 1fr;
    }

    .lesson-course-notice {
        padding: 25px 20px;
        margin: 40px auto 30px;
    }

    .lesson-course-notice-text {
        font-size: 16px;
    }

    .lesson-course-notice-text strong {
        font-size: 17px;
    }

    .lesson-intro-card {
        padding: 35px 25px;
    }

    .special-lesson-card {
        padding: 25px;
    }

    .special-lesson-image {
        float: none;
        margin: 0 auto 20px;
    }

    .special-lesson-header {
        flex-direction: column;
        text-align: center;
    }

    .lesson-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .admission-fee-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Page Hero Colorful - Override pseudo-elements */
.page-hero-colorful::before,
.page-hero-colorful::after {
    display: none !important;
}

/* ========================================
   FAQ PAGE STYLES
   ======================================== */

/* FAQ Intro */
.faq-intro-section {
    background: #fafafa;
    padding: 80px 0;
}

.faq-intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 143, 171, 0.15);
    position: relative;
}

.faq-intro-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-yellow), var(--color-mint));
    border-radius: 33px;
    z-index: -1;
    opacity: 0.5;
}

.faq-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.faq-intro-card h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.faq-intro-card p {
    font-size: 18px;
    line-height: 2;
    color: #000;
}

/* FAQ Main Section */
.faq-main-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFF 100%);
    padding: 80px 0;
}

/* FAQ Container - Cute Style */
.faq-container-cute {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.faq-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 143, 171, 0.3);
}

.faq-category-title h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .faq-category-title h3 {
        font-size: 22px;
    }
}

.faq-item-cute {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(255, 143, 171, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}


.faq-question-cute {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}


.faq-q-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-pink) 0%, #FF6B9D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #fff;
}

.faq-question-text {
    flex: 1;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.faq-toggle-icon {
    width: 40px;
    height: 40px;
    background: var(--color-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pink);
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-item-cute.active .faq-toggle-icon {
    background: var(--color-pink);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer-cute {
    display: none;
    padding: 0 30px 25px 100px;
    animation: fadeInDown 0.3s ease;
}

.faq-item-cute.active .faq-answer-cute {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.faq-a-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFD56B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #fff;
}

.faq-answer-cute p {
    font-size: 18px;
    line-height: 1.9;
    color: #000;
}

.faq-answer-cute a {
    color: var(--color-pink);
    text-decoration: underline;
}

/* FAQ Contact Section */
.faq-contact-section {
    background: linear-gradient(180deg, #FFF 0%, #E8F8FF 100%);
    padding: 80px 0 80px 0;
}

.faq-contact-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.faq-contact-image {
    height: 100%;
    min-height: 300px;
}

.faq-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-contact-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.faq-contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}

.faq-contact-content h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.faq-contact-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 25px;
}

/* FAQ CTA Section */
.faq-cta-section {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    padding: 100px 0;
}

.faq-cta-content {
    text-align: center;
    color: #fff;
}

.faq-cta-deco {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 28px;
    opacity: 0.8;
}

.faq-cta-content h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-cta-content p {
    font-size: 24px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Responsive */
@media (max-width: 767px) {
    .faq-question-cute {
        padding: 20px;
    }
    
    .faq-answer-cute {
        padding: 0 20px 20px 20px;
    }
    
    .faq-item-cute.active .faq-answer-cute {
        flex-direction: column;
    }
    
    .faq-contact-card {
        grid-template-columns: 1fr;
    }
    
    .faq-contact-image {
        min-height: 200px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   TEACHER PAGE STYLES
   ======================================== */

/* Teacher Intro */
.teacher-intro-section {
    background: linear-gradient(180deg, #FFF 0%, #FFF5FA 100%);
    padding: 80px 0;
}

.teacher-intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 143, 171, 0.15);
    position: relative;
}

.teacher-intro-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-yellow), var(--color-mint));
    border-radius: 33px;
    z-index: -1;
    opacity: 0.5;
}

.teacher-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.teacher-intro-card h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.teacher-intro-card p {
    font-size: 18px;
    line-height: 2;
    color: #000;
}

/* Teacher Categories Section */
.teacher-categories-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #F8F4FF 50%, #FFF 100%);
    padding: 80px 0;
}

/* Teacher School Tabs */
.teacher-school-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.teacher-school-tab {
    background: #fff;
    border: 2px solid #FF8FAB;
    color: #FF8FAB;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}


.teacher-school-tab.active {
    background: linear-gradient(135deg, #FF8FAB 0%, #FFB6C1 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 143, 171, 0.4);
}

.teacher-school-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Teacher School Badge */
.teacher-school-badge-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin: 8px 0;
}

.teacher-school-badge {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    padding: 4px 12px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 12px;
    display: inline-block;
}

/* Teacher Lesson Tags */
.teacher-lesson-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin: 10px 0;
}

.teacher-lesson-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.teacher-lesson-tag.tag-pink {
    background: linear-gradient(135deg, #FF8FAB 0%, #FFB6C1 100%);
    color: #fff;
}

.teacher-lesson-tag.tag-yellow {
    background: linear-gradient(135deg, #FFD56B 0%, #FFE69C 100%);
    color: #333;
}

.teacher-lesson-tag.tag-purple {
    background: linear-gradient(135deg, #B8A4E8 0%, #D4C5F9 100%);
    color: #fff;
}

.teacher-lesson-tag.tag-cyan {
    background: linear-gradient(135deg, #6DD5ED 0%, #A8E6F3 100%);
    color: #fff;
}


/* Teacher School Section */
.teacher-school-section {
    margin-bottom: 60px;
}

.teacher-no-data {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.teacher-no-data p {
    font-size: 16px;
    color: #000;
    margin: 0;
}

/* Teacher Grid - Cute Style */
.teacher-grid-cute {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.teacher-card-cute {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(255, 143, 171, 0.12);
    transition: all 0.4s ease;
}


.teacher-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.teacher-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.teacher-card-badge {
    display: none;
}

.teacher-card-content {
    padding: 30px;
    text-align: center;
}

.teacher-name-en {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #333;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.teacher-name-ja {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
}

.teacher-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.teacher-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
}

.teacher-badge-model {
    background: var(--color-pink-light);
    color: var(--color-pink);
}

.teacher-badge-dance {
    background: var(--color-yellow-light);
    color: #D4A000;
}

.teacher-badge-vocal {
    background: var(--color-purple-light);
    color: var(--color-purple);
}

.teacher-exp {
    font-size: 18px;
    color: var(--color-pink);
    font-weight: bold;
    margin-bottom: 12px;
}

.teacher-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

/* Teacher Message Section */
.teacher-message-section {
    background: linear-gradient(180deg, #FFF 0%, #E8F8FF 100%);
    padding: 100px 0;
}

.teacher-message-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.teacher-message-image {
    height: 100%;
    min-height: 350px;
}

.teacher-message-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teacher-message-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.teacher-message-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 25px;
}

.teacher-message-content h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.teacher-message-text {
    font-size: 18px;
    line-height: 2.2;
    color: #000;
    font-style: italic;
}

/* Teacher CTA Section */
.teacher-cta-section {
    background: linear-gradient(135deg, rgba(250, 80, 94, 0.85) 0%, rgba(254, 216, 120, 0.85) 100%), url('assets/images/cta.jpeg') center/cover no-repeat;
    padding: 100px 0;
    position: relative;
}

.teacher-cta-content {
    text-align: center;
    color: #fff;
}

.teacher-cta-deco {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 28px;
    opacity: 0.8;
}

.teacher-cta-content h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: bold;
    margin-bottom: 20px;
}

.teacher-cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.teacher-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Teacher Grid - Simple Style (New Design) */
.teacher-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.teacher-card-simple {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}


.teacher-card-simple .teacher-card-image {
    position: relative;
    /*height: 250px;*/
    height: auto;
    overflow: hidden;
}

.teacher-card-simple .teacher-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.teacher-card-info {
    padding: 20px 15px;
}

.teacher-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.teacher-career {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
}

/* Teacher Responsive */
@media (max-width: 1024px) {
    .teacher-grid-cute {
        grid-template-columns: repeat(2, 1fr);
    }

    .teacher-grid-simple {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .teacher-message-card {
        grid-template-columns: 1fr;
    }
    
    .teacher-message-image {
        min-height: 250px;
    }
}

@media (max-width: 767px) {
    .teacher-grid-cute {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .teacher-grid-simple {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .teacher-intro-card {
        padding: 35px 25px;
    }
    
    .teacher-message-content {
        padding: 35px 25px;
    }
    
    .teacher-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .teacher-school-tabs {
        gap: 10px;
    }
    
    .teacher-school-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .teacher-lesson-tags {
        gap: 4px;
    }
    
    .teacher-lesson-tag {
        font-size: 10px;
        padding: 3px 10px;
    }
}

/* ========================================
   BEGINNER PAGE STYLES
   ======================================== */

/* Beginner Hero */
.beginner-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.beginner-hero .page-hero-bg {
    position: absolute;
    inset: 0;
}

.beginner-hero .page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beginner-hero .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 80, 94, 0.7) 0%, rgba(254, 216, 120, 0.5) 50%, rgba(184, 164, 227, 0.7) 100%);
}

.beginner-hero::before,
.beginner-hero::after {
    display: none !important;
}

/* Beginner Intro */
.beginner-intro-section {
    background: linear-gradient(180deg, #FFF 0%, #FFF5FA 100%);
    padding: 80px 0;
}

.beginner-intro-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 143, 171, 0.15);
    position: relative;
}

.beginner-intro-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-yellow), var(--color-mint));
    border-radius: 34px;
    z-index: -1;
    opacity: 0.5;
}

.beginner-intro-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    animation: bounce 2s ease-in-out infinite;
}

.beginner-intro-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.beginner-intro-text {
    font-size: 18px;
    line-height: 2;
    color: #000;
    margin-bottom: 30px;
}

/* Beginner Features */
.beginner-features-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFF 100%);
    padding: 100px 0;
}

.beginner-features-section .container {
    max-width: 1000px !important;
}

/* Feature Panel */
.feature-panel {
    position: relative;
    margin-bottom: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-panel-yellow {
    background: linear-gradient(135deg, #FFFBEB 0%, #FFF9E6 100%);
}

.feature-panel-pink {
    background: linear-gradient(135deg, #FFF5FA 0%, #FFE4EC 100%);
}

.feature-panel-mint {
    background: linear-gradient(135deg, #E8FFF8 0%, #D0F5ED 100%);
}

.feature-panel-deco {
    position: absolute;
    font-size: 30px;
    opacity: 0.3;
    animation: floatSlow 4s ease-in-out infinite;
}

.feature-deco-left {
    top: 20px;
    left: 20px;
    color: var(--color-pink);
}

.feature-deco-right {
    bottom: 20px;
    right: 20px;
    color: var(--color-yellow);
    animation-delay: 2s;
}

.feature-panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 20px;
    max-width: 100%;
    margin: 0 auto;
}

.feature-panel-reverse {
    direction: rtl;
}

.feature-panel-reverse > * {
    direction: ltr;
}

.feature-panel-text {
    padding: 20px;
}

.feature-panel-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-panel-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: bold;
    line-height: 1.4;
    color: #333;
    margin-bottom: 20px;
}

.title-highlight-yellow {
    background: linear-gradient(transparent 60%, rgba(255, 213, 107, 0.4) 60%);
}

.title-highlight-pink {
    background: linear-gradient(transparent 60%, rgba(255, 143, 171, 0.4) 60%);
}

.title-highlight-mint {
    background: linear-gradient(transparent 60%, rgba(141, 215, 166, 0.4) 60%);
}

/* PC用ハイライトスタイル */
@media (min-width: 768px) {
    .title-highlight-yellow {
        background: linear-gradient(transparent 60%, rgba(255, 213, 107, 0.4) 60%);
        font-size: 36px !important;
        font-weight: bold !important;
    }

    .title-highlight-pink {
        background: linear-gradient(transparent 60%, rgba(255, 143, 171, 0.4) 60%);
        font-size: 36px !important;
        font-weight: bold !important;
    }

    .title-highlight-mint {
        background: linear-gradient(transparent 60%, rgba(141, 215, 166, 0.4) 60%);
        font-size: 36px !important;
        font-weight: bold !important;
    }
}

.feature-panel-desc {
    font-size: 18px;
    line-height: 2;
    color: #000;
    margin-bottom: 25px;
}

.feature-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-pink);
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.feature-panel-link:hover {
    gap: 15px;
}

.feature-panel-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


/* Beginner Curriculum */
.beginner-curriculum-section {
    background: linear-gradient(180deg, #FFF 0%, #E8F8FF 100%);
    padding: 100px 0;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.curriculum-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}


.curriculum-card-new {
    border: 3px solid var(--color-pink);
}

.curriculum-new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B9D 0%, var(--color-pink) 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    z-index: 10;
    animation: pulse 2s infinite;
}

.curriculum-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.curriculum-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.curriculum-image-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.curriculum-overlay-pink {
    background: linear-gradient(135deg, var(--color-pink) 0%, #FFB6C1 100%);
}

.curriculum-overlay-yellow {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFE4A0 100%);
}

.curriculum-overlay-cyan {
    background: linear-gradient(135deg, #7DD3E8 0%, #A8E6CF 100%);
}

.curriculum-overlay-purple {
    background: linear-gradient(135deg, var(--color-purple) 0%, #D4C8F0 100%);
}

.curriculum-content {
    padding: 25px;
    text-align: center;
}

.curriculum-content h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.curriculum-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 15px;
}

.curriculum-level {
    display: inline-block;
    background: var(--color-pink-light);
    color: var(--color-pink);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
}

/* Beginner Support */
.beginner-support-section {
    background: linear-gradient(180deg, #E8F8FF 0%, #FFF5FA 100%);
    padding: 100px 0;
}

.support-chances-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.chance-image-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}


.chance-image-number {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    color: #fff;
}

.chance-image-number span {
    font-size: 18px;
    font-weight: bold;
}

.chance-image-number strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
}

.chance-image-photo {
    height: 200px;
    overflow: hidden;
}

.chance-image-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.chance-image-content {
    padding: 25px;
}

.chance-image-content h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.chance-image-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

/* ========================================
   Step Up Section (ステップアップ)
   ======================================== */
.beginner-stepup-section {
    background: linear-gradient(180deg, #E8F8FF 0%, #FFF5FA 100%);
    padding: 100px 0;
}

.stepup-lead {
    text-align: center;
    font-size: 16px;
    line-height: 2;
    color: #000;
    margin-bottom: 60px;
}

/* ステップアップブロック */
.stepup-block {
    background: #fff;
    border-radius: 24px;
    padding: 40px 45px;
    margin-bottom: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.stepup-block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.stepup-block-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.stepup-block-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.stepup-block-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #000;
    margin-bottom: 28px;
}

/* ステップアップカード */
.stepup-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stepup-card {
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.stepup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stepup-card-img {
    height: auto;
    overflow: hidden;
}

.stepup-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.stepup-card:hover .stepup-card-img img {
    transform: scale(1.05);
}

.stepup-card-body {
    padding: 18px 20px;
    text-align: center;
}

.stepup-card-body h4 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* カードカラー */
.stepup-card-pink {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFE4EC 100%);
    border: 2px solid #FFD1DC;
}
.stepup-card-blue {
    background: linear-gradient(180deg, #EDF6FF 0%, #D6EAFF 100%);
    border: 2px solid #C2DFFF;
}
.stepup-card-yellow {
    background: linear-gradient(180deg, #FFFBEB 0%, #FFF0C9 100%);
    border: 2px solid #FFE4A0;
}
.stepup-card-mint {
    background: linear-gradient(180deg, #E8FFF8 0%, #D0F5ED 100%);
    border: 2px solid #A8E6CF;
}
.stepup-card-purple {
    background: linear-gradient(180deg, #F5F0FF 0%, #E8DEFF 100%);
    border: 2px solid #D4C4F5;
}
.stepup-card-coral {
    background: linear-gradient(180deg, #FFF0ED 0%, #FFE0D6 100%);
    border: 2px solid #FFD0C2;
}

/* 注意書き */
.stepup-disclaimer {
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
    color: #999;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

/* ========================================
   Runway Section (発表会紹介)
   ======================================== */
.beginner-runway-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFF 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.runway-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.runway-photo img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.runway-text {
    display: flex;
    flex-direction: column;
}

.runway-logo-wrapper {
    margin-bottom: 30px;
}

.runway-logo-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
}

.runway-title {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.7;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.runway-desc {
    font-size: 15px;
    line-height: 2;
    color: #000;
}

/* ========================================
   Schedule Tabs (スケジュールタブ切り替え)
   ======================================== */
.schedule-section {
    background: linear-gradient(180deg, #FFF 0%, #FFF5FA 100%);
    padding: 100px 0;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.schedule-tab {
    padding: 14px 35px;
    border: 2px solid var(--color-pink);
    background: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-pink);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.schedule-tab:hover {
    background: var(--color-pink-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 152, 0.15);
}

.schedule-tab.active {
    background: var(--color-pink);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 152, 0.3);
    transform: translateY(-2px);
}

.schedule-tab i {
    margin-right: 6px;
    font-size: 14px;
}

/* Schedule Panels */
.schedule-panel {
    display: none;
    animation: scheduleFadeIn 0.4s ease;
}

.schedule-panel.active {
    display: block;
}

@keyframes scheduleFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Beginner Schedule (legacy support) */
.beginner-schedule-section {
    background: linear-gradient(180deg, #FFF 0%, #FFF5FA 100%);
    padding: 100px 0;
}

/* Beginner Price */
.beginner-price-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #E8F8FF 100%);
    padding: 100px 0;
}

/* Beginner Flow */
.beginner-flow-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFF 100%);
    padding: 100px 0;
}

.flow-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-yellow), var(--color-mint), var(--color-purple));
    border-radius: 2px;
    z-index: 0;
}

.flow-step {
    position: relative;
    z-index: 1;
}

.flow-step-number {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 143, 171, 0.3);
}

.flow-step:nth-child(2) .flow-step-number {
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-mint) 100%);
}

.flow-step:nth-child(3) .flow-step-number {
    background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-purple) 100%);
}

.flow-step:nth-child(4) .flow-step-number {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
}

.flow-step-card {
    background: #fff;
    border-radius: 25px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.flow-step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--color-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-pink);
}

.flow-step:nth-child(2) .flow-step-icon {
    background: var(--color-yellow-light);
    color: #D4A000;
}

.flow-step:nth-child(3) .flow-step-icon {
    background: var(--color-green-light);
    color: var(--color-green);
}

.flow-step:nth-child(4) .flow-step-icon {
    background: var(--color-purple-light);
    color: var(--color-purple);
}

.flow-step-card h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.flow-step-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

/* Beginner CTA */
.beginner-cta-section {
    background: linear-gradient(135deg, #fa505e 0%, #fed878 100%);
    padding: 100px 0;
}

.beginner-cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.beginner-cta-deco {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 28px;
    opacity: 0.8;
}

.beginner-cta-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: bold;
    margin-bottom: 20px;
}

.beginner-cta-text {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

.beginner-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Beginner Responsive */
@media (max-width: 1024px) {
    .feature-panel-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-panel-reverse {
        direction: ltr;
    }
    
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-chances-image-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Step Up SP (tablet) */
    .stepup-block {
        padding: 30px 25px;
    }
    
    .flow-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-timeline::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .beginner-intro-card {
        padding: 40px 25px;
    }
    
    .feature-panel-content {
        padding: 30px;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-timeline {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .beginner-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Step Up SP (mobile) */
    .beginner-stepup-section {
        padding: 60px 0;
    }
    .stepup-lead {
        font-size: 14px;
        margin-bottom: 35px;
    }
    .stepup-block {
        padding: 25px 20px;
        margin-bottom: 25px;
        border-radius: 18px;
    }
    .stepup-block-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 10px;
    }
    .stepup-block-title {
        font-size: 24px;
    }
    .stepup-block-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .stepup-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .stepup-card-img {
        height: auto;
    }
    .stepup-card-body {
        padding: 12px 10px;
    }
    .stepup-card-body h4 {
        font-size: 13px;
    }
    .stepup-disclaimer {
        font-size: 11px;
        margin-top: 25px;
    }
}

/* ========================================
   NEWS PAGE STYLES
   ======================================== */

/* News Featured Section */
.news-featured-section {
    background: linear-gradient(180deg, #FFF 0%, #FFF5FA 100%);
    padding: 80px 0;
}

.news-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 143, 171, 0.15);
}

.news-featured-image {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.news-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

.news-featured-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.news-date {
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-badge {
    display: inline-block;
    background: var(--color-pink);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
}

.news-badge-event {
    background: var(--color-yellow);
    color: #333;
}

.news-badge-media {
    background: var(--color-purple);
}

.news-featured-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-featured-text {
    font-size: 18px;
    line-height: 1.9;
    color: #000;
    margin-bottom: 25px;
}

/* News List Section */
.news-list-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFF 100%);
    padding: 80px 0;
}

/* News Filter Tabs */
.news-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.news-filter-tab {
    padding: 12px 30px;
    border: 2px solid var(--color-pink);
    background: #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-pink);
    cursor: pointer;
    transition: all 0.3s ease;
}


/* News Grid - Cute Style */
.news-grid-cute {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.news-card-cute {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: block;
    text-decoration: none;
}


.news-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.news-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 143, 171, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.news-card-overlay i {
    color: #fff;
    font-size: 24px;
}

.news-card-content {
    padding: 20px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.news-card-meta .news-date {
    font-size: 18px;
}

.news-card-meta .news-badge {
    padding: 4px 12px;
    font-size: 18px;
}

.news-card-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--color-pink-light);
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pagination-next {
    width: auto;
    padding: 0 20px;
    border-radius: 25px;
}

/* News Share Buttons */
.news-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.news-share-label {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.news-share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.share-twitter {
    background: #000000;
}

.share-facebook {
    background: #1877F2;
}

.share-line {
    background: #00C300;
}

/* News Related */
.news-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.news-related-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.news-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.news-related-grid .news-card-cute {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 280px;
}

.news-related-grid .news-card-cute:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.news-related-grid .news-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-related-grid .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-related-grid .news-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-related-grid .news-card-cute:hover .news-card-overlay {
    opacity: 1;
}

.news-related-grid .news-card-content {
    padding: 20px;
}

.news-related-grid .news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.news-related-grid .news-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .news-related-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .news-related-grid .news-card-image {
        height: 200px;
    }
}

/* News CTA Section */
.news-cta-section {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    padding: 100px 0;
}

.news-cta-content {
    text-align: center;
    color: #fff;
}

.news-cta-deco {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 28px;
    opacity: 0.8;
}

.news-cta-content h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: bold;
    margin-bottom: 20px;
}

.news-cta-content p {
    font-size: 24px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.news-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* News Responsive */
@media (max-width: 1024px) {
    .news-featured-card {
        grid-template-columns: 1fr;
    }
    
    .news-featured-image {
        min-height: 250px;
    }
    
    .news-grid-cute {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .news-grid-cute {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .news-featured-content {
        padding: 30px 25px;
    }
    
    .news-filter-tabs {
        gap: 10px;
    }
    
    .news-filter-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .news-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   ABOUT PAGE - NEW SECTIONS
   ======================================== */

/* About What Section */
.about-what-section {
    background: linear-gradient(180deg, #FFF 0%, #FFF5FA 100%);
    padding: 100px 0;
}

.about-what-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 40px;
    padding: 60px 50px;
    box-shadow: 0 25px 80px rgba(255, 143, 171, 0.15);
    position: relative;
    text-align: center;
}

.about-what-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-yellow), var(--color-mint));
    border-radius: 44px;
    z-index: -1;
    opacity: 0.4;
}

.about-what-deco {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    font-size: 28px;
}

.about-what-deco span:nth-child(1) { color: var(--color-yellow); animation: bounce 2s ease-in-out infinite; }
.about-what-deco span:nth-child(2) { color: var(--color-pink); animation: bounce 2s ease-in-out infinite 0.3s; }
.about-what-deco span:nth-child(3) { color: var(--color-purple); animation: bounce 2s ease-in-out infinite 0.6s; }

.about-what-content {
    margin-bottom: 40px;
}

.about-what-lead {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: bold;
    line-height: 2;
    color: #333;
    margin-bottom: 20px;
}

.highlight-text-pink {
    background: linear-gradient(transparent 60%, rgba(255, 143, 171, 0.35) 60%);
    padding: 0 5px;
    font-size: 24px !important;
}

.highlight-text-yellow {
    background: linear-gradient(transparent 60%, rgba(255, 213, 107, 0.35) 60%);
    padding: 0 5px;
    font-size: 24px !important;
}

.about-what-text {
    font-size: 18px;
    line-height: 2;
    color: #000;
}

.about-what-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-what-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-what-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}


/* About Values Section */
.about-values-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #E8F8FF 100%);
    padding: 100px 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-value-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}


.about-value-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.about-value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.about-value-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-value-content {
    padding: 30px 25px;
    text-align: center;
}

.about-value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.about-value-pink .about-value-icon {
    background: linear-gradient(135deg, var(--color-pink) 0%, #FF6B9D 100%);
}

.about-value-yellow .about-value-icon {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFD56B 100%);
}

.about-value-mint .about-value-icon {
    background: linear-gradient(135deg, var(--color-mint) 0%, #7DD3E8 100%);
}

.about-value-content h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.about-value-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

/* About Chance Section */
.about-chance-section {
    background: linear-gradient(180deg, #E8F8FF 0%, #FFF5FA 100%);
    padding: 100px 0;
}

.about-chance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-chance-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}


.about-chance-number {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
    color: #fff;
}

.about-chance-number span {
    font-size: 18px;
    font-weight: bold;
}

.about-chance-number strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
}

.about-chance-photo {
    height: auto;
    overflow: hidden;
}

.about-chance-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.about-chance-content {
    padding: 25px;
}

.about-chance-content h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-chance-content h3 i {
    color: var(--color-pink);
}

.about-chance-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

/* About Access Section */
.about-access-section {
    background: linear-gradient(180deg, #FFF5FA 0%, #FFF 100%);
    padding: 100px 0;
}

.about-access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.about-access-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.about-access-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.about-access-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-pink) 0%, #FF6B9D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.about-access-icon-yellow {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFD56B 100%);
}

.about-access-icon-mint {
    background: linear-gradient(135deg, var(--color-mint) 0%, #7FDBCA 100%);
}

.about-access-header h3 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.about-access-info {
    margin-bottom: 20px;
}

.about-access-address {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    display: flex;
    gap: 10px;
}

.about-access-address i {
    color: var(--color-pink);
    margin-top: 5px;
}

.about-access-map-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 30px;
    background: var(--color-pink);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.about-access-map-link:hover {
    background: var(--color-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 143, 171, 0.3);
}

.about-access-map-link-yellow {
    background: var(--color-yellow);
}

.about-access-map-link-yellow:hover {
    background: #E5B800;
}

.about-access-map-link-mint {
    background: var(--color-mint);
}

.about-access-map-link-mint:hover {
    background: #5ABFA8;
}

@media (min-width: 768px) {
    .about-access-map-link {
        font-size: 18px;
        padding: 12px 40px;
    }
}

.about-access-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* About Special Section */
.about-special-section {
    background: linear-gradient(180deg, #FFF5F8 0%, #FFF 100%);
    padding: 100px 0;
}

.about-special-lessons-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-special-lesson-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-special-lesson-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.about-special-lesson-purple::before {
    background: linear-gradient(90deg, #B8A4E3 0%, #D4C8F0 100%);
}

.about-special-lesson-blue::before {
    background: linear-gradient(90deg, #7DD3FC 0%, #93C5FD 100%);
}

.about-special-lesson-pink::before {
    background: linear-gradient(90deg, #FF8FAB 0%, #FFB5C5 100%);
}

.about-special-lesson-coral::before {
    background: linear-gradient(90deg, #FFA07A 0%, #FFB6A0 100%);
}


.about-special-lesson-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
}

.about-special-lesson-purple .about-special-lesson-icon {
    background: linear-gradient(135deg, #B8A4E3, #D4C8F0);
    color: #fff;
}

.about-special-lesson-blue .about-special-lesson-icon {
    background: linear-gradient(135deg, #7DD3FC, #93C5FD);
    color: #fff;
}

.about-special-lesson-pink .about-special-lesson-icon {
    background: linear-gradient(135deg, #FF8FAB, #FFB5C5);
    color: #fff;
}

.about-special-lesson-coral .about-special-lesson-icon {
    background: linear-gradient(135deg, #FFA07A, #FFB6A0);
    color: #fff;
}

.about-special-lesson-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-black);
}

.about-special-lesson-image {
    width: 100%;
    height: 200px;
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
}

.about-special-lesson-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-special-lesson-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    text-align: left;
}

@media (max-width: 768px) {
    .about-special-lessons-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .about-special-lesson-card {
        padding: 30px 20px;
    }
    
    .about-special-lesson-image {
        height: 150px;
    }
}

/* ========================================
   STUDIO PAGE STYLES
   ======================================== */
.studio-section {
    background: #fff;
    padding: 80px 0;
}

.studio-section .container {
    max-width: 1000px;
}

.studio-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    max-width: 1000px;
    margin-inline: auto;
}

.studio-card:last-child {
    margin-bottom: 0;
}

.studio-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 35px;
    color: #fff;
}

.studio-card-header-pink {
    background: linear-gradient(135deg, var(--color-pink) 0%, #FF6B9D 100%);
}

.studio-card-header-yellow {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFD56B 100%);
}

.studio-card-header-mint {
    background: linear-gradient(135deg, var(--color-mint) 0%, #7DD3E8 100%);
}

.studio-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.studio-card-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.studio-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 35px;
}

.studio-card-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.studio-info-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.studio-info-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.studio-info-label i {
    color: var(--color-pink);
    margin-right: 5px;
}

.studio-info-value {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    padding-left: 25px;
}

.studio-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-pink);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.studio-map-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.studio-map-btn-yellow {
    background: var(--color-yellow);
    color: #333;
}

.studio-map-btn-mint {
    background: var(--color-mint);
    color: #fff;
}

.studio-card-map {
    border-radius: 15px;
    overflow: hidden;
}

.studio-card-map iframe {
    display: block;
}

@media (max-width: 768px) {
    .studio-card-body {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 20px;
    }
    
    .studio-card-header h2 {
        font-size: 24px;
    }
    
    .studio-card-map iframe {
        height: 220px;
    }
}

/* About Company Section */
.about-company-section {
    background: linear-gradient(180deg, #FFF 0%, #F8F4FF 100%);
    padding: 100px 0;
}

.about-company-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(184, 164, 227, 0.15);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.about-company-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink), var(--color-yellow));
    border-radius: 33px;
    z-index: -1;
    opacity: 0.3;
}

.about-company-logo {
    text-align: center;
}

.about-company-logo img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    max-width: 100%;
}

.about-company-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #333;
    letter-spacing: 0.1em;
}

.about-company-content {
    padding-left: 30px;
    border-left: 3px solid var(--color-pink-light);
}

.about-company-text {
    font-size: 20px !important;
    line-height: 2;
    color: #000;
    margin-bottom: 25px;
}

.about-company-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.about-company-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--color-pink-light);
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    color: #e20098;
}

.about-company-feature i {
    font-size: 18px;
}

/* About Responsive */
@media (max-width: 1024px) {
    .about-values-grid,
    .about-chance-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-access-grid {
        grid-template-columns: 1fr;
    }
    
    .about-company-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-company-content {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--color-pink-light);
        padding-top: 30px;
    }
    
    .about-company-features {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about-what-card {
        padding: 40px 25px;
    }
    
    .about-what-images {
        grid-template-columns: 1fr;
    }
    
    .about-what-image img {
        height: 200px;
    }
    
    .about-what-lead {
        font-size: 14px;
    }
    
    .about-what-lead br {
        display: none;
    }
    
    .about-company-card {
        padding: 35px 25px;
    }
}

/* ========================================
   SP用フォントサイズ調整
   ======================================== */
@media (max-width: 768px) {
    .page-hero-label {
        font-size: 24px;
    }
    
    .page-hero-text {
        font-size: 16px;
    }
    
    .faq-cta-content p {
        font-size: 18px;
    }
    
    .news-cta-content p {
        font-size: 18px;
    }
}

/* ========================================
   PC用フォントサイズ調整（削除済み - 個別設定を優先）
   ======================================== */