/* CSS Variables for Consistent Theming - レオソル公式サイト準拠 */
:root {
    --primary-red: #ff3e3e;        /* レオソル公式メインカラー */
    --primary-blue: #0693e3;       /* サブカラー（青系） */
    --accent-orange: #ffa500;       /* ラインオンのたてがみに合わせたオレンジ */
    --accent-green: #00d084;        /* グリーンアクセント */
    --text-dark: #333333;
    --text-light: #797979;          /* レオソル公式準拠 */
    --background-light: #f2f2f2;    /* レオソル公式準拠 */
    --background-softer: #ebedf5;   /* より柔らかな背景色 */
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-large: 12px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
    min-height: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #e63535, var(--primary-red));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #e65a00, var(--accent-orange));
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-large);
}

.btn-close {
    background: #6c757d;
    color: var(--white);
}

.btn-close:hover {
    background: #5a6268;
}

/* Header Section */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.site-logo {
    background: transparent;
    padding: 0.25rem;
}

.site-logo .logo-image {
    height: 55px;
    width: auto;
    /* LEOSOLロゴ統一透過処理 - 黒背景を完全に除去 */
    background: transparent !important;
    mix-blend-mode: screen;
    filter: contrast(1.5) brightness(1.2) saturate(1.2) invert(0);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 50%;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
}

.header-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.header-line-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-red));
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.header-line-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Video Section - 動画のみ */
.hero-video-section {
    position: relative;
    height: 100vh; /* フルスクリーンに設定 */
    width: 100%;
    background: #000;
    overflow: hidden;
    margin-bottom: 0;
}

/* Hero Content Section - テキストコンテンツ */
.hero-content-section {
    position: relative;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-orange) 100%);
    padding: 4rem 0 5rem;
    text-align: center;
    margin-top: 0; /* 動画セクションとの間隔をなくす */
}

.hero-main-content {
    position: relative;
    z-index: 3;
}

/* セクション間のスムーズな接続 */
.hero-video-section + .hero-content-section {
    border-top: none;
    box-shadow: none;
}

/* ヒーロー動画背景 */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* フルスクリーン表示のためcoverに戻す */
    object-position: center;
}

/* Events Showcase Section - イベントスライダー */
.events-showcase {
    padding: 5rem 1rem;
    background: var(--background-light);
}

.events-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    width: 100%;
}

.events-slider {
    position: relative;
    height: 500px;
}

.event-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.event-slide.active {
    opacity: 1;
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-photo-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.event-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0;
}

.event-photo.active {
    opacity: 1;
}

.event-slide:hover .event-photo.active {
    transform: scale(1.05);
}

.photo-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 2;
}

.photo-nav-btn {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
}

.event-image:hover .photo-nav-btn {
    opacity: 1;
}

.photo-nav-btn:hover {
    background: rgba(255, 62, 62, 0.8);
    transform: scale(1.1);
}

.photo-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.photo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.photo-dot.active {
    background: var(--primary-red);
    border-color: white;
}

.photo-dot:hover {
    background: var(--accent-orange);
}

.event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.event-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-frequency,
.event-participants {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: var(--white);
}

.slider-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-red);
}

.dot:hover {
    background: var(--accent-orange);
}

.events-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
}

.events-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .events-slider-container {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 1.4rem;
    }
    
    .event-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .events-showcase {
        padding: 3rem 0;
    }
    
    .events-slider-container {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .events-slider {
        height: auto;
        min-height: 450px;
    }
    
    .event-slide {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 450px;
    }
    
    .event-image {
        height: 250px;
        order: 1;
    }
    
    .event-content {
        padding: 1.5rem;
        order: 2;
    }
    
    .event-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .event-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .event-details {
        gap: 0.3rem;
    }
    
    .event-frequency,
    .event-participants {
        font-size: 0.8rem;
    }
    
    .slider-controls {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        gap: 0.3rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .photo-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        opacity: 1; /* モバイルでは常に表示 */
    }
    
    .photo-dots {
        bottom: 0.5rem;
    }
    
    .photo-dot {
        width: 10px;
        height: 10px;
    }
    
    .event-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        top: 0.8rem;
        left: 0.8rem;
    }
}

