/* ============================================
   リセット & 基本設定
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット */
    --primary-color: #4a5f7a;
    --secondary-color: #7eb2d9;
    --accent-color: #a8c9e3;
    --text-color: #3d4d5f;
    --text-light: #6b7c8f;
    --bg-light: #f5f8fb;
    --bg-white: #ffffff;
    --border-color: #dfe8f0;
    --shadow-sm: 0 2px 8px rgba(74, 95, 122, 0.08);
    --shadow-md: 0 4px 16px rgba(74, 95, 122, 0.12);
    --shadow-lg: 0 8px 24px rgba(74, 95, 122, 0.16);
    
    /* フォント */
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    
    /* タイミング */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* ============================================
   ヘッダー
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-normal);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

/* ============================================
   ヒーローセクション
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: 
        linear-gradient(135deg, rgba(74, 95, 122, 0.3), rgba(126, 178, 217, 0.2)),
        url('https://www.genspark.ai/api/files/s/rW0T6PK1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
    margin-top: 45vh;
}

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

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
    white-space: nowrap;
}

.hero-handwriting {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 200px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

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

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 20px rgba(126, 178, 217, 0.4);
    font-weight: 600;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(126, 178, 217, 0.5);
}

/* Hero Monitor Notice */
.hero-monitor-notice {
    margin-top: 30px;
    text-align: center;
}

.monitor-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(232, 184, 109, 0.95);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(232, 184, 109, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.monitor-link i {
    font-size: 1.1rem;
}

.monitor-link:hover {
    background: rgba(232, 184, 109, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(232, 184, 109, 0.5);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    animation: float 2s ease-in-out infinite;
}

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

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, white, transparent);
}

/* ============================================
   モニター募集バナー（ヒーロー直下）
   ============================================ */
