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

:root {
    /* Color Palette - Boxing Gym Style */
    --primary-red: #e31b23;
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-gold: #ffd700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-family: 'Noto Sans JP', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ========================================
   Container & Section Layouts
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section:nth-child(even) {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Header Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover::after {
    width: 100%;
}

/* CTA Navigation Link (料金・無料体験) */
.nav-links a.nav-cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c91018 100%);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.3);
    transition: all var(--transition-normal);
}

.nav-links a.nav-cta::after {
    display: none; /* Hide underline for CTA button */
}

.nav-links a.nav-cta:hover {
    color: var(--text-light);
    background: linear-gradient(135deg, #c91018 0%, var(--primary-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 27, 35, 0.4);
}

/* Header SNS Icons - Unified */
.header-sns {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sns-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 44px;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.sns-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sns-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Legacy social-links for backwards compatibility */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Legacy styles - kept for backwards compatibility */
/*
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-icon i {
    display: block;
    line-height: 1;
    font-size: 1.4rem;
    font-style: normal;
}

.line-icon {
    background: linear-gradient(135deg, #06C755, #00B14F);
    color: var(--text-light);
}

.line-icon i {
    font-size: 1.5rem;
}

.line-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.5);
}

.instagram-icon {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: #ffffff;
}

.instagram-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.instagram-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(253, 29, 29, 0.5);
}

.twitter-icon {
    background: #000000;
    color: var(--text-light);
    padding: 0;
}

.twitter-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

*/

/* Legacy - commented out
.sns-icon-img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}
*/

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all var(--transition-normal);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
    padding-top: 80px;
}

/* Hero Slideshow Background */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: var(--spacing-md);
}

.logo-image {
    max-width: 100%;
    height: auto;
    width: 900px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.5));
    animation: logoFadeIn 1s ease-out;
}

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

.hero-catchphrase {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    padding: 0.5rem 0;
}

.hero-subtext {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Campaign Badge in Hero Section */
.campaign-badge-hero {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    animation: campaignPulse 2s ease-in-out infinite;
    max-width: 600px;
}


/* PC用クラッカー（非表示） */
.campaign-emoji-pc {
    display: none;
}

.campaign-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.campaign-block-1 {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.campaign-block-2 {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.campaign-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.campaign-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

.campaign-main {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.campaign-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c91018;
    line-height: 1.2;
}

@keyframes campaignPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
    }
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-info .info-item span {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-info .info-item i {
    color: var(--primary-red);
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.7));
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-gold);
}

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

/* ========================================
   CTA Buttons
   ======================================== */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    text-align: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px var(--shadow-dark);
}

/* ========================================
   News Section
   ======================================== */
.news {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0;
}

.news .section-title {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.news-schedule-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--spacing-lg);
    align-items: start;
}

.news-content {
    flex: 1;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.news-item {
    display: flex;
    gap: var(--spacing-sm);
    background: var(--bg-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    border-left: 3px solid var(--primary-red);
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--primary-red);
    flex-shrink: 0;
}

.news-year {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.7;
}

.news-day {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.15rem;
}

.news-text {
    flex: 1;
}

.news-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--primary-red);
    color: var(--text-light);
    border-radius: 12px;
    margin-bottom: 0.25rem;
}

.news-badge.info {
    background: #2196F3;
}

.news-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.news-text p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.news-read-more {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary-red);
    text-decoration: none;
    margin-top: 0.5rem;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.news-read-more:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

.news-more-button {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ========================================
   CTA Buttons
   ======================================== */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    text-align: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px var(--shadow-dark);
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c91018 100%);
    color: var(--text-light);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #c91018 0%, var(--primary-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-dark);
}

/* LINE Button Styles */
.line-button,
.btn-line,
a[href*="lin.ee"] {
    background-color: #06C755;
    color: #ffffff;
}

.line-button:hover,
.btn-line:hover,
a[href*="lin.ee"]:hover {
    background-color: #05b24d;
}

.cta-secondary {
    background: var(--bg-white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cta-secondary:hover {
    background: var(--primary-red);
    color: var(--text-light);
    transform: translateY(-2px);
}

.cta-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.cta-button i {
    margin-right: 0.5rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px var(--shadow-dark);
    }
    50% {
        box-shadow: 0 4px 25px rgba(227, 27, 35, 0.6);
    }
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* ========================================
   About Section
   ======================================== */
.about-content {
    display: grid;
    gap: var(--spacing-lg);
}

.about-text {
    line-height: 1.8;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.president-message {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary-red);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
    box-shadow: 0 2px 10px var(--shadow);
}

.president-message p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.president-message cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: var(--text-gray);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* President Blog Section - Right Aligned Container */
.president-blog-section {
    margin-top: 0.75rem;
    text-align: right;
}

/* President Blog Description - Small Caption */
.president-blog-description {
    font-size: 0.7rem;
    color: #888888;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
    text-align: right;
}

/* President Blog Button - Small Red CTA */
.president-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c91018 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 6px rgba(227, 27, 35, 0.2);
}

.president-blog-btn:hover {
    background: linear-gradient(135deg, #c91018 0%, var(--primary-red) 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(227, 27, 35, 0.3);
}

.president-blog-btn i {
    font-size: 0.8rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 15px var(--shadow);
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: var(--spacing-sm);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Medical Staff Notice */
.medical-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    border-left: 4px solid #1976d2;
}

.medical-notice i {
    font-size: 1.5rem;
    color: #1976d2;
    flex-shrink: 0;
}

.medical-notice p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* ========================================
   Special Section (HSBが選ばれる理由)
   ======================================== */
.special {
    background: linear-gradient(135deg, rgba(32, 32, 32, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%),
                url('../images/hero-gym-2.jpg') center/cover no-repeat;
    background-blend-mode: darken;
    color: var(--text-light);
    position: relative;
}

.special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-gym-2.jpg') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.special .container {
    position: relative;
    z-index: 1;
}

.special .section-title {
    color: var(--text-light);
}

.special .section-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.special-item {
    background: rgba(255, 255, 255, 0.08);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.special-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227, 27, 35, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.special-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.special-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--accent-gold);
}

.special-highlight {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--spacing-xs);
    font-style: italic;
}

