/* ============================================
   ホームページ専用スタイル
   ============================================ */

/* ヒーローセクション */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../images/page-header-home.png') center/cover;
    color: var(--color-bg);
    padding: calc(var(--spacing-xxl) * 1.8) 0 calc(var(--spacing-xxl) * 0.8);
    /* margin-top: 80px; */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--color-bg);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 2px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--color-bg);
    margin-bottom: var(--spacing-xxl);
    opacity: 0.95;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons .btn {
    min-width: 220px;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-large);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* LINEボタン専用スタイル */
.hero-buttons .btn-line {
    background-color: #09bb09;
    border-color: #09bb09;
    box-shadow: 0 4px 20px rgba(9, 187, 9, 0.3);
}

.hero-buttons .btn-line:hover {
    background-color: #07a507;
    border-color: #07a507;
    box-shadow: 0 6px 25px rgba(9, 187, 9, 0.4);
}

/* コンセプトセクション */
.concept-section {
    padding: calc(var(--spacing-xxl) * 0.9) 0;
    background-color: var(--color-bg);
}

.concept-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title-en {
    font-size: var(--font-size-h2);
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-text);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title-en::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

.concept-lead {
    font-size: var(--font-size-large);
    font-weight: 600;
    color: var(--color-primary);
    line-height: var(--line-height-base);
    margin-bottom: var(--spacing-xl);
}

.concept-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* Instagram セクション */
.instagram-section {
    padding: calc(var(--spacing-xxl) * 0.7) 0;
    background: linear-gradient(135deg, #405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    color: var(--color-bg);
    text-align: center;
}

.instagram-content {
    max-width: 700px;
    margin: 0 auto;
}

.instagram-icon {
    display: inline-block;
    margin-bottom: var(--spacing-lg);
}

.instagram-icon svg {
    width: 80px;
    height: 80px;
    color: var(--color-bg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.instagram-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--color-bg);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 2px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.instagram-text {
    font-size: var(--font-size-base);
    color: var(--color-bg);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.btn-instagram {
    background-color: var(--color-bg);
    color: #E1306C;
    border: 2px solid var(--color-bg);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-large);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
}

.btn-instagram:hover {
    background-color: transparent;
    color: var(--color-bg);
    border-color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* 特徴セクション */
.features-section {
    padding: calc(var(--spacing-xxl) * 0.9) 0;
    background-color: var(--color-bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.feature-card {
    background-color: var(--color-bg);
    padding: var(--spacing-xxl) var(--spacing-xl);
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--color-primary);
    transition: height var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-number {
    font-size: 64px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.15);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.feature-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    margin-bottom: var(--spacing-md);
}

.feature-title {
    font-size: var(--font-size-h4);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.feature-text {
    font-size: var(--font-size-small);
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0;
}


/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-section {
        padding: calc(var(--spacing-xxl) + 40px) 0 var(--spacing-lg);
        min-height: 420px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-xs);
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }
    
    .hero-buttons .btn-divider {
        display: block;
        margin: 4px 0;
        text-align: center;
        width: 100%;
    }
    
    .concept-section,
    .instagram-section,
    .features-section {
        padding: calc(var(--spacing-xxl) * 0.8) 0;
    }
    
    .instagram-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .instagram-title {
        font-size: var(--font-size-h3);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-number {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .section-title-en {
        font-size: var(--font-size-h3);
        letter-spacing: 2px;
    }
    
    .concept-lead {
        font-size: var(--font-size-base);
    }
}

