/* 和風ヒーローセクション */
.hero-minimal {
    margin-top: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #f8f5f0;
}

.hero-wa-container {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 和柄背景 */
.wa-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(0deg, #8B4513 0, #8B4513 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, #8B4513 0, #8B4513 1px, transparent 1px, transparent 40px);
    z-index: 1;
}

/* スライダー */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
}

.slide-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease, transform 1s ease;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* スライドコンテンツ */
.slide-content {
    position: absolute;
    top: 35%;
    left: 10%;
    transform: translateY(-35%);
    color: white;
    z-index: 2;
}

.slide-number {
    display: inline-block;
    font-size: 120px;
    font-weight: 200;
    font-family: 'Noto Serif JP', serif;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
    opacity: 0.3;
}

.slide-title {
    font-size: 48px;
    font-weight: 300;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.slide-desc {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.15em;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* アニメーション */
.slide.active .slide-number {
    animation: fadeInUp 1s ease 0.3s both;
}

.slide.active .slide-title {
    animation: fadeInUp 1s ease 0.6s both;
}

.slide.active .slide-desc {
    animation: fadeInUp 1s ease 0.9s both;
}

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

/* ナビゲーションボタン */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(0,0,0,0.7);
    border-color: rgba(255,255,255,0.6);
    transform: scale(1.1);
}

/* モバイルで矢印を非表示 */
@media (max-width: 768px) {
    .slide-nav {
        display: none !important;
    }
    
    .nav-btn {
        display: none !important;
    }
}

/* メインコンテンツ */
.hero-main-content {
    position: absolute;
    bottom: 120px;
    right: 80px;
    text-align: right;
    z-index: 3;
}

.main-logo {
    margin-bottom: 40px;
}

.logo-text {
    display: block;
    font-size: 36px;
    font-weight: 300;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
    color: #2d4a2b;
}

.logo-sub {
    display: block;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #666;
}

/* 和風ボタン */
.hero-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.btn-wa-primary,
.btn-wa-secondary {
    padding: 16px 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    color: #2d4a2b;
    border: 2px solid #2d4a2b;
}

.btn-wa-primary {
    background: #2d4a2b;
    color: white;
}

.btn-wa-primary:hover {
    background: #1a2e19;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45,74,43,0.3);
}

.btn-wa-secondary:hover {
    background: #2d4a2b;
    color: white;
    transform: translateY(-3px);
}

/* インジケーター */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    gap: 20px;
    z-index: 3;
}

.indicator {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(45,74,43,0.3);
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 300;
    color: #2d4a2b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2d4a2b;
    color: white;
    transform: scale(1.1);
}

.indicator:hover {
    border-color: #2d4a2b;
    transform: scale(1.1);
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .hero-slider {
        width: 100%;
        height: 100vh;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-number {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        width: 100%;
        height: 100vh;
    }
    
    .slide-content {
        left: 5%;
        top: 30%;
        transform: translateY(-30%);
    }
    
    .hero-main-content {
        bottom: 80px;
        right: 20px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-number {
        font-size: 60px;
    }
    
    .slide-desc {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-wa-primary,
    .btn-wa-secondary {
        width: 200px;
    }
    
    .slide-indicators {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}