/*
Theme Name: LaLa Global Language
Theme URI: https://example.com/lala-global-language
Author: LaLa Global Language Team
Author URI: https://example.com
Description: 35ヶ国語から選べる、日本人のための語学スクール用WordPressテーマ
Version: 1.0
License: GPL v2 or later
Text Domain: lala-global-language
*/

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

:root {
    --primary-color: #008080; /* Teal Blue - GLOBAL LANGUAGE */
    --secondary-color: #F88379; /* Coral Pink - LaLa Logo */
    --accent-color: #FFD700; /* Bright Yellow - Music notes & accents */
    --dark-color: #2D3436;
    --light-color: #FFFFFF;
    --text-color: #333333;
    --gradient-1: linear-gradient(135deg, #008080 0%, #006666 100%);
    --gradient-2: linear-gradient(135deg, #F88379 0%, #F56B5F 100%);
    --gradient-3: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    
    /* Responsive spacing variables */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Touch target minimum size */
    --touch-target-min: 44px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #F8F9FA;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 2rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #008080 0%, #006666 100%);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--touch-target-min);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.site-title {
    font-size: 1.8rem;
    color: var(--light-color);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.site-title:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
    min-height: var(--touch-target-min);
    display: flex;
    align-items: center;
}

.main-navigation a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Announcement Bar */
.announcement-bar {
    width: 100%;
    padding: 15px 0;
    position: relative;
    z-index: 999;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-bar.announcement-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, #006666 100%);
    color: white;
}

.announcement-bar.announcement-warning {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: var(--dark-color);
}

.announcement-bar.announcement-success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.announcement-bar.announcement-error {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #F56B5F 100%);
    color: white;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.announcement-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
}

.announcement-text p {
    margin: 0;
    display: inline;
}

.announcement-text a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.announcement-text a:hover {
    text-decoration: none;
}

.announcement-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.announcement-close:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Adjust header position when announcement is present */
body.has-announcement .site-header {
    top: auto;
}

/* Mobile responsiveness for announcement */
@media (max-width: 768px) {
    .announcement-bar {
        padding: 12px 0;
    }
    
    .announcement-content {
        padding: 0 15px;
    }
    
    .announcement-text {
        font-size: 0.9rem;
    }
    
    .announcement-close {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #F88379 0%, #F56B5F 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, white 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s ease-in-out infinite;
}

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

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

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    /* Ensure content is always visible */
    pointer-events: auto;
    isolation: isolate;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: white;
    text-shadow: 
        -2px -2px 0 rgba(0, 0, 0, 0.5),
        2px -2px 0 rgba(0, 0, 0, 0.5),
        -2px 2px 0 rgba(0, 0, 0, 0.5),
        2px 2px 0 rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 0, 0, 0.6);
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.5),
        1px -1px 0 rgba(0, 0, 0, 0.5),
        -1px 1px 0 rgba(0, 0, 0, 0.5),
        1px 1px 0 rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-buttons .btn {
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover .btn-icon {
    transform: translateX(5px);
}

.hero-buttons .btn-primary {
    background: white;
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.hero-buttons .btn-secondary:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.stat-highlight {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 25px 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-highlight:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.stat-text {
    font-size: 1.5rem;
    color: white;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-text strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 8px rgba(0, 0, 0, 0.8);
    display: inline-block;
    margin: 0 5px;
}

.stat-text .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 12px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
    display: inline-block;
    margin: 0 8px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.stat-highlight:hover .stat-number {
    transform: scale(1.1);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
}

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

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure animations work on mobile */
@media (max-width: 768px) {
    .animate-fade-up {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Fallback for browsers that don't support animations */
@supports not (animation: fadeUp 0.8s) {
    .animate-fade-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: var(--touch-target-min);
    touch-action: manipulation; /* Improve touch responsiveness */
}

.btn-primary {
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--light-color);
}

.features-image {
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.features-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, #FFE8E5 0%, #F88379 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scale(2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* Content Area */
.content-area {
    padding: 60px 0;
}

.entry-content {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

/* Sidebar */
.sidebar {
    background: var(--light-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent-color);
}

/* Announcements List Section */
.announcements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.announcements-bg-shape {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.announcements-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.announcements-section .title-icon {
    font-size: 2.5rem;
    vertical-align: middle;
    margin-right: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.announcement-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.announcement-card:hover::before {
    width: 8px;
}

.announcement-type-info::before {
    background: var(--primary-color);
}

.announcement-type-warning::before {
    background: #FFD700;
}

.announcement-type-warning {
    background-color: #FFF9E6;
}

.announcement-type-success::before {
    background: #4CAF50;
}

.announcement-type-success {
    background-color: #E8F5E9;
}

.announcement-type-error::before {
    background: var(--secondary-color);
}

.announcement-type-error {
    background-color: #FFEBEE;
}

.announcement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.announcement-icon {
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.announcement-date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.announcement-title {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.announcement-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.announcement-expand {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.announcement-expand:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.announcement-expand .expand-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.announcement-expand.expanded .expand-icon {
    transform: rotate(180deg);
}

.announcement-full-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    line-height: 1.8;
    animation: slideDown 0.3s ease-out;
}

.announcement-full-content p {
    margin-bottom: 15px;
}

.announcement-full-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.announcement-full-content a:hover {
    text-decoration: none;
}

.announcements-footer {
    text-align: center;
    margin-top: 40px;
}

.announcements-footer .btn-outline {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.announcements-footer .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 128, 128, 0.3);
}

/* Mobile responsiveness for announcements list */
@media (max-width: 768px) {
    .announcements-section {
        padding: 60px 0;
    }
    
    .announcements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .announcement-card {
        padding: 20px;
    }
    
    .announcement-title {
        font-size: 1.1rem;
    }
    
    .announcement-icon {
        font-size: 1.5rem;
    }
    
    .announcements-section .title-icon {
        font-size: 2rem;
        display: block;
        margin: 0 0 10px 0;
    }
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

/* ===========================================
   RESPONSIVE DESIGN - Mobile First Approach
   =========================================== */

/* Base Mobile Styles (320px and up) */
@media (max-width: 480px) {
    /* Typography adjustments */
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    p {
        margin-bottom: 0.75rem;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Header adjustments */
    .site-header {
        padding: 10px 0;
        position: relative;
    }
    
    .site-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .site-title {
        font-size: 1.3rem;
        text-align: left;
    }
    
    /* Navigation - Already handled in header.php */
    
    /* Hero section */
    .hero-section {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        white-space: normal;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        margin-bottom: 20px;
    }
    
    .stat-highlight {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
    
    .stat-text strong,
    .stat-text .stat-number {
        font-size: 1.2rem;
        display: inline;
        margin: 0 3px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        border-radius: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-buttons .btn {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
    
    .hero-scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
    }
    
    /* Features section */
    .features-section {
        padding: 40px 0;
    }
    
    .features-image {
        margin: 20px -15px;
        border-radius: 0;
    }
    
    .features-image img {
        max-height: 200px;
        border-radius: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .feature-card:hover {
        transform: translateY(-3px);
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Announcement Bar */
    .announcement-bar {
        padding: 10px 0;
    }
    
    .announcement-content {
        padding: 0 10px;
        gap: 15px;
    }
    
    .announcement-text {
        font-size: 0.85rem;
    }
    
    .announcement-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    
    /* Announcements List */
    .announcements-section {
        padding: 40px 0;
    }
    
    .announcements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .announcement-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .announcement-icon {
        font-size: 1.3rem;
    }
    
    .announcement-date {
        font-size: 0.8rem;
    }
    
    .announcement-title {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .announcement-excerpt {
        font-size: 0.85rem;
    }
    
    .announcement-expand {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* Content area */
    .content-area {
        padding: 30px 0;
    }
    
    .entry-content {
        padding: 20px;
        border-radius: 15px;
    }
    
    /* Sidebar */
    .sidebar {
        padding: 20px;
        margin-top: 30px;
        border-radius: 15px;
    }
    
    .widget {
        margin-bottom: 20px;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .site-footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-widget h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.85rem;
    }
    
    /* Tax notices */
    .tax-notice {
        font-size: 0.85rem;
        padding: 8px 15px;
        margin-bottom: 20px;
    }
    
    .tax-notice-table {
        font-size: 0.85rem;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    
    .tax-notice-footer {
        font-size: 0.8rem;
    }
    
    /* Disable complex animations on mobile */
    .hero-animated-bg,
    .floating-shape,
    .emoji-animation {
        display: none !important;
    }
    
    /* Simplify animations */
    *, *::before, *::after {
        animation-duration: 0.3s !important;
        animation-delay: 0s !important;
    }
    
    .animate-fade-up,
    .fade-in,
    .slide-in-left,
    .slide-in-right {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Small Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Typography */
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Container */
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .site-header {
        padding: 12px 0;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    /* Hero section */
    .hero-section {
        padding: 70px 0 50px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 200px;
        padding: 16px 35px;
    }
    
    .stat-highlight {
        padding: 20px 35px;
        flex-direction: row;
    }
    
    .stat-text {
        font-size: 1.1rem;
    }
    
    .stat-text .stat-number {
        font-size: 2rem;
    }
    
    /* Features */
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    /* Announcements */
    .announcements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
    }
}

/* Tablets and Small Desktops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Container */
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    /* Typography */
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    /* Header */
    .site-header {
        padding: 15px 0;
    }
    
    /* Navigation */
    .main-navigation a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* Hero section */
    .hero-section {
        padding: 90px 0 70px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    /* Announcements */
    .announcements-section {
        padding: 60px 0;
    }
    
    .announcements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Desktop (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    /* Features */
    .features-grid {
        gap: 35px;
    }
}

/* Wide screens (1201px+) - Already handled in base styles */

/* Landscape orientation optimizations */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 0 30px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .site-header {
        position: relative;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .main-navigation a,
    .announcement-close,
    .announcement-expand {
        min-height: 44px;
        min-width: 44px;
    }
    
    .feature-card:hover,
    .overview-item:hover,
    .language-item:hover {
        transform: none;
    }
}

/* Utility Classes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .announcement-bar,
    .hero-scroll-indicator,
    .btn,
    .floating-shape {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}

/* Fun Elements */
.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.emoji-animation {
    display: inline-block;
    animation: rotate 2s linear infinite;
}

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

/* ===========================================
   UTILITY CLASSES FOR RESPONSIVE DESIGN
   =========================================== */

/* Hide elements on specific screen sizes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
}

/* Responsive text alignment */
@media (max-width: 480px) {
    .text-center-mobile {
        text-align: center;
    }
}

/* Responsive padding/margin utilities */
@media (max-width: 768px) {
    .p-mobile-small {
        padding: var(--spacing-sm);
    }
    
    .m-mobile-small {
        margin: var(--spacing-sm);
    }
}

/* Performance optimizations */
@media (max-width: 768px) {
    /* Use GPU acceleration for transforms */
    .hero-section,
    .feature-card {
        will-change: auto;
    }
    
    /* Optimize image rendering */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ===========================================
   TAX NOTICE STYLES
   =========================================== */

/* Tax notice in sections */
.tax-notice {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: rgba(0, 128, 128, 0.05);
    border-radius: 50px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Tax notice after pricing table */
.tax-notice-table {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 20px;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Tax notice in footer */
.tax-notice-footer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 10px 0;
}

/* Highlight tax info in price labels */
.price-label-with-tax::after {
    content: "(税込)";
    font-size: 0.85em;
    color: var(--primary-color);
    margin-left: 5px;
}

/* Hero Section Responsive Styles */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 90vh;
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        white-space: normal;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-animated-bg {
        display: none; /* Hide animations on mobile for performance */
    }
    
    .hero-content {
        z-index: 999 !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 20px;
        color: white !important;
        opacity: 1 !important;
        visibility: visible !important;
        white-space: normal;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 20px;
        color: white !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    .hero-stats {
        margin-top: 15px;
    }
    
    .stat-highlight {
        padding: 20px 30px;
        gap: 15px;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 1.2rem;
    }
    
    .stat-text strong {
        font-size: 1.5rem;
    }
    
    .stat-text .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    /* Adjust background attachment for mobile */
    .hero-section {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        color: white !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 15px;
        color: white !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-buttons .btn {
        padding: 16px 30px;
        font-size: 0.95rem;
    }
    
    .stat-highlight {
        padding: 15px 25px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
    
    .stat-text strong {
        font-size: 1.3rem;
        display: block;
        margin: 5px 0;
    }
    
    .stat-text .stat-number {
        font-size: 2rem;
        margin: 5px 0;
    }
}

/* Landscape orientation optimizations for Hero */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 50px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        margin-bottom: 30px;
    }
    
    .stat-highlight {
        padding: 10px 20px;
        gap: 10px;
        flex-direction: row;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
    
    .stat-text strong {
        font-size: 1.1rem;
        display: inline;
        margin: 0 3px;
    }
    
    .stat-text .stat-number {
        font-size: 1.5rem;
        margin: 0 3px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* ===========================================
   WEEKLY SCHEDULE SECTION STYLES
   =========================================== */

/* Schedule Section Base */
.schedule-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.schedule-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.schedule-pattern {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0, 128, 128, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(45deg);
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% { transform: rotate(45deg) translate(0, 0); }
    100% { transform: rotate(45deg) translate(40px, 40px); }
}

/* Schedule Header */
.schedule-header {
    text-align: center;
    margin-bottom: 60px;
}

.schedule-header .section-title {
    margin-bottom: 30px;
}

.title-en {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.title-ja {
    display: block;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.subtitle-highlight {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Time Legend */
.time-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.legend-icon {
    font-size: 1.5rem;
}

.legend-text {
    font-weight: 600;
    color: #333;
}

.legend-item.morning {
    background: linear-gradient(135deg, #FFE5B4 0%, #FFD4A3 100%);
}

.legend-item.afternoon {
    background: linear-gradient(135deg, #B4E7FF 0%, #A3D8FF 100%);
}

.legend-item.evening {
    background: linear-gradient(135deg, #E0BBE4 0%, #D4A5D9 100%);
}

/* Visual Calendar Grid */
.schedule-visual-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.schedule-calendar {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Calendar Header */
.calendar-header {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.time-header {
    font-weight: 700;
    color: #666;
    text-align: center;
    padding: 15px 0;
}

.day-header {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.day-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.day-header:hover::before {
    transform: scaleX(1);
}

.day-header.weekend {
    background: linear-gradient(135deg, #ffe8e8 0%, #ffd6d6 100%);
}

.day-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.day-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
}

/* Time Slots Grid */
.time-slots-grid {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    gap: 10px;
}

.time-label {
    font-weight: 600;
    color: #666;
    text-align: center;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Slot Styles */
.slot {
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slot.available {
    background: #f8f9fa;
    border: 2px solid transparent;
}

.slot.available:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.slot.morning {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
}

.slot.afternoon {
    background: linear-gradient(135deg, #E6F3FF 0%, #CCE7FF 100%);
}

.slot.evening {
    background: linear-gradient(135deg, #F5E6FF 0%, #E8CCFF 100%);
}

.slot.unavailable {
    background: #e9ecef;
    opacity: 0.5;
    cursor: not-allowed;
}

.slot.weekend {
    border-color: #ffd6d6;
}

.slot-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--accent-color);
    color: #333;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

/* Break Row */
.break-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: linear-gradient(90deg, transparent 0%, #e9ecef 20%, #e9ecef 80%, transparent 100%);
    color: #999;
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Mobile Schedule View */
.schedule-mobile-view {
    display: none;
}

.mobile-day-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 15px;
}

.day-tab {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-tab.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-schedule-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-day-content {
    display: none;
}

.mobile-day-content.active {
    display: block;
}

.mobile-day-content h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.mobile-time-group {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
}

.mobile-time-group.morning {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
}

.mobile-time-group.afternoon {
    background: linear-gradient(135deg, #E6F3FF 0%, #CCE7FF 100%);
}

.mobile-time-group.evening {
    background: linear-gradient(135deg, #F5E6FF 0%, #E8CCFF 100%);
}

.mobile-time-group h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.mobile-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mobile-slot {
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mobile-slot:hover {
    transform: translateY(-2px);
}

.mobile-slot.popular {
    background: var(--accent-color);
    color: #333;
}

.mobile-total {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    color: #666;
}

/* Schedule Stats */
.schedule-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Schedule CTA */
.schedule-cta {
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.schedule-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #333;
}

.schedule-cta .btn {
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design for Schedule */
@media (max-width: 1200px) {
    .schedule-calendar {
        padding: 30px;
    }
    
    .calendar-header,
    .time-slots-grid {
        gap: 8px;
    }
    
    .slot {
        padding: 15px 10px;
        min-height: 60px;
    }
    
    .slot-number {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .schedule-header .title-ja {
        font-size: 2.5rem;
    }
    
    .time-legend {
        gap: 20px;
    }
    
    .legend-item {
        padding: 8px 15px;
    }
    
    .legend-icon {
        font-size: 1.2rem;
    }
    
    .schedule-stats {
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .schedule-section {
        padding: 60px 0;
    }
    
    .schedule-header {
        margin-bottom: 40px;
    }
    
    .title-en {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .title-ja {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .subtitle-highlight {
        font-size: 1.3rem;
    }
    
    /* Hide desktop calendar on mobile */
    .schedule-calendar {
        display: none;
    }
    
    /* Show mobile view */
    .schedule-mobile-view {
        display: block;
    }
    
    /* Time legend - stack vertically */
    .time-legend {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .legend-item {
        width: 200px;
    }
    
    /* Stats - stack vertically */
    .schedule-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px;
    }
    
    .stat-card .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* CTA adjustments */
    .schedule-cta {
        padding: 30px 20px;
    }
    
    .schedule-cta p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .schedule-cta .btn {
        padding: 16px 40px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .schedule-section {
        padding: 40px 0;
    }
    
    .title-ja {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .subtitle-highlight {
        font-size: 1.2rem;
    }
    
    .mobile-schedule-content {
        padding: 20px;
    }
    
    .mobile-time-group {
        padding: 15px;
    }
    
    .mobile-slot {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}