/* ===========================================
   Base Styles - Lion Corporate Site
   Core foundation styles using CSS variables
   =========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-black);
    background-color: var(--color-white);
    animation: fadeInUp 0.5s ease-out;
}

p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
}

/* Container */
.container {
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', 'Oswald', 'Zen Kaku Gothic New', sans-serif;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

/* Section Title */
.section-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-black);
    text-align: left;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
    font-family: 'Oswald', sans-serif;
    line-height: var(--line-height-tight);
}

/* Page Title */
.page-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 3px;
    color: var(--color-black);
    font-family: 'Oswald', sans-serif;
}

.page-subtitle {
    font-size: var(--font-size-base);
    color: var(--color-gray-dark);
    text-align: center;
    margin-bottom: 0;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, var(--color-gray-light) 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: var(--font-weight-medium);
    border: 2px dashed #dee2e6;
    transition: all var(--transition-base);
}

.image-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #495057;
}

/* ===== Responsive Typography ===== */

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }

    .page-title {
        font-size: var(--font-size-4xl);
    }

    .page-subtitle {
        font-size: var(--font-size-lg);
    }
}

/* Desktop */
@media (min-width: 769px) {
    :root {
        --font-size-base: 1rem;  /* デスクトップは16px */
        --section-description-size: 1rem;  /* デスクトップは16px */
        --hero-description-size: 1rem;  /* デスクトップは16px */
    }

    body {
        font-size: var(--font-size-base-desktop);
    }

    p {
        font-size: var(--font-size-base-desktop);
    }

    .pc-only {
        display: inline;
    }

    .sp-only {
        display: none;
    }
}

/* ================================================
   Display Utilities - Mobile First
   ================================================ */
/* モバイル: PC用要素を非表示 */
.pc-only {
    display: none;
}

/* モバイル: スマホ用要素を表示 */
.sp-only {
    display: inline;
}

@media (min-width: 1025px) {
    .container {
        padding: 0 var(--spacing-lg);
    }

    .section-title {
        font-size: 2.8rem;
    }

    .page-title {
        font-size: var(--font-size-5xl);
    }

    .page-subtitle {
        font-size: var(--font-size-lg);
    }
}
