/* 弾丸富士山タイムアタック！ブログ記事専用スタイル */

/* 横スクロール防止 */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* パンくずナビ */
.breadcrumb {
    background: var(--bg-light);
    padding: 1rem 0;
    margin-top: 70px;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--secondary-color);
}

.breadcrumb-list span {
    color: var(--text-light);
}

/* 記事ヘッダー */
.article-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/blog.huzisan.touchou.jpeg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.article-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.article-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.article-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.author-info-detailed h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-white);
    font-weight: 600;
}

.author-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.author-bio {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-weight: 400;
}

/* 記事ヘッダー内の著者肩書・自己紹介を純白に固定 */
.article-header .author-title {
    color: #ffffff !important;
}
.article-header .author-bio {
    color: #ffffff !important;
}

.article-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.stat-item i {
    width: 16px;
    opacity: 0.8;
}

/* 記事本文 */
.article-content {
    padding: 4rem 0;
    background: white;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-main {
    min-width: 0; /* グリッドオーバーフロー防止 */
}

/* フィーチャード画像 */
.article-featured-image {
    margin-bottom: 3rem;
}

.featured-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* 目次 */
.table-of-contents {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border-left: 4px solid #8B4513;
}

.table-of-contents h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-of-contents ol {
    list-style: none;
    counter-reset: toc-counter;
    padding-left: 0;
}

.table-of-contents li {
    counter-increment: toc-counter;
    margin-bottom: 0.8rem;
}

.table-of-contents li::before {
    content: counter(toc-counter);
    background: #8B4513;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.8rem;
}

.table-of-contents a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #8B4513;
}

/* 記事本文スタイル */
.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body section {
    margin-bottom: 4rem;
}

.article-body h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #8B4513;
}

.article-body h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.article-body h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* 情報ボックス */
.info-box {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border: 1px solid #4682b4;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box h4 {
    color: #2f4f4f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* アクセス情報 */
.access-info {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.access-info h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

/* タイムラインスケジュール */
.timeline-schedule {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline-schedule::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8B4513, #CD853F);
}

.schedule-item {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 32px;
    height: 32px;
    background: #8B4513;
    border-radius: 50%;
    border: 3px solid white;
}

.schedule-item.highlight::before {
    background: #ff6b35;
    animation: pulse 2s infinite;
}

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

.schedule-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
    min-width: 80px;
    flex-shrink: 0;
}

.schedule-event {
    flex: 1;
}

.schedule-event h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.schedule-event p {
    color: var(--text-light);
    margin: 0;
}

/* 景色セクション */
.scenic-view {
    margin: 2rem 0;
    text-align: center;
}

.scenic-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.scenic-caption {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
}

/* 登山ステージ */
.climbing-stages {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.stage-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stage-card:hover {
    transform: translateY(-5px);
}

.stage-card.incident {
    border-color: #ff9800;
    background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%);
}

.stage-card.challenging {
    border-color: #f44336;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

.stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stage-header h3 {
    color: var(--text-dark);
    margin: 0;
}

.elevation {
    background: #8B4513;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.warning {
    background: #ff9800;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.difficulty {
    background: #f44336;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.time-record {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    color: #8B4513;
    font-weight: 600;
}

.pace-note {
    color: #4caf50;
    font-weight: 600;
    margin: 0;
}

.incident-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1rem 0;
}

.lesson-note {
    background: #fff3e0;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #ff9800;
}

.health-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffebee;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: #c62828;
    font-weight: 600;
}

/* 登山ギャラリー */
.climbing-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    text-align: center;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.gallery-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* ラストスパート */
.final-push {
    margin: 2rem 0;
}

.shock-revelation {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.shock-revelation h3 {
    color: #c62828;
    margin-bottom: 1rem;
}

.crater-walk {
    text-align: center;
    margin: 2rem 0;
}

.crater-image {
    width: 100%;
    max-width: 500px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* 達成カード */
.achievement-card {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

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

.achievement-header i {
    font-size: 2rem;
    color: #4caf50;
}

.achievement-header h3 {
    color: #2e7d32;
    margin: 0;
}

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

.achievement-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
}

.stat-detail {
    font-size: 0.8rem;
    color: var(--text-light);
}

.achievement-feeling {
    font-style: italic;
    color: var(--text-dark);
}

/* 教訓グリッド */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.lesson-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid;
    transition: transform 0.3s ease;
}

.lesson-card:hover {
    transform: translateY(-5px);
}

.lesson-card.critical {
    border-color: #f44336;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

.lesson-card.important {
    border-color: #ff9800;
    background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%);
}

.lesson-card.timing {
    border-color: #2196f3;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.lesson-card.recommendation {
    border-color: #4caf50;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.lesson-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.lesson-card.critical .lesson-icon {
    background: #f44336;
}

.lesson-card.important .lesson-icon {
    background: #ff9800;
}

.lesson-card.timing .lesson-icon {
    background: #2196f3;
}

.lesson-card.recommendation .lesson-icon {
    background: #4caf50;
}

.lesson-icon i {
    font-size: 1.5rem;
    color: white;
}

.lesson-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* 温泉体験 */
.onsen-experience {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
}

.onsen-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.onsen-content h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

/* まとめコンテンツ */
.summary-content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.final-message {
    background: white;
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.final-message h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.adventure-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    background: white;
    border: 2px solid #8B4513;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 記事アクション */
.article-actions {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    text-align: center;
}

.social-share {
    margin-bottom: 2rem;
}

.social-share h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.facebook { background: #4267b2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.copy { background: var(--text-dark); }

.article-rating h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.rating-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.rating-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-btn.helpful {
    border-color: #4caf50;
    color: #4caf50;
}

.rating-btn.helpful:hover {
    background: #4caf50;
    color: white;
}

.rating-btn.not-helpful {
    border-color: #f44336;
    color: #f44336;
}

.rating-btn.not-helpful:hover {
    background: #f44336;
    color: white;
}

/* 関連記事 */
.related-articles {
    margin: 4rem 0;
}

.related-articles h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

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

.related-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-content {
    padding: 1.5rem;
}

.related-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.related-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.related-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* サイドバー */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
}

.sidebar-widget h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* 著者ウィジェット（シンプル版） */
.author-widget-simple {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.author-widget-simple h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.author-simple {
    text-align: center;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 2px solid #e2e8f0;
}

.author-name {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.author-bio {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.author-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.author-link {
    padding: 0.4rem 0.8rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.author-link:hover {
    background: var(--secondary-color);
}

/* 目次ウィジェット */
.toc-widget {
    position: sticky;
    top: 100px;
    z-index: 2;
    background: #ffffff;
}

.toc-nav ul {
    list-style: none;
    padding: 0;
}

.toc-nav li {
    margin-bottom: 0.8rem;
}

.toc-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.toc-nav a:hover,
.toc-nav a.active {
    color: #8B4513;
    font-weight: 600;
}

/* ニュースレターウィジェット */
.newsletter-widget {
    background: var(--bg-light);
    text-align: center;
}

.newsletter-widget p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.newsletter-widget .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-widget input {
    padding: 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-widget input:focus {
    outline: none;
    border-color: #8B4513;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-meta-header {
        flex-direction: column;
        text-align: center;
    }

    .author-section {
        flex-direction: column;
        text-align: center;
    }

    .article-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .schedule-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .schedule-time {
        min-width: auto;
    }

    .climbing-stages {
        gap: 1.5rem;
    }

    .stage-card {
        padding: 1.5rem;
    }

    .stage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

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

    .onsen-experience {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .adventure-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

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

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .rating-buttons {
        flex-direction: column;
        align-items: center;
    }

    .toc-widget {
        position: static;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 2rem 0;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .article-layout {
        padding: 0 1rem;
    }

    .featured-img {
        height: 250px;
    }

    .table-of-contents {
        padding: 1.5rem;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .timeline-schedule {
        padding-left: 1rem;
    }

    .schedule-item::before {
        left: -1rem;
        width: 24px;
        height: 24px;
    }

    .stage-card {
        padding: 1rem;
    }

    .gallery-image {
        height: 200px;
    }

    .achievement-stats {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

/* スクロールアニメーション */
.article-body section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.article-body section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 読み進捗バー */
.reading-progress {
    position: fixed;
    top: 70px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #8B4513, #CD853F);
    z-index: 1000;
    transition: width 0.1s ease;
}