.monitor-banner-section {
    padding: 0;
    background: linear-gradient(135deg, #e8b86d 0%, #d4a356 100%);
    box-shadow: 0 4px 20px rgba(232, 184, 109, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.monitor-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

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

.monitor-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.monitor-banner-link:hover {
    background: rgba(0, 0, 0, 0.1);
}

.monitor-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    color: #e8b86d;
    border-radius: 50%;
    font-size: 1.3rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

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

.monitor-banner-text {
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
}

.monitor-banner-arrow {
    font-size: 1.2rem;
    animation: slideArrow 1s ease-in-out infinite;
}

@keyframes slideArrow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

@media (max-width: 768px) {
    .monitor-banner-link {
        font-size: 0.9rem;
        padding: 15px 10px;
        gap: 12px;
    }

    .monitor-banner-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .monitor-banner-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .monitor-banner-arrow {
        font-size: 1rem;
    }
}

/* Hero Monitor Notice（削除） */
.hero-monitor-notice {
    display: none;
}

.monitor-link {
    display: none;
}

/* ============================================
   セクション共通スタイル
   ============================================ */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ============================================
   3つの強み
   ============================================ */
.features {
    background: var(--bg-light);
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.feature-description strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* ============================================
   コラム紹介セクション
   ============================================ */
.column-intro {
    padding: 3rem 0;
    background: #f8f9fa;
}

.column-intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* シンプル版（画像なし） */
.column-intro-content-simple {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.column-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.column-label i {
    margin-right: 0.5rem;
}

.column-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.column-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.column-intro-image {
    position: relative;
}

.column-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.column-intro-image:hover img {
    transform: translateY(-5px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .column-intro {
        padding: 2rem 0;
    }
    
    .column-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .column-intro-content-simple {
        padding: 1rem;
    }
    
    .column-title {
        font-size: 1.4rem;
    }
    
    .column-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   サービス内容
   ============================================ */
.service-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.service-list i {
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

.service-note {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.service-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-note p:last-child {
    margin-bottom: 0;
}

.service-note i {
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

/* ============================================
   プロフィール
   ============================================ */
.profile {
    background: var(--bg-light);
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.profile-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.profile-text {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.profile-name-en {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 1rem;
}

.profile-birth {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.profile-description p {
    margin-bottom: 1rem;
    line-height: 1.9;
}

.profile-works {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary-color);
}

.profile-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   作例ギャラリー - スライドショー
   ============================================ */
.gallery-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.gallery-slideshow {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.gallery-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s ease-in-out infinite;
}

.gallery-label i {
    font-size: 1.2rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(232, 184, 109, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(232, 184, 109, 0.5);
    }
}

.slideshow-container {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease;
    position: relative;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    object-fit: contain;
}

.studio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

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

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    z-index: 10;
}

.slide-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

.slide-btn.prev {
    left: 1rem;
}

.slide-btn.next {
    right: 1rem;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

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

.indicator:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 6px;
}

.slide-counter {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.slide-counter #currentSlideNum {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 100;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 外ロケ撮影セクション */
.outdoor-section {
    margin-top: 4rem;
}

.section-divider {
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.section-divider::before {
    left: 0;
}

.section-divider::after {
    right: 0;
}

.section-divider span {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.outdoor-gallery {
    max-width: 900px;
    margin: 0 auto;
}

.outdoor-label {
    background: linear-gradient(135deg, #4a9d5f, #2d7a45);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(74, 157, 95, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(74, 157, 95, 0.5);
    }
}

.outdoor-slideshow {
    margin-top: 1.5rem;
}

.outdoor-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.outdoor-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease;
}

.outdoor-slide.active {
    display: block;
}

.outdoor-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    object-fit: contain;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   スタジオ紹介動画
   ============================================ */
.studio-video {
    padding: 6rem 0;
    background: var(--bg-white);
}

.video-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* スタジオ写真 */
.studio-photos {
    margin-top: 4rem;
}

.studio-photos-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-serif);
    font-weight: 700;
}

.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.studio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.studio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.studio-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.studio-label {
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
    background: #f8f9fa;
    margin: 0;
}

.studio-note {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    background: #fff9e6;
    border-top: 1px solid #f0e6d2;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .studio-video {
        padding: 4rem 0;
    }

    .studio-photos {
        margin-top: 3rem;
    }

    .studio-photos-title {
        font-size: 1.6rem;
    }

    .studio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .studio-item img {
        height: 350px;
    }

    .studio-label {
        font-size: 1.2rem;
        padding: 1.2rem;
    }
    
    .video-container {
        border-radius: 8px;
    }
    
    .video-container iframe {
        border-radius: 8px;
    }
}

/* ============================================
   料金プラン
   ============================================ */
.pricing {
    background: var(--bg-light);
}

.pricing-time {
    text-align: center;
    margin: 2rem 0 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(126, 178, 217, 0.08) 0%, rgba(168, 201, 227, 0.08) 100%);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-time p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-time i {
    color: var(--secondary-color);
}

.pricing-message {
    text-align: center;
    margin: -1rem 0 3rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-message p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.05em;
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.pricing-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.2rem;
    padding: 0.8rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-serif);
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 0.3rem;
}

.pricing-cta {
    text-align: center;
    margin: 2rem 0;
}

.pricing-cta .btn {
    padding: 1rem 3rem;
}

.pricing-discount {
    background: linear-gradient(135deg, #7eb2d9 0%, #a8c9e3 100%);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    color: white;
}

.pricing-discount h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

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

.discount-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
}

.discount-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.discount-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.discount-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.discount-item p {
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.discount-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.discount-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.discount-price {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    letter-spacing: 0.05em;
}

.discount-limited {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
    animation: pulse-limited 2s ease-in-out infinite;
}

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

.btn-discount {
    margin-top: 1.5rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-event {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 3px solid var(--secondary-color);
}

.event-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.event-header i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.event-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

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

.event-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.8;
}

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

.event-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.event-info strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.event-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-serif);
}

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

.event-note {
    background: #fff9f0;
    border-left: 4px solid var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.event-note i {
    color: var(--secondary-color);
}

.event-note a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
}

.event-note a:hover {
    color: var(--accent-color);
}

.pricing-special {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 3px solid #f4a460;
}

.special-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.special-header i {
    font-size: 2rem;
    color: #f4a460;
}

.special-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.special-content {
    text-align: left;
}

.special-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.sp-only {
    display: none;
}

.sp-br {
    display: none;
}

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

    .sp-br {
        display: inline;
    }
}

.special-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.special-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

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

.special-detail-item strong {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.special-detail-item span {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.special-price {
    font-size: 2rem !important;
    color: #f4a460 !important;
    font-family: var(--font-serif);
}

.special-detail-item small {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.special-features {
    background: rgba(244, 164, 96, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.special-features p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.special-features p:last-child {
    margin-bottom: 0;
}

.special-features i {
    color: #f4a460;
    margin-top: 0.2rem;
}

.special-note {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f4a460;
}

.special-note p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.special-note p:last-child {
    margin-bottom: 0;
}

.special-note i {
    color: #f4a460;
    margin-top: 0.2rem;
}

.special-cta {
    text-align: center;
    margin-top: 2rem;
}

.special-cta .btn {
    background: linear-gradient(135deg, #f4a460, #e89650);
    color: white;
    box-shadow: 0 4px 16px rgba(244, 164, 96, 0.4);
}

.special-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(244, 164, 96, 0.6);
}

.pricing-option {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.pricing-option h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-option h3 i {
    color: var(--secondary-color);
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    gap: 2rem;
}

.option-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.option-price {
    text-align: right;
    flex-shrink: 0;
}

.option-price span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.option-unit {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 0.3rem;
}

.option-recommend {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.option-voice {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    font-style: italic;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
}

.pricing-note p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    color: var(--secondary-color);
}

/* ============================================
   レタッチ ビフォーアフター比較
   ============================================ */
.retouch-compare {
    margin-top: 2rem;
    text-align: center;
}

.retouch-compare-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.ba-side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.ba-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.ba-item img {
    width: 100%;
    height: auto;
    display: block;
}

.ba-tag {
    position: absolute;
    bottom: 10px;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.ba-tag-before {
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.ba-tag-after {
    right: 10px;
    background: var(--secondary-color);
    color: #fff;
}

@media (max-width: 480px) {
    .ba-side-by-side {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 100%;
    }

    .ba-tag {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
        bottom: 10px;
    }

    .ba-tag-before {
        left: 10px;
    }

    .ba-tag-after {
        right: 10px;
    }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: var(--transition-normal);
    color: var(--secondary-color);
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 0.3rem;
    transition: var(--transition-normal);
}

.cta-link:hover {
    border-color: white;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-note small {
    font-size: 0.8rem;
}

/* ============================================
   記事セクション
   ============================================ */
.article {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.article-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.article-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.article-text h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-text h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.article-text p {
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.article-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.article-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
}

.article-reflection {
    background: #fff9e6;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f4c542;
    margin: 2rem 0;
}

.article-example {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.article-example.bad {
    background: #fff5f5;
    border-color: #e74c3c;
}

.article-example.good {
    background: #f0fff4;
    border-color: #48bb78;
}

.article-example .example-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.article-example.bad .example-title {
    color: #e74c3c;
}

.article-example.good .example-title {
    color: #48bb78;
}

.article-example p {
    margin-bottom: 0.8rem;
}

.article-closing {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.1rem;
    text-align: center;
}

.article-signature {
    text-align: right;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* 記事セクション レスポンシブ */
@media (max-width: 768px) {
    .article {
        padding: 4rem 0;
    }
    
    .article-content {
        padding: 2rem 1.5rem;
    }
    
    .article-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .article-text h3 {
        font-size: 1.2rem;
    }
    
    .article-text h4 {
        font-size: 1.1rem;
        margin: 2rem 0 0.8rem;
    }
    
    .article-note,
    .article-reflection,
    .article-example {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   記事ページ専用スタイル
   ============================================ */
.article-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a7a9a 100%);
    color: white;
    text-align: center;
}

.article-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.article-category i {
    margin-right: 0.5rem;
}

.article-hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-body {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.article-date-note {
    background: #fff9e6;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f4c542;
    margin-bottom: 2rem;
    text-align: center;
}

.article-date-note p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.article-date-note i {
    color: #f4c542;
}

.article-related {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fb 0%, #e9eff5 100%);
    border-radius: 16px;
    text-align: center;
}

.article-related h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-related p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 6rem 0 3rem;
    }
    
    .article-hero-title {
        font-size: 1.8rem;
    }
    
    .article-hero-subtitle {
        font-size: 1rem;
    }
    
    .article-body {
        padding: 3rem 0;
    }
    
    .article-related {
        padding: 2rem 1.5rem;
    }
    
    .article-related h3 {
        font-size: 1.4rem;
    }
}

/* ============================================
   特定商取引法ページ
   ============================================ */
.legal-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a7a9a 100%);
    color: white;
    text-align: center;
}

.legal-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.4;
}

.legal-body {
    padding: 4rem 0;
    background: var(--bg-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
}

.legal-table th,
.legal-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
    width: 30%;
}

.legal-table td {
    color: var(--text-color);
    line-height: 1.8;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-back {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 6rem 0 3rem;
    }
    
    .legal-hero-title {
        font-size: 1.5rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-table th,
    .legal-table td {
        display: block;
        width: 100%;
        padding: 1rem;
    }
    
    .legal-table th {
        border-bottom: none;
        padding-bottom: 0.5rem;
    }
    
    .legal-table td {
        padding-top: 0.5rem;
    }
}

/* ============================================
   お知らせバナー
   ============================================ */
.notice-banner {
    position: relative;
    z-index: 10;
    background: #2c3e50;
    border-left: 5px solid #e8b86d;
    padding: 1.5rem 0;
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #e8b86d;
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.notice-text {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #e8e8e8;
}

.notice-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #e8b86d;
}

.notice-text p {
    margin-bottom: 0.3rem;
}

.notice-text strong {
    color: #ff8a80;
    font-weight: 700;
}

@media (max-width: 768px) {
    .notice-banner {
        padding: 1.2rem 0;
    }
    .notice-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .notice-text {
        font-size: 0.85rem;
    }
}

/* ============================================
   Instagram グリッドセクション
   ============================================ */
.instagram-grid-section {
    padding: 5rem 0 4rem;
    background: #ffffff;
}

.instagram-grid-section .section-header {
    margin-bottom: 3rem;
}

.instagram-grid-section .section-title {
    text-align: center;
}

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

.instagram-grid-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    cursor: pointer;
}

.instagram-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 95, 122, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.instagram-overlay i {
    font-size: 3rem;
    color: white;
}

.instagram-grid-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-grid-item:hover img {
    transform: scale(1.05);
}

.instagram-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-grid-section {
        padding: 3rem 0;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .instagram-overlay i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   映像資料制作サービス
   ============================================ */
.video-service {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f8fb 0%, #ffffff 100%);
}

.video-service-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.video-service-catchcopy {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.video-service-intro p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: left;
}

.video-service-emphasis {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    font-weight: 500;
}

.video-service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.video-service-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.video-service-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-service-list {
    list-style: none;
    padding: 0;
}

.video-service-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.video-service-list li:last-child {
    border-bottom: none;
}

.video-service-list i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.video-service-price {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.video-service-price h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.video-price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.video-price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.video-price-tax {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.video-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.flow-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.flow-note {
    font-size: 0.75rem;
    color: var(--text-light);
}

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

.video-service-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.video-service-notice p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.video-service-notice p:last-child {
    margin-bottom: 0;
}

.video-service-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.video-service-cta {
    text-align: center;
    margin-top: 3rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .video-service {
        padding: 3rem 0;
    }
    
    .video-service-catchcopy {
        font-size: 1.4rem;
    }
    
    .video-service-section {
        padding: 1.5rem;
    }
    
    .video-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .video-price-amount {
        font-size: 2.5rem;
    }
}

/* ============================================
   モニター募集バナー
   ============================================ */
.monitor-recruitment-banner {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 16px;
    border: 3px solid #e8b86d;
    box-shadow: 0 8px 30px rgba(232, 184, 109, 0.2);
    position: relative;
    overflow: hidden;
}

.monitor-recruitment-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 184, 109, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

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

.monitor-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8b86d 0%, #d4a356 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(232, 184, 109, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.monitor-banner-badge i {
    margin-right: 8px;
}

.monitor-extension-notice {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.monitor-extension-notice i {
    margin-right: 6px;
}

.monitor-banner-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
}

.monitor-banner-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.monitor-banner-content .btn {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .monitor-recruitment-banner {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .monitor-banner-content h3 {
        font-size: 1.4rem;
    }

    .monitor-banner-content p {
        font-size: 1rem;
    }

    .monitor-banner-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .hero-monitor-notice {
        margin-top: 20px;
    }

    .monitor-link {
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .monitor-link i {
        font-size: 0.95rem;
    }
}

/* ============================================
   フッター
   ============================================ */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-links a {
    opacity: 0.8;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   レスポンシブデザイン
   ============================================ */
@media (max-width: 768px) {
    .hero {
        background-image: 
            linear-gradient(135deg, rgba(74, 95, 122, 0.3), rgba(126, 178, 217, 0.2)),
            url('https://www.genspark.ai/api/files/s/BOwhOQrY');
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-image-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .option-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .pricing-note p {
        font-size: 0.85rem;
    }

    .discount-grid {
        grid-template-columns: 1fr;
    }

    .event-details {
        grid-template-columns: 1fr;
    }

    .event-note {
        text-align: center;
        font-size: 0.85rem;
    }

    .pricing-message {
        padding: 1.2rem 1rem;
        margin: -0.5rem 0 2rem;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .pricing-message p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* タブレット向け */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-name-en {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .slide-btn {
        width: 40px;
        height: 40px;
        padding: 0.6rem;
        font-size: 1.2rem;
    }

    .slide-btn.prev {
        left: 0.5rem;
    }

    .slide-btn.next {
        right: 0.5rem;
    }

    .slide-indicators {
        gap: 0.3rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

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

    .pricing-time {
        font-size: 0.9rem;
        margin: 1.5rem 0 1rem;
        padding: 0.8rem 1rem;
    }

    .pricing-time p {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .feature-card,
    .service-card,
    .profile-text {
        padding: 1.5rem;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}