@media (max-width: 480px) {
    .events-showcase {
        padding: 2rem 0;
    }
    
    .events-slider-container {
        max-width: 100%;
        margin: 0 0.5rem;
        border-radius: 12px;
    }
    
    .events-slider {
        min-height: 400px;
    }
    
    .event-slide {
        min-height: 400px;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .event-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .event-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .event-frequency,
    .event-participants {
        font-size: 0.75rem;
    }
    
    .slider-controls {
        padding: 0.8rem;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .photo-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        padding: 0 0.3rem;
    }
    
    .photo-dot {
        width: 8px;
        height: 8px;
    }
    
    .event-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        top: 0.5rem;
        left: 0.5rem;
    }
}

/* 動画が利用できない場合のフォールバック */
.hero:not(.has-video) {
    background: linear-gradient(135deg, #ff3e3e 0%, #ff6900 100%);
}

.hero:not(.has-video)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(45deg, var(--accent-orange), #ffcd39);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-yellow);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn {
    min-width: 280px;
}

/* ヒーローキャラクター */
.hero-character {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* キャラクター用の自然な透過処理 */
.character-image,
.faq-character-image {
    /* 自然な透過処理（キャラクターの顔を保護） */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) 
            contrast(1.1) 
            brightness(1.05);
}

/* =================================================================== */
/* LEOSOLロゴ透過処理システム - 2025年1月強化版 */
/* =================================================================== */

/* 全LEOSOLロゴ統一透過処理 */
.logo-image,
.credentials-logo,
.testimonials-logo,
.site-logo .logo-image {
    /* 新しいロゴ用の最適化処理 */
    background: transparent !important;
    mix-blend-mode: multiply;
    filter: contrast(1.3) brightness(1.2) saturate(1.15) drop-shadow(0 1px 3px rgba(0,0,0,0.1));
}

/* 新しいLEOSOLロゴ専用の透過処理 */
img[src*="logo-black"],
img[src*="leosol-logo-black"] {
    /* 黒背景を完全透過 */
    background: transparent !important;
    mix-blend-mode: multiply !important;
    filter: contrast(1.8) brightness(1.4) saturate(1.3) !important;
}

/* 新しい赤ロゴの背景透過 */
img[src*="leosol-logo-red"] {
    background: transparent !important;
    mix-blend-mode: multiply;
    filter: contrast(1.2) brightness(1.1) saturate(1.1);
}

/* レスポンシブ対応 - ロゴサイズ最適化 */
@media (max-width: 768px) {
    .site-logo .logo-image {
        height: 40px;
        filter: contrast(1.4) brightness(1.25) saturate(1.2);
    }
    
    .credentials-logo {
        height: 60px;
    }
    
    .testimonials-logo {
        height: 50px;
    }
}

/* ホバーエフェクト - ロゴインタラクション */
.logo-image:hover,
.credentials-logo:hover,
.testimonials-logo:hover {
    filter: contrast(1.4) brightness(1.3) saturate(1.2) drop-shadow(0 2px 8px rgba(255,62,62,0.2));
    transition: all 0.3s ease;
    transform: scale(1.02);
}

.character-container {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.character-image {
    width: 120px;
    height: auto;
    animation: bounce-gentle 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    /* 黒背景を透過処理 */
    background: transparent;
    mix-blend-mode: multiply;
    /* キャラクターの自然な形を保持 */
}

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

.character-speech {
    background: var(--white);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
    max-width: 200px;
    animation: pulse-speech 4s ease-in-out infinite;
}

.character-speech::before {
    content: '';
    position: absolute;
    left: -10px;
    bottom: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid var(--white);
}

.character-speech p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes pulse-speech {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Credentials Section */
.credentials {
    padding: 3rem 0;
    background: var(--white);
}

.credentials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.credentials-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    /* LEOSOLロゴ統一透過処理 */
    background: transparent !important;
    mix-blend-mode: multiply;
    filter: contrast(1.3) brightness(1.15) saturate(1.1);
}

.credentials-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 62, 62, 0.1), rgba(255, 105, 0, 0.1));
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.credential-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.credential-icon {
    font-size: 2rem;
    color: var(--primary-red);
    min-width: 50px;
}