.special-item p:last-child {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* イラスト装飾 */
.special-illustration {
    text-align: center;
    margin: var(--spacing-xl) 0;
}

.special-illustration img {
    width: auto;
    height: 150px;
    opacity: 0.3;
    filter: grayscale(30%);
}

/* CTA */
.special-cta {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.special-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.special-cta .cta-button {
    margin: 0 auto;
}

/* ========================================
   Beginner Guide Section (完結型導線 + イラスト)
   ======================================== */
/* ========================================
   Beginner Guide Section
   ======================================== */
.beginner-guide-section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
}

.beginner-guide-section .container {
    max-width: 1100px;
}

.beginner-guide-card {
    background: #ffffff;
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.beginner-guide-content {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 60px;
    align-items: center;
}

.beginner-guide-text-area {
    text-align: left;
}

.beginner-guide-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

.beginner-guide-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.beginner-guide-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.beginner-guide-buttons {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    flex-wrap: wrap;
}

.btn-beginner-primary,
.btn-beginner-line {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

.btn-beginner-primary:hover {
    background: linear-gradient(135deg, #c91018, var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 27, 35, 0.4);
}

.btn-beginner-line {
    background: #06C755;
    color: #fff;
}

.btn-beginner-line:hover {
    background: #05b24d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.btn-beginner-primary i,
.btn-beginner-line i {
    font-size: 1.2rem;
}

/* イラストエリア */
.beginner-guide-image-area {
    position: relative;
    text-align: center;
}

.beginner-guide-illustration {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.beginner-guide-speech {
    position: absolute;
    top: -10px;
    left: -20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    z-index: 10;
    white-space: nowrap;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.beginner-guide-speech::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 0px solid transparent;
    border-top: 15px solid #FFA500;
}

/* ========================================
   Target Audience Section
   ======================================== */
.target-grid {
}

/* ========================================
   Training Section
   ======================================== */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.training-card {
    position: relative;
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 15px var(--shadow);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    overflow: hidden;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    transition: opacity var(--transition-normal);
}

.training-card:hover::before {
    opacity: 0.25;
}

.training-card:nth-child(1)::before {
    background-image: url('../images/gym-timer.jpg');
}

.training-card:nth-child(2)::before {
    background-image: url('../images/gym-mitt-training.jpg');
    opacity: 0.25;
    filter: brightness(1.3);
}

.training-card:nth-child(2):hover::before {
    opacity: 0.35;
}

.training-card:nth-child(3)::before {
    background-image: url('../images/gym-bags.jpg');
}

.training-card:nth-child(4)::before {
    background-image: url('../images/gym-digital-timer.jpg');
}

.training-card:nth-child(5)::before {
    background-image: url('../images/gym-weights.jpg');
}

.training-card:nth-child(6)::before {
    background-image: url('../images/gym-treadmill.jpg');
}

.training-card > * {
    position: relative;
    z-index: 1;
}

.training-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.training-image {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-image i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.training-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
    text-align: center;
}

.training-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.6;
}

/* ========================================
   Schedule Sidebar in News Section
   ======================================== */
.schedule-sidebar {
    position: sticky;
    top: 100px;
}

.schedule-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 20px var(--shadow);
    overflow: hidden;
}

.schedule-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-red), #c91018);
    padding: var(--spacing-md);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-card-title i {
    font-size: 1.3rem;
}

.schedule-card .schedule-image-wrapper {
    padding: var(--spacing-md);
    background: var(--bg-white);
}

.schedule-card .schedule-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform var(--transition-normal);
}

.schedule-card .schedule-image:hover {
    transform: scale(1.02);
}

.schedule-info-compact {
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-top: 1px solid rgba(227, 27, 35, 0.2);
}

.schedule-info-compact p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-info-compact .schedule-time {
    color: var(--text-dark);
    font-weight: 600;
}

.schedule-info-compact .schedule-time i {
    color: var(--primary-red);
}

.schedule-info-compact .schedule-closed {
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--primary-red);
}

.schedule-info-compact .schedule-closed i {
    font-size: 1rem;
}

/* ========================================
   Guide Sidebar (初めての方への案内)
   ======================================== */
.guide-sidebar {
    position: sticky;
    top: 100px;
}

.guide-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
    padding: var(--spacing-lg);
    text-align: center;
}

