@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&family=Zen+Kurenaido:wght@400;700&display=swap');

/* --- 基本設定 --- */
* { box-sizing: border-box; }
body { 
    background: #fcfcfc url("https://www.transparenttextures.com/patterns/washy-paper.png"); 
    font-family: 'Zen Kurenaido', sans-serif; 
    margin: 0; 
    overflow-x: hidden; 
}

/* --- 1. タイトルロゴ --- */
.v-header {
    position: relative; width: 280px; height: 280px; margin: 40px auto;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    border: 1px solid #dddddd; z-index: 10; background: rgba(252, 252, 252, 0.8);
    padding-bottom: 25px; 
}
.corner-group { position: absolute; width: 70px; height: 70px; pointer-events: none; }
.tl { top: -28px; left: -28px; }
.br { bottom: -1px; right: -1px; }
.tri-line { position: absolute; width: 100%; height: 100%; }
.tl .tri-line::before { content: ""; position: absolute; width: 100%; height: 100%; border-top: 2.5px solid currentColor; border-left: 2.5px solid currentColor; background: linear-gradient(to bottom right, transparent 48.5%, currentColor 49%, currentColor 51%, transparent 51.5%) no-repeat; }
.br .tri-line::before { content: ""; position: absolute; width: 100%; height: 100%; border-bottom: 2.5px solid currentColor; border-right: 2.5px solid currentColor; transform: translate(25px, 25px); background: linear-gradient(to top left, transparent 48.5%, currentColor 49%, currentColor 51%, transparent 51.5%) no-repeat; }
.color-n { color: #2E2A60; transform: rotate(-12deg); }
.color-g { color: #B43246; transform: rotate(10deg) translate(6px, 6px); }
.color-h { color: #4DD7E3; transform: rotate(10deg); }
.color-s { color: #aaaaaa; transform: rotate(-15deg) translate(-6px, -6px); }
.v-header h1 { font-size: 2.2rem; letter-spacing: 0.15em; color: #333; margin: 5px 0; font-weight: normal; }
.v-sub { color: #B43246; letter-spacing: 0.2em; font-weight: bold; font-size: 0.8rem; margin-bottom: -5px; }
.v-names { color: #999; font-size: 0.7rem; font-family: 'Shippori Mincho', serif; margin-top: 15px; }

/* --- 2. 背景の浮遊三角形 --- */
.v-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.tri { position: absolute; bottom: -100px; width: 10px; height: 10px; background-color: currentColor; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); opacity: 0; animation: v-float infinite linear; }
.tri.n { color: #2E2A60; } .n1 { left: 5%; animation-duration: 15s; } .n2 { left: 35%; animation-duration: 18s; animation-delay: 4s; }
.tri.g { color: #B43246; } .g1 { left: 15%; animation-duration: 22s; animation-delay: 2s; } .g2 { left: 45%; animation-duration: 16s; animation-delay: 6s; }
.tri.h { color: #4DD7E3; } .h1 { left: 10%; animation-duration: 17s; animation-delay: 3s; } .h2 { left: 55%; animation-duration: 21s; animation-delay: 7s; }
@keyframes v-float { 0% { transform: translateY(0) rotate(0deg); opacity: 0; } 10% { opacity: 0.2; } 100% { transform: translateY(-130vh) rotate(360deg); opacity: 0; } }

/* --- 3. 投稿枠 --- */
.post { 
    display: flex; width: 94%; max-width: 500px; 
    margin: 4px auto; padding: 10px 16px; 
    border-bottom: 1px solid #eff3f4; background: #fff; 
    position: relative; z-index: 5; 
}
.icon { 
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; 
    margin: 28px 12px 0 0; 
    display: flex; align-items: center; justify-content: center; 
    background: currentColor; border: 1.2px solid #fff; box-shadow: 0 0 0 1.2px #333; 
}
.icon i { font-size: 20px; color: #fff !important; }

.main { flex-grow: 1; min-width: 0; padding-top: 10px; }
.head { margin-bottom: 4px; line-height: 1.2; color: #888; font-size: 0.8rem; }
.head b { color: #333; font-size: 0.95rem; margin-right: 4px; }

/* ★ここ！本文（セリフ）だけを小さくしました */
.body { 
    font-size: 0.9rem; /* さらに一回り小さく調整 */
    line-height: 1.4; 
    color: #333; 
    margin-bottom: 6px; 
    word-wrap: break-word; 
}

/* ★長尾くんの太字（サイズは合わせる） */
.nagao .body {
    font-weight: 700;
    font-size: 0.9rem; 
}

.btns { display: flex; justify-content: space-between; width: 100%; max-width: 240px; color: #888; font-size: 0.85rem; }
.btns span { display: flex; align-items: center; gap: 4px; }
.btns .fa-heart { color: #B43246 !important; }

.kaida .icon i { font-size: 18px; }
.genzuki .icon i { font-size: 19px; }
.nagao { color: #2E2A60; }
.genzuki { color: #B43246; }
.kaida { color: #4DD7E3; }