.credential-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.credential-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Concerns Section */
.concerns {
    padding: 5rem 0;
    background: var(--background-light);
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.concern-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.concern-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.concern-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.concern-icon i {
    font-size: 1.8rem;
    color: #666;
    transition: var(--transition);
}

.concern-item:hover .concern-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.concern-item:hover .concern-icon i {
    color: var(--primary-blue);
}

/* 個別アイコンの色分け */
.concern-item:nth-child(1):hover .concern-icon {
    border-color: #ff6b6b;
}

.concern-item:nth-child(1):hover .concern-icon i {
    color: #ff6b6b;
}

.concern-item:nth-child(2):hover .concern-icon {
    border-color: #22b573;
}

.concern-item:nth-child(2):hover .concern-icon i {
    color: #22b573;
}

.concern-item:nth-child(3):hover .concern-icon {
    border-color: var(--primary-blue);
}

/* Lion-onキャラクター画像のスタイル */
.concern-character {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow: hidden;
}

.lion-concern-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.concern-item:hover .concern-character {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.concern-item:hover .lion-concern-image {
    transform: scale(1.1);
}

/* 個別キャラクターのボーダー色分け */
.concern-item:nth-child(1):hover .concern-character {
    border-color: #ff6b6b;
}

.concern-item:nth-child(2):hover .concern-character {
    border-color: #22b573;
}

.concern-item:nth-child(3):hover .concern-character {
    border-color: var(--primary-blue);
}

.concern-item:nth-child(3):hover .concern-icon i {
    color: var(--primary-blue);
}

.concern-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.concerns-solution {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #33b5ea);
    border-radius: var(--border-radius-large);
    color: var(--white);
}

.solution-text {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--primary-red);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-image .real-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .real-photo {
    transform: scale(1.05);
}

/* 写真付きの特徴カード */
.feature-card:has(.feature-image) {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.feature-card:has(.feature-image):hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Middle Section */
.cta-middle {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-green), #47c474);
    color: var(--white);
    text-align: center;
}

.cta-content h3 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Video Showcase Section */
.video-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 62, 62, 0.05), rgba(255, 105, 0, 0.05));
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.video-card:hover .video-placeholder {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: var(--transition);
}

.video-placeholder:hover .play-button {
    background: var(--white);
    transform: scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
}

.video-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.video-cta {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
}

.video-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Sports Section */
.sports {
    padding: 5rem 0;
    background: var(--background-light);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.sport-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.sport-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.sport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sport-card:hover .sport-image img {
    transform: scale(1.05);
}

.sport-real-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sport-card:hover .sport-real-photo {
    transform: scale(1.05);
}

.sport-icon-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sport-icon-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: var(--white);
}

.sport-content {
    padding: 1.5rem;
}

.sport-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.sport-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brand-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.testimonials-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
    /* LEOSOLロゴ統一透過処理 */
    background: transparent !important;
    mix-blend-mode: multiply;
    filter: contrast(1.3) brightness(1.15) saturate(1.1);
}

.brand-trust p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-yellow);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Philosophy Section - レオソルの理念 */
.philosophy {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 62, 62, 0.05) 0%, rgba(255, 105, 0, 0.05) 100%);
    position: relative;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://page.gensparksite.com/v1/base64_upload/77c7898551723d8c53eacfc98de383d1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; /* 淡い背景として表示 */
    pointer-events: none;
}

.philosophy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 62, 62, 0.1) 50%, 
        rgba(255, 105, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.philosophy-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.philosophy-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
}

.philosophy-team-photo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-hover);
    margin-bottom: 1rem;
}

.philosophy-intro p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 600px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.philosophy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    opacity: 0.1;
    border-radius: 0 var(--border-radius-large) 0 100%;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.philosophy-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.philosophy-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.philosophy-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-card {
        padding: 1.5rem;
    }
    
    .philosophy-title {
        font-size: 1.2rem;
    }
    
    /* フッターのモバイル対応 */
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-logo {
        order: 1;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 0;
    }
    
    .footer-section:nth-child(2) {
        order: 2; /* スポーツメニュー */
    }
    
    .footer-section:nth-child(3) {
        order: 4; /* エリア情報 */
    }
    
    .footer-section:nth-child(4) {
        order: 3; /* お申し込み（優先表示） */
    }
    
    .footer-area-list {
        align-items: center; /* 中央揃え */
    }
    
    .area-item {
        text-align: center;
        align-items: center;
        width: 100%;
        max-width: 250px;
    }
    
    .area-header {
        justify-content: center;
        font-size: 1rem;
    }
    
    .area-name {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .sub-area {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
        font-size: 0.85rem;
    }
    
    .sub-area {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: left; /* 左揃いに変更 */
        width: 100%;
        white-space: normal; /* 改行許可 */
        word-wrap: break-word; /* 長い単語の改行 */
    }
    
    .footer-cta {
        align-items: center;
    }
    
    .footer-btn-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-info p {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .separator {
        display: none;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        text-align: center;
    }
    
    .footer-message {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--background-light);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-blue), #33b5ea);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-body {
    padding: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.highlight {
    background: rgba(255, 62, 62, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 0.5rem 0;
    border: none;
}

.price-item.special {
    background: rgba(0, 208, 130, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 0.5rem 0;
    border: none;
}

.price-label {
    font-weight: 500;
}

.price-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-red);
}

.pricing-note {
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--background-light);
}