.guide-illustration {
    margin-bottom: var(--spacing-md);
}

.guide-illustration img {
    width: auto;
    height: 250px;
    max-width: 100%;
    object-fit: contain;
}

.guide-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

.guide-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.guide-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: #06C755;
    color: #fff;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.guide-button:hover {
    background: #05b24d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.guide-button i {
    font-size: 1.3rem;
}

/* Today's Trainer Sidebar Card */
.today-trainer-sidebar-card {
    padding: var(--spacing-lg) var(--spacing-md);
    background: linear-gradient(135deg, #fffbf5 0%, #fff8f0 50%, #fff5eb 100%);
}

/* Trainer Sidebar Header */
.trainer-sidebar-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
}

.trainer-sidebar-date {
    font-size: 0.85rem;
    color: #888888;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
}

.trainer-sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.trainer-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
    text-align: left;
}

.trainer-sidebar-list li {
    padding: 0.35rem 0.8rem;
    font-size: 1rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trainer-sidebar-list li i {
    font-size: 0.875rem;
    color: #888;
    flex-shrink: 0;
}

.trainer-sidebar-list li:last-child {
    border-bottom: none;
}

.trainer-sidebar-illustration {
    text-align: center;
    margin-top: var(--spacing-md);
}

.trainer-sidebar-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

/* ========================================
   Schedule Section (in Trial)
   ======================================== */
.schedule-section {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 20px var(--shadow);
}

.schedule-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.schedule-title i {
    color: var(--primary-red);
    font-size: 1.8rem;
}

.schedule-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.schedule-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform var(--transition-normal);
}

.schedule-image:hover {
    transform: scale(1.02);
}

.schedule-info {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(227, 27, 35, 0.2);
}

.schedule-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.schedule-info strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.schedule-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-red);
}

.schedule-closed {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--primary-red);
}

.bonus-info {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--accent-gold);
}

.yoga-section {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    padding: var(--spacing-xl) 0;
}

