/* --- 全体の基本設定 --- */
body {
    background-color: #f0f2f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1c1e21;
    line-height: 1.6;
    /* 横スクロールバーが常に出るのを防ぐ */
    overflow-x: hidden;
    padding: 60px 20px 20px 20px; /* ヘッダー分の余白を上に追加 */
}

h1 {
    text-align: center;
    margin: 40px 20px;
}

/* ▼▼▼【変更】ツリー全体を、カラムを並べるFlexコンテナに変更 ▼▼▼ */
.story-tree {
    display: flex; /* カラムを横に並べる */
    gap: 24px;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
    /* flex-direction: column; */
    flex-direction: row;

    /* 横スクロール設定 */
    overflow-x: auto;
}

/* ▼▼▼【追加】新しい要素「カラム」のスタイル ▼▼▼ */
.story-column {
    /* カラムが縮まないようにし、幅を固定 */
    flex-shrink: 0;
    /* width: 380px; */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* カラムが閉じられる（消える）瞬間に適用されるクラス */
.story-column.is-closing {
    opacity: 0;
    transform: translateY(-20px); /* 少し上に移動しながら消える */
}
.story-nodes-root {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
/* ▼▼▼【変更】.story-branchは縦にカードを並べるリストに戻す ▼▼▼ */
.story-branch {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* カードを縦に並べる */
    /* flex-direction: row; */
    /* カードを横に並べる */
    gap: 24px;
}

/* 各ノード(カード)のスタイル */
.story-node {
    width: 360px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 5px solid transparent; /* 選択時の枠線のための準備 */
    transition: border-color 0.3s ease;
}

/* ▼▼▼【追加】選択されたカードのスタイル ▼▼▼ */
.story-node.is-selected {
    border-color: #1877f2; /* 選択されたら青い枠線を表示 */
}

/* 選択されたノードの中にある「続きを読む」ボタンを非表示にする */
/* .story-node.is-selected .read-more-button {
    display: none;
} */

/* --- カード内の要素 (これ以降は微調整のみ) --- */

.node-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.node-author {
    display: block;
    font-size: 0.85rem;
    color: #65676b;
    margin-bottom: 16px;
}

/* アクションボタン (いいね、続きを書く) */
.node-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap; /* ボタンが多い場合に折り返す */
}

.like-button {
    text-decoration: none;
    font-size: 1rem;
    color: #65676b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.like-button.liked {
    color: #e0245e;
}

.read-more-button, .node-add-button, .node-login-link {
    background-color: #1877f2;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}
.read-more-button {
    background-color: #1877f2;
}
.node-add-button {
    background-color: #1877f2;
}
.read-more-button:hover, .node-add-button:hover {
    background-color: #166fe5;
}
/* 「続きを読む」ボタンが「続きを閉じる」状態の時のスタイル */
.read-more-button.is-open {
    background-color: #6c757d; /* 背景色をグレーに */
    color: white;
}

/* --- コメント欄 --- */
.comments-section {
    border-top: 1px solid #e0e0e0;
    margin-top: 10px; /* 高さが違うカードでも下揃えに */
    padding-top: 13px;
}

.comment {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: bold;
}

/* コメントフォーム */
.comment-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.comment-form button {
    background-color: #e4e6eb;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.comment-form button:hover {
    background-color: #d8dbdf;
}


/* --- コメント開閉機能のスタイル --- */
.comment-toggle-button {
    background: none;
    border: none;
    color: #65676b;
    font-weight: bold;
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.comment-toggle-button:hover {
    text-decoration: underline;
}

.comment-toggle-button::after {
    content: '▼';
    display: inline-block;
    font-size: 0.7em;
    transition: transform 0.3s ease-in-out;
}

.comment-toggle-button.is-active::after {
    transform: rotate(180deg);
}

.comment-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out;
}

.comment-content.is-open {
    max-height: 1000px;
    padding-top: 16px;
}

/* --- 「続きを読む」機能のスタイル --- */
.story-branch .story-branch {
    display: none; /* 初期状態では子孫の分岐は非表示 */
}

/* 表示する際は block ではなく flex にする */
.story-branch.is-visible {
    display: flex;
}

/* --- 投稿用モーダルのスタイル --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    
    /* ▼▼▼ この transition プロパティを修正 ▼▼▼ */
    /* visibility の切り替えを0.3秒遅らせる */
    transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}
/* is-visibleクラスが付いた時のスタイル */
.modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    
    /* ▼▼▼ この一行を追記 ▼▼▼ */
    /* 表示される時は遅延をなくす */
    transition-delay: 0s;
}
.modal-content {
    background: white;
    padding: 24px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    /* ▼▼▼ ここからがアニメーション用の修正 ▼▼▼ */
    /* 少し小さく、少し上にずらした状態をデフォルトにする */
    transform: scale(0.95) translateY(-10px);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* is-visibleクラスが付いた時に、モーダルコンテンツを本来の位置とサイズに戻す */
.modal-overlay.is-visible .modal-content {
    transform: scale(1) translateY(0);
}
.modal-content h2 {
    margin-top: 0;
}

.modal-content textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-actions button {
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.modal-actions button[type="submit"] {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.modal-close-button {
    background-color: #f0f0f0;
}

/* モーダル内の親ノード引用エリアのスタイル */
.parent-node-quote {
    margin: 0 0 16px 0;
    padding: 12px;
    background-color: #f8f9fa; /* 薄いグレー */
    border-left: 4px solid #dee2e6; /* 左の縦線 */
    color: #495057;
    font-style: italic;
    max-height: 100px; /* 長すぎる場合に備えて高さを制限 */
    overflow-y: auto;
}

/* --- フラッシュメッセージのスタイル --- */
.flash-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745; /* 成功メッセージの緑色 */
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    font-size: 1.1em;
    animation: fadeInOut 4s ease-in-out forwards;
}

/* フェードイン・フェードアウトのアニメーション */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        top: 0;
    }
    10% {
        opacity: 1;
        top: 20px;
    }
    90% {
        opacity: 1;
        top: 20px;
    }
    100% {
        opacity: 0;
        top: 0;
    }
}