/* Locations Section */
.locations {
    padding: 5rem 0;
}

.locations-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button.active,
.tab-button:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.area-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #00a0e9, #0693e3);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.area-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

/* 特別プログラム用スタイル */
.special-program {
    border: 2px solid #fbb03b;
    background: linear-gradient(135deg, #fff9f0, #fffbf5);
}

.special-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbb03b, #f39c12);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* 室内施設用スタイル */
.indoor-facility {
    border: 2px solid #22b573;
    background: linear-gradient(135deg, #f0fff4, #f5fff8);
}

.indoor-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22b573, #27ae60);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.location-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.location-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.location-item p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.location-item i {
    color: var(--accent-green);
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-light);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 62, 62, 0.1);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius-large);
}

.faq-character {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-character-image {
    width: 80px;
    height: auto;
    animation: wave 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    background: transparent;
    mix-blend-mode: multiply;
    /* キャラクターの自然な形を保持 */
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.character-message p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Trial Flow Section */
.trial-flow {
    padding: 5rem 0;
    background: var(--background-light);
}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.trial-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
    text-align: center;
}

.trial-info h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.item i {
    font-size: 2rem;
    color: var(--accent-green);
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #555 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-note {
    opacity: 0.8;
    font-size: 1rem;
}

.phone-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    padding: 4rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange), var(--primary-blue));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.footer-logo-image {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    /* フッターロゴは透過処理を無効化（目と眉毛を保護） */
    background: transparent !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.footer-logo-protected {
    /* 新しいLEOSOLロゴ専用保護設定 */
    filter: none !important;
    mix-blend-mode: normal !important;
    background: transparent !important;
    /* 目と眉毛を保護するため、一切の画像処理を無効化 */
}

.footer-tagline {
    opacity: 0.9;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #444;
    border-radius: 25px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.footer-section {
    padding: 0 1rem;
    writing-mode: horizontal-tb; /* 横書き強制 */
    text-orientation: mixed;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    color: #cccccc;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    writing-mode: horizontal-tb; /* 横書き強制 */
    text-orientation: mixed; /* 横書き文字向き */
    flex-direction: row; /* 横並び強制 */
}

.footer-list li i {
    color: var(--primary-red);
    width: 16px;
}

.footer-area-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.area-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.area-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-name {
    font-weight: 500;
    color: #ffffff;
    writing-mode: horizontal-tb;
    white-space: nowrap; /* 改行防止 */
}

.sub-area {
    font-size: 0.8rem;
    color: #999;
    margin-left: 1.5rem;
    writing-mode: horizontal-tb; /* 横書き強制 */
    text-orientation: mixed;
    display: block;
    line-height: 1.4;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.footer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.9rem;
    color: #cccccc;
}

.footer-info i {
    color: var(--primary-red);
    width: 16px;
}

.footer-links {
    text-align: center;
    margin-bottom: 2rem;
}

.separator {
    color: #666;
    margin: 0 0.5rem;
}

.footer-message {
    margin-top: 0.5rem;
    font-style: italic;
    color: #cccccc;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    opacity: 0.8;
    color: #ffffff;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-red);
    border-radius: 50px;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.floating-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
}

.floating-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-btn {
    background: var(--white);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.05);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
}

.video-modal-header {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3001;
}

.video-close-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.video-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-body {
    position: relative;
}

.video-modal video {
    width: 100%;
    height: auto;
    display: block;
}

/* Exit Modal */
.exit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-large);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-blue), #33b5ea);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-body p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.modal-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.benefit i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.modal-footer {
    padding: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-text {
        display: none;
    }
    
    .floating-content {
        padding: 1rem;
    }
    
    /* ヒーロー動画のモバイル対応 */
    .hero-video-section {
        height: 100vh; /* モバイルでもフルスクリーン */
    }
    
    .hero-video {
        object-fit: cover; /* モバイルでもフルカバー */
    }
    
    /* ヘッダーロゴのモバイル対応 */
    .site-logo .logo-image {
        height: 45px;
    }
    }
    
    .hero-character {
        margin-top: 1.5rem;
    }
    
    .character-container {
        flex-direction: column;
        align-items: center;
    }
    
    .character-image {
        width: 80px;
    }
    
    .character-speech {
        max-width: 180px;
        text-align: center;
    }
    
    .character-speech::before {
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 15px solid var(--white);
        border-bottom: none;
    }
    
    .site-logo .logo-image {
        height: 40px;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-phone-btn,
    .header-line-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .credentials-logo {
        height: 60px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .locations-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 4rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
    
    .header-phone-btn,
    .header-line-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .feature-image {
        height: 150px;
    }
}

/* Performance Optimizations */
.hero::before,
.floating-cta,
.feature-card,
.testimonial-card,
.concern-item,
.sport-card,
.location-item {
    will-change: transform;
}

/* Focus States for Accessibility */
.btn:focus,
.tab-button:focus {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title,
.feature-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .floating-cta,
    .exit-modal,
    .btn {
        display: none !important;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
}

/* =================================================================== */
/* スポーツキャラクター配置とアニメーション - 2025年1月更新 */
/* =================================================================== */

/* スポーツカード内のキャラクター配置 */
.sport-character {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    opacity: 0.9;
    transition: var(--transition);
}

.sport-card:hover .sport-character {
    opacity: 1;
    transform: scale(1.05);
}

.character-sports {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: bounce-gentle 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

/* セクション用バナーキャラクター */
.section-character {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.character-banner {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    animation: wave 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* 透過処理システム - 黒背景除去 */
.transparent-bg {
    /* 自然な透過処理 */
    background: transparent !important;
    mix-blend-mode: multiply;
    filter: contrast(1.08) brightness(1.03);
}

/* キャラクターアニメーション */
@keyframes wave {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-8px) rotate(1deg); 
    }
    50% { 
        transform: translateY(0px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-5px) rotate(-1deg); 
    }
}

@keyframes bounce-gentle {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-6px) scale(1.02); 
    }
}

/* レスポンシブ対応 - スポーツキャラクター */
@media (max-width: 768px) {
    .character-sports {
        width: 45px;
        height: 45px;
    }
    
    .sport-character {
        top: 8px;
        right: 8px;
    }
    
    .character-banner {
        max-width: 150px;
    }
    
    /* スマホでスポーツ体験画像を大きくする */
    .sport-image {
        height: 200px; /* 150px → 200px */
    }
    
    /* 悩み解決テキストの改行調整 */
    .solution-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .solution-text strong {
        display: block;
        text-align: center;
        word-break: keep-all;
    }
    
    .mobile-br {
        display: inline;
    }
}

@media (max-width: 480px) {
    .character-sports {
        width: 40px;
        height: 40px;
    }
    
    .sport-character {
        top: 6px;
        right: 6px;
    }
    
    .character-banner {
        max-width: 120px;
    }
    
    /* 小さい画面でもスポーツ体験画像をさらに大きくする */
    .sport-image {
        height: 220px; /* さらに大きく */
    }
    
    /* 悩み解決テキストを2行に分けてより読みやすく */
    .solution-text strong::after {
        content: "";
        display: block;
        margin: 0.3rem 0;
    }
    
    /* フッターの極小画面対応 */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .footer-social {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .social-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-list li {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .sub-area {
        font-size: 0.75rem;
    }
    
    .footer-btn-primary {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}
}

/* デスクトップではモバイル改行を隠す */
.mobile-br {
    display: none;
}

/* ホバーエフェクト */
.sport-card:hover .character-sports {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.1);
}

.section-character:hover .character-banner {
    animation-play-state: paused;
    transform: scale(1.05);
}