.yoga-section .section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* ヨガ紹介文 */
.yoga-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.yoga-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.yoga-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.yoga-intro h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.yoga-intro p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* 2カラムレイアウト - 公開環境対応 */
.yoga-two-column {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

/* 左カラム：写真のみ - 公開環境対応 */
.yoga-left-column {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.instructor-photo {
    width: 50% !important;
    max-width: 400px !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.instructor-photo img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center top !important;
    transition: transform var(--transition-slow);
}

.instructor-photo:hover img {
    transform: scale(1.02);
}

/* 右カラム：説明 + 経歴 - 公開環境対応 */
.yoga-right-column {
    width: 100% !important;
}

.yoga-details {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
}

.yoga-details li {
    padding: 0;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.yoga-details li:last-child {
    margin-bottom: 0;
}

.yoga-details li i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Instructor Information Styles */
.instructor-info {
    width: 100%;
    background: linear-gradient(135deg, rgba(227, 27, 35, 0.05), rgba(255, 215, 0, 0.05));
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-gold);
    margin-top: var(--spacing-md);
}

.instructor-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.instructor-credentials,
.instructor-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instructor-credentials li,
.instructor-achievements li {
    padding: 0;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.instructor-credentials li:last-child,
.instructor-achievements li:last-child {
    margin-bottom: 0;
}

.instructor-credentials li i {
    color: var(--accent-gold);
    font-size: 1rem;
    min-width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.instructor-achievements {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(227, 27, 35, 0.1);
}

.instructor-achievements li i {
    color: var(--primary-red);
    font-size: 1rem;
    min-width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ========================================
   Target Audience Section
   ======================================== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.target-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 15px var(--shadow);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.target-card:hover {
    border-color: var(--primary-red);
    transform: scale(1.05);
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.target-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: var(--spacing-sm);
}

.target-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

.target-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   Trial Section
   ======================================== */
.trial-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.trial-main h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.trial-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-gray);
}

.trial-benefits {
    display: grid;
    gap: var(--spacing-sm);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px var(--shadow);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.trial-details {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 15px var(--shadow);
}

.trial-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trial-details h4 i {
    color: var(--primary-red);
}

.trial-details ul {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.trial-details ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.trial-details ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.trial-note {
    background: linear-gradient(135deg, var(--primary-red), #c91018);
    color: var(--text-light);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    margin-top: var(--spacing-sm);
}

/* ========================================
   Pricing & Trial Wrapper (料金・無料体験)
   ======================================== */
.pricing-trial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

/* 料金ブロック */
.pricing-block {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.price-grid {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.price-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: 0 2px 10px var(--shadow);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--shadow-dark);
}

.price-card-highlight {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    border: 2px solid var(--primary-red);
}

.price-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.price-card-header i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.price-card-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.price-card-body {
    text-align: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.price-amount .price-unit {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-left: 0.25rem;
}

.price-payment {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: var(--spacing-md) 0;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Campaign Notes for Pricing */
.price-campaign-note {
    font-size: 0.85rem;
    color: var(--primary-red);
    margin: 0.75rem 0 0.25rem 0;
    padding: 0.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-left: 3px solid var(--primary-red);
    border-radius: 4px;
    font-weight: 600;
}

.price-campaign-note i {
    margin-right: 0.25rem;
    color: #ffd700;
}

.price-campaign-note strong {
    color: var(--primary-red);
    font-weight: 700;
}

.price-campaign-sub {
    font-size: 0.75rem;
    color: #666;
    margin: 0.25rem 0 0 0;
    font-style: italic;
}

.pricing-footer-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.pricing-footer-note i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

/* 無料体験ブロック */
.trial-block {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
}

.trial-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.trial-details-compact {
    display: grid;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.trial-detail-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.trial-detail-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trial-detail-item h4 i {
    color: var(--primary-red);
}

.trial-detail-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.trial-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.trial-cta .trial-note {
    background: transparent;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 400;
    padding: var(--spacing-sm) 0;
    margin-top: var(--spacing-sm);
}

/* Trial CTA Button - LINEグリーン */
.trial-cta-button {
    background: #06C755 !important;
    border-color: #06C755 !important;
}

.trial-cta-button:hover {
    background: #05b24d !important;
    border-color: #05b24d !important;
}

/* ========================================
   Trial Flow Info (体験の流れと参加者情報)
   ======================================== */
.trial-flow-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.trial-flow-intro {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.trial-flow-section {
    margin-bottom: 1.5rem;
}

.trial-flow-section:last-of-type {
    margin-bottom: 1rem;
}

.trial-flow-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

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

.trial-flow-list li {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.8;
    padding-left: 0.5rem;
}

.trial-flow-future {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
    text-align: center;
    line-height: 1.6;
}

.trial-flow-message {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin: 1.5rem 0 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

/* ========================================
   Video Section
   ======================================== */
/* ========================================
   Video Section (YouTube)
   ======================================== */
.video {
    background: var(--bg-white);
    color: var(--text-dark);
}

.video .section-title {
    color: #111111;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.video .section-intro {
    color: #555555;
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

.video-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #f5f5f5;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    border: none;
}

/* Fallback content for video errors */
.video-fallback {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 245, 0.98);
    border-radius: var(--radius-md);
    align-items: center;
    justify-content: center;
}

.video-fallback-content {
    text-align: center;
    padding: var(--spacing-xl);
    color: #555555;
}

.video-fallback-content i.fa-youtube {
    font-size: 4rem;
    color: #FF0000;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.video-fallback-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: #555555;
}

.video-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #FF0000;
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.video-button:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

.video-button i {
    font-size: 1.3rem;
}

/* Show fallback when iframe fails to load */
.video-container.error .video-fallback {
    display: flex;
}

.video-container.error iframe {
    display: none;
}

/* ========================================
   Access Section (2 Column Layout)
   ======================================== */
.access-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

/* Left: Google Map Card */
.access-map-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 500px;
}

.access-map-card iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-note {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-gray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Right: Info Card */
.access-info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.access-info-card .info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid #eee;
    text-shadow: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.access-info-card .info-item:last-of-type {
    border-bottom: none;
}

.access-info-card .info-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    min-width: 30px;
    text-align: center;
}

.access-info-card .info-item span {
    color: #222222 !important;
    font-size: 1rem;
    line-height: 1.3;
    text-shadow: none !important;
}

.access-info-card .info-item a {
    color: #d32f2f !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color var(--transition-fast);
    text-shadow: none !important;
}

.access-info-card .info-item a:hover {
    color: #b71c1c !important;
}

.info-item a:hover {
    color: #c91018;
}

/* LINE Contact Button */
.line-contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #06C755;
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    margin-top: var(--spacing-sm);
}

.line-contact-button:hover {
    background: #05b24d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.line-contact-button i {
    font-size: 1.5rem;
}

/* Info Grid (営業時間と駐車場を2カラム) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid #eee;
}

.info-grid-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #222222 !important;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: none !important;
}

.info-grid-item h4 i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

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

.compact-list li {
    padding: 0.25rem 0;
    color: #555555 !important;
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    text-shadow: none !important;
}

.compact-list li:last-child {
    margin-bottom: 0;
}

.compact-list li i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

.compact-list strong {
    color: #d32f2f !important;
    font-weight: 700;
    text-shadow: none !important;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c91018 100%);
    color: var(--text-light);
    padding: var(--spacing-xl) 0;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.final-cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.95);
}

.final-message {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.final-message p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-contact p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

.footer-links {
    text-align: left;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Floating CTA Button
   ======================================== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border: 0;
}

.floating-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* 以下はFIXセクションで上書きされます */
    background: linear-gradient(135deg, var(--primary-red), #c91018);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--shadow-dark);
    transition: all var(--transition-normal);
    animation: float 3s ease-in-out infinite;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(227, 27, 35, 0.6);
}

.floating-button i {
    font-size: 1.5rem;
}

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

/* ========================================
   Responsive Design - Tablet
   ======================================== */
@media (min-width: 768px) {
    .nav-logo img {
        height: 55px;
    }
    
    .logo-image {
        width: 700px;
    }
    
    .hero-catchphrase {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .news-schedule-wrapper {
        grid-template-columns: 1fr 300px;
    }
    
    .trial-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-trial-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    /* ヨガセクション：2カラムレイアウト - 公開環境対応 */
    .yoga-two-column {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: var(--spacing-xl) !important;
    }
    
    .yoga-left-column {
        flex: 0 0 45% !important;
        width: 45% !important;
    }
    
    .yoga-right-column {
        flex: 0 0 52% !important;
        width: 52% !important;
    }
    
    .instructor-photo {
        max-width: 100% !important;
    }
    
    .access-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    
    .access-map-card {
        height: 450px;
    }
    
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

/* ========================================
   Responsive Design - Desktop
   ======================================== */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .nav-logo img {
        height: 60px;
    }
    
    .logo-image {
        width: 1000px;
    }
    
    .hero-catchphrase {
        font-size: 2.2rem;
    }
    
    .hero-subtext {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .special-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .training-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .target-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   Responsive Design - Mobile
   ======================================== */
@media (max-width: 767px) {
    .nav {
        padding: 0.5rem 1rem;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        justify-content: flex-start;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--text-dark);
    }
    
    /* CTA button in mobile menu */
    .nav-links a.nav-cta {
        margin: 0.5rem 1rem;
        width: calc(100% - 2rem);
        border-radius: var(--radius-md);
        border-bottom: none;
    }
    
    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }
    
    /* SNS Icons - Mobile: Inside header, right side */
    .header-sns {
        display: flex !important;
        gap: 8px;
        margin: 0;
        padding: 0;
        order: 1;
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    .sns-btn {
        width: 36px;
        height: 36px;
        margin: 0;
        padding: 0;
        flex: 0 0 36px;
    }
    
    .sns-btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Legacy - for backwards compatibility */
    .social-links {
        display: flex !important;
        gap: 0.3rem;
        margin: 0;
        padding: 0;
        order: 1;
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    /* Legacy styles - commented out
    .social-icon {
        width: 34px;
        height: 34px;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-icon i {
        display: block;
        line-height: 1;
        font-size: 1rem;
        font-style: normal;
    }
    
    .line-icon i {
        font-size: 1.1rem;
    }
    
    .instagram-icon i {
        font-size: 1rem;
        color: #ffffff;
    }
    
    .sns-icon-img {
        width: 18px !important;
        height: 18px !important;
        object-fit: contain;
    }
    */
    
    .news-schedule-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        /* スマホでガイドブロックを上に表示 */
        display: flex;
        flex-direction: column-reverse;
    }
    
    .schedule-sidebar,
    .guide-sidebar {
        position: relative;
        top: 0;
    }
    
    .guide-card {
        padding: var(--spacing-md);
    }
    
    .guide-illustration img {
        height: 230px;
    }
    
    .guide-title {
        font-size: 1.2rem;
    }
    
    .guide-text {
        font-size: 0.9rem;
    }
    
    .guide-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        white-space: nowrap;
    }
    
    /* Today's Trainer Sidebar - Mobile */
    .guide-sidebar {
        width: 100%;
        padding: 0 var(--spacing-sm);
        display: flex;
        justify-content: center;
    }
    
    .today-trainer-sidebar-card {
        padding: var(--spacing-md);
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trainer-sidebar-date {
        font-size: 0.8rem;
    }
    
    .trainer-sidebar-title {
        font-size: 1.2rem;
    }
    
    .trainer-sidebar-list li {
        padding: 0.3rem 0.6rem;
        font-size: 0.95rem;
        line-height: 1.3;
        gap: 0.4rem;
    }
    
    .trainer-sidebar-list li i {
        font-size: 0.8rem;
    }
    
    .trainer-sidebar-img {
        max-width: 150px;
    }
    
    .schedule-card-title {
        font-size: 1.1rem;
    }
    
    .news-item {
        flex-direction: column;
        padding: var(--spacing-sm);
    }
    
    .news-date {
        flex-direction: row;
        width: 100%;
        min-width: auto;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.4rem;
    }
    
    .news-day {
        font-size: 1rem;
    }
    
    .news-text h3 {
        font-size: 0.95rem;
    }
    
    .news-text p {
        font-size: 0.8rem;
    }
    
    .schedule-section {
        padding: var(--spacing-md);
    }
    
    .schedule-title {
        font-size: 1.2rem;
    }
    
    .schedule-title i {
        font-size: 1.4rem;
    }
    
    .schedule-image {
        max-width: 250px;
    }
    
    .schedule-info {
        padding: var(--spacing-sm);
    }
    
    .schedule-info p {
        font-size: 0.9rem;
    }
    
    .schedule-time {
        font-size: 1rem;
    }
    
    .hero {
        padding-top: 55px;
        min-height: 100vh;
    }
    
    .logo-image {
        width: 100%;
        max-width: 500px;
    }
    
    .hero-catchphrase {
        font-size: 1.3rem;
    }
    
    .hero-subtext {
        font-size: 0.9rem;
    }
    
    /* Campaign Badge - Mobile */
    .campaign-badge-hero {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        max-width: 90%;
        width: auto;
        border-radius: 60px;
        margin-top: 1rem;
        min-height: auto;
        text-align: center;
    }
    
    /* SP表示ではクラッカーを非表示 */
    .campaign-emoji-pc {
        display: none;
    }
    .campaign-text {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .campaign-block-1 {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .campaign-block-2 {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .campaign-title {
        display: block;
        width: 100%;
        font-size: 0.9rem;
        font-weight: 700;
        line-height: 1.5;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .campaign-subtitle {
        display: block;
        width: 100%;
        font-size: 0.75rem;
        font-weight: 500;
        line-height: 1.5;
        text-align: center;
        margin: 0.2rem 0 0 0;
        padding: 0;
    }
    
    .campaign-main {
        display: block;
        width: 100%;
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 1.5;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .campaign-highlight {
        display: block;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 700;
        color: #c91018;
        line-height: 1.4;
        text-align: center;
        margin: 0.15rem 0 0 0;
        padding: 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Special Section Mobile */
    .special-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .special-item {
        padding: var(--spacing-md);
    }
    
    .special-icon {
        width: 60px;
        height: 60px;
    }
    
    .special-icon i {
        font-size: 1.5rem;
    }
    
    .special-item h3 {
        font-size: 1.1rem;
    }
    
    .special-highlight {
        font-size: 0.8rem;
    }
    
    .special-illustration img {
        height: 120px;
    }
    
    .special-cta {
        padding: var(--spacing-md);
    }
    
    .special-cta-text {
        font-size: 1rem;
    }
    
    /* Beginner Guide Section Mobile */
    .beginner-guide-section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Beginner Guide Mobile - Two Cards */
    .beginner-guide-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .beginner-card,
    .trainer-card {
        padding: var(--spacing-md);
    }
    
    .beginner-card-title,
    .trainer-card-title {
        font-size: 1.3rem;
    }
    
    .beginner-card-text {
        font-size: 0.9rem;
    }
    
    .beginner-card-buttons {
        flex-direction: column;
    }
    
    .btn-beginner-red,
    .btn-beginner-green {
        width: 100%;
        justify-content: center;
    }
    
    .beginner-card-speech {
        position: static;
        display: inline-block;
        margin-bottom: var(--spacing-sm);
    }
    
    .beginner-card-speech::after {
        display: none;
    }
    
    .beginner-girl-img {
        max-width: 240px;
    }
    
    .trainer-girl-img {
        max-width: 260px;
    }
    
    /* Yoga Section Mobile - 公開環境対応 */
    .yoga-two-column {
        flex-direction: column !important;
    }
    
    .yoga-left-column,
    .yoga-right-column {
        width: 100% !important;
        flex: none !important;
    }
    
    .instructor-photo {
        width: 85% !important;
        max-width: none !important;
        margin: 0 auto !important;
    }
    
    /* Beginner Guide Section Mobile */
    .beginner-guide-section {
        padding: var(--spacing-xl) 0;
    }
    
    .beginner-guide-card {
        padding: var(--spacing-md);
    }
    
    .beginner-guide-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .beginner-guide-text-area {
        text-align: center;
    }
    
    .beginner-guide-title {
        font-size: 1.5rem;
    }
    
    .beginner-guide-subtitle {
        font-size: 1rem;
    }
    
    .beginner-guide-text {
        font-size: 0.95rem;
    }
    
    .beginner-guide-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: stretch;
    }
    
    .beginner-guide-image-area {
        order: -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .beginner-guide-illustration {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .beginner-guide-speech {
        position: static;
        transform: none;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        white-space: normal;
        text-align: center;
        max-width: 260px;
        width: 90%;
        margin: 0 auto;
    }
    
    .beginner-guide-speech::after {
        display: none;
    }
    
    .btn-beginner-primary,
    .btn-beginner-line {
        width: 100%;
        max-width: 320px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Pricing & Trial Mobile */
    .pricing-trial-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-block,
    .trial-block {
        padding: var(--spacing-md);
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .trial-block h3 {
        font-size: 1.5rem;
    }
    
    /* Trial Flow Info - Mobile */
    .trial-flow-info {
        margin-top: 1.5rem;
        padding: 1.2rem;
    }
    
    .trial-flow-intro {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .trial-flow-section {
        margin-bottom: 1.2rem;
    }
    
    .trial-flow-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .trial-flow-list li {
        font-size: 0.8rem;
        line-height: 1.7;
    }
    
    .trial-flow-future {
        font-size: 0.8rem;
        margin-top: 0.8rem;
        padding-top: 0.6rem;
    }
    
    .trial-flow-message {
        font-size: 0.85rem;
        margin-top: 1.2rem;
        padding-top: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-section,
    .footer-links {
        text-align: center;
    }
    
    /* Video Section Mobile */
    .video .section-title {
        font-size: 1.8rem;
    }
    
    .video .section-intro {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .video-card {
        padding: var(--spacing-md);
    }
    
    .video-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .video-fallback-content i.fa-youtube {
        font-size: 3rem;
    }
    
    .cta-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    /* モバイルでは円形ボタン */
    .floating-button {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        justify-content: center !important;
        padding: 0 !important;
        gap: 0 !important;
    }
    
    .floating-button span {
        display: none !important;
    }
    
    .floating-button i {
        margin: 0 !important;
        font-size: 1.8rem !important;
    }
    
    /* Access Section Mobile */
    .access-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .access-map-card {
        height: 300px;
        order: 2;
    }
    
    .access-info-card {
        order: 1;
        padding: var(--spacing-md);
    }
    
    .access-info-card .info-item {
        flex-direction: row;
        align-items: flex-start;
        gap: var(--spacing-sm);
        padding: 0.25rem 0 !important;
    }
    
    .access-info-card .info-item i {
        font-size: 1.2rem;
        min-width: 25px;
    }
    
    .access-info-card .info-item span,
    .access-info-card .info-item a {
        font-size: 0.95rem;
        line-height: 1.2 !important;
    }
    
    .line-contact-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.5rem !important;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-sm) !important;
        padding-top: var(--spacing-sm) !important;
    }
    
    .info-grid-item h4 {
        margin-bottom: 0.5rem !important;
        font-size: 0.95rem;
    }
    
    .compact-list li {
        padding: 0.2rem 0 !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.2 !important;
        font-size: 0.85rem;
    }
    
    .compact-list li:last-child {
        margin-bottom: 0 !important;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .floating-cta,
    .scroll-indicator {
        display: none;
    }
}

/* ========================================
   LINE Button Green Override (最終上書き)
   ======================================== */
a[href*='lin.ee'],
a.line-btn, .line-btn,
.btn-line, .cta-line,
.line-contact-button,
.cta-button[href*='lin.ee'],
.cta-button[href*='line.me'],
.cta-primary.line-button {
  background: #06C755 !important;
  border-color: #06C755 !important;
  color: #fff !important;
}

a[href*='lin.ee']:hover,
a.line-btn:hover, .line-btn:hover,
.btn-line:hover, .cta-line:hover,
.line-contact-button:hover,
.cta-button[href*='lin.ee']:hover,
.cta-button[href*='line.me']:hover,
.cta-primary.line-button:hover {
  background: #05b24d !important;
  border-color: #05b24d !important;
}

/* =========================
   FIX: Floating CTA wrapper square background (global)
   ========================= */
.floating-cta,
.fixed-cta,
.floating-cta-wrapper,
.fixed-cta-wrapper,
.cta-float,
.cta-fixed,
.floating-reserve,
.fixed-reserve,
.fab,
.fab-wrap,
.sticky-cta,
.sticky-cta-wrap,
.bottom-cta,
.bottom-cta-wrap {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}

/* 疑似要素を無効化 */
.floating-cta::before,
.floating-cta::after,
.fixed-cta::before,
.fixed-cta::after {
  display: none !important;
}

/* ボタン本体（楕円）のスタイル */
.floating-button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 18px !important;
  border-radius: 9999px !important;
  background: #06C755 !important;
  border: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3) !important;
  transition: all 0.3s ease !important;
  overflow: visible !important;
}

.floating-button:hover {
  background: #05b24d !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4) !important;
}

.floating-button i {
  font-size: 1.3rem !important;
  margin: 0 !important;
}

.floating-button span {
  font-size: 0.95rem !important;
  white-space: nowrap !important;
}

/* ========================================
   記事下CTA 共通スタイル（blog.htmlと統一）
   ======================================== */
.blog-list-cta {
    background: linear-gradient(135deg, #e31b23 0%, #c91018 100%);
    color: #ffffff !important;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    box-sizing: border-box;
}

.blog-list-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.blog-list-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff !important;
}

.blog-list-cta .cta-button {
    background: #ffffff;
    color: #e31b23;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.blog-list-cta .cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* LINE Button Override */
.blog-list-cta .line-button,
.blog-list-cta .btn-line,
.blog-list-cta a[href*="lin.ee"],
.blog-list-cta .cta-primary {
    background-color: #06C755 !important;
    color: #ffffff !important;
}

.blog-list-cta .line-button:hover,
.blog-list-cta .btn-line:hover,
.blog-list-cta a[href*="lin.ee"]:hover,
.blog-list-cta .cta-primary:hover {
    background-color: #05b24d !important;
}

.blog-list-cta .cta-button i {
    margin-right: 8px;
}

/* スマホ最適化（767px以下） */
@media (max-width: 767px) {
    .blog-list-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
        color: #ffffff !important;
    }
    
    .blog-list-cta h3 {
        font-size: 1.5rem;
        color: #ffffff !important;
    }
    
    .blog-list-cta p {
        font-size: 1rem;
        color: #ffffff !important;
    }
    
    .blog-list-cta .cta-button {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

/* ========================================
   Instagram Section
   ======================================== */
/* ===== Instagram Section ===== */
.instagram-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: var(--spacing-xl) 0;
}

.instagram-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.instagram-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Instagram Grid - Mobile First */
.ig-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    justify-items: center;
}

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

/* Instagram埋め込みの幅制限を上書き */
.ig-grid blockquote.instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    position: relative !important;
    overflow: hidden !important;
    max-height: 500px !important;
}

/* Instagram iframe の高さ制限といいね・コメント部分を隠す */
.ig-grid iframe {
    max-height: 500px !important;
}

/* いいね・コメント・Instagramでもっと見る を完全に隠すマスク */
.ig-grid blockquote.instagram-media::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: #f9f9f9;
    pointer-events: none;
    z-index: 999;
}

/* Instagram Section - Mobile */
@media (max-width: 767px) {
    .instagram-icon {
        font-size: 2.5rem;
    }
    
    /* スマホでも同じ高さ制限 */
    .ig-grid blockquote.instagram-media {
        max-height: 480px !important;
        margin: 0 auto !important;
    }
    
    .ig-grid iframe {
        max-height: 480px !important;
    }
    
    /* スマホでもマスク */
    .ig-grid blockquote.instagram-media::after {
        height: 180px;
    }
}
    
    .instagram-overlay span {
        font-size: 1rem;
    }
}

/* === Instagram section alignment fix (mobile) === */
.ig-section {
  width: 100%;
}

.ig-section .container {
  max-width: 1100px;      /* 既存containerがあっても上書きしない程度 */
  margin: 0 auto;         /* センター固定 */
  padding-left: 16px;     /* スマホ左右余白 */
  padding-right: 16px;
  box-sizing: border-box;
}

.ig-grid {
  justify-content: center; /* grid自体の中央寄せ */
}

.ig-card {
  width: 100%;
  margin: 0 auto;          /* カードを必ず中央に */
  box-sizing: border-box;
}

/* iframeの勝手な余白・幅ズレを潰す */
.ig-card iframe {
  display: block;
  width: 100% !important;
  margin: 0 auto !important;
}

/* 念のため：スマホ時にカードが右寄りにならないように最大幅を固定 */
@media (max-width: 899px) {
  .ig-card {
    max-width: 560px;   /* 画面が大きめスマホでも中央に見える */
  }
}

/* 見出し行も中央寄せしたい場合（必要なら） */
@media (max-width: 899px) {
  .ig-head {
    justify-content: center;
  }
}

/* === Instagram mobile centering fix === */

/* スマホ時だけ投稿を少し小さくして左右余白を作る */
@media (max-width: 899px) {

  .ig-grid {
    justify-content: center;
  }

  .ig-card {
    max-width: 80%;       /* スマホで左右に余白を作る */
    margin-left: auto;
    margin-right: auto;
  }

  /* Instagram埋め込みの強制幅を上書き */
  .ig-card iframe,
  .ig-card blockquote,
  .ig-grid blockquote.instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: block;
  }
  
  /* Instagram投稿自体を80%に */
  .ig-grid blockquote.instagram-media {
    max-width: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ========================================
   Anchor Link - Today's Trainer Section
   ======================================== */
/* 固定ヘッダー分のスクロールマージンを追加（アンカーリンク用） */
#today-trainer {
  scroll-margin-top: 140px;
  scroll-padding-top: 140px; /* Safari対応 */
}

/* 親要素にもマージンを追加（保険） */
.guide-sidebar {
  scroll-margin-top: 140px;
}

/* ========================================
   Anchor Link - Blog & News Sections
   ======================================== */
/* ブログ・コラムセクションのアンカーリンク調整 */
#blog-section {
  scroll-margin-top: 100px; /* PC: 100px */
}

/* ========================================
   New Pricing System (2026年4月〜)
   ======================================== */
.price-new-system {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}

.price-new-system-title {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.price-new-system-title i {
  font-size: 0.75rem;
  color: #999;
}

.price-new-item {
  margin-bottom: 0.3rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
}

.price-new-item:last-child {
  margin-bottom: 0;
}

.price-new-item h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.price-new-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.price-new-note {
  font-size: 0.75rem;
  color: #777;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  line-height: 1.3;
}

.price-new-note i {
  font-size: 0.7rem;
  color: #999;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ========================================
   Price Guide Notes (入会促進の補足文)
   ======================================== */
.price-guide-notes {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.price-guide-note {
  font-size: 0.75rem;
  color: #666;
  margin: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  line-height: 1.4;
}

.price-guide-note i {
  font-size: 0.7rem;
  color: #999;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.price-trial-message {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  line-height: 1.5;
}

/* お知らせセクションのアンカーリンク調整 */
#news-section {
  scroll-margin-top: 100px; /* PC: 100px */
}

/* スマホ用の調整 */
@media (max-width: 767px) {
  #blog-section {
    scroll-margin-top: 80px; /* スマホ: 80px */
  }
  
  #news-section {
    scroll-margin-top: 80px; /* スマホ: 80px */
  }
  
  #today-trainer {
    scroll-margin-top: 100px; /* スマホ: 100px */
  }
  
  /* New Pricing System - Mobile */
  .price-new-system {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
  
  .price-new-system-title {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }
  
  .price-new-item {
    padding: 0.4rem;
    margin-bottom: 0.25rem;
  }
  
  .price-new-item h5 {
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
  }
  
  .price-new-amount {
    font-size: 1rem;
    margin-bottom: 0.15rem;
  }
  
  .price-new-note {
    font-size: 0.7rem;
    line-height: 1.25;
  }
  
  /* Price Guide Notes - Mobile */
  .price-guide-notes {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
  }
  
  .price-guide-note {
    font-size: 0.7rem;
    margin: 0.3rem 0;
    line-height: 1.35;
  }
  
  .price-trial-message {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    font-size: 0.8rem;
  }
}