/* カスタムアニメーションとユーティリティ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

/* グラスモーフィズム特化のユーティリティ */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.glass-panel-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

/* 縦書き用（アクセントとして使用） */
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

/* 文字間隔の微調整 */
.tracking-widest-plus {
    letter-spacing: 0.2em;
}

/* 記事本文用の追加スタイル (Tailwindベース) */
.post-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e2d4a;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}
.post-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e2d4a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.post-content p {
    margin-bottom: 1.5rem;
}
.post-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.post-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.post-content a {
    color: #cda85f;
    text-decoration: underline;
}
.post-content a:hover {
    color: #b5924d;
}