@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap');

/* ── エラー表示 ── */
.gh-error {
    background: #fdf2f2;
    border: 1.5px solid #e8c0c0;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'Klee One', sans-serif;
    font-size: 13px;
    color: #c04040;
    line-height: 1.7;
    max-width: 360px;
}

/* ── 看板バナー全体 ── */
.gh-banner-wrap {
    position: relative;
    padding-top: 20px;
    margin: 16px auto;
    max-width: 320px;
    text-align: center;
}

/* 吊り下げ紐 */
.gh-chain {
    width: 64px;
    height: 20px;
    margin: 0 auto -5px;
    border-left: 2px solid #8a6a4a;
    border-right: 2px solid #8a6a4a;
}

/* 看板本体 */
.gh-board {
    background: #fdfaf5;
    border: 3px solid #8a6a4a;
    border-radius: 8px;
    padding: 14px 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: transform 0.3s ease;
    cursor: default;
}
.gh-board:hover {
    transform: rotate(-1deg) translateY(-2px);
}

/* 状態別カラー */
.gh-board.gh-open   { background: #f4fbf0; border-color: #7aba8a; }
.gh-board.gh-closed { background: #eeebe6; border-color: #888; }
.gh-board.gh-soon   { background: #fff9e8; border-color: #d4a830; }

/* 絵文字 */
.gh-emoji {
    font-size: 2.2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.10));
    line-height: 1;
}

/* テキストブロック */
.gh-board-txt { flex: 1; }

.gh-status {
    font-family: 'Klee One', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
    line-height: 1.3;
    color: #3d2e24;
}
.gh-board.gh-open   .gh-status { color: #2a6040; }
.gh-board.gh-closed .gh-status { color: #555; }
.gh-board.gh-soon   .gh-status { color: #a07010; }

.gh-hours,
.gh-date {
    font-family: 'Klee One', sans-serif;
    font-size: 0.78rem;
    color: #8a6a4a;
    letter-spacing: 0.04em;
    line-height: 1.5;
}
.gh-board.gh-closed .gh-hours,
.gh-board.gh-closed .gh-date { color: #888; }

/* カウントダウンピル */
.gh-pill {
    flex-shrink: 0;
    background: #2a6040;
    color: white;
    font-family: 'Klee One', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 18px;
    line-height: 1.5;
    text-align: center;
    animation: gh-blink 2s ease-in-out infinite;
}
.gh-pill.gh-pill-soon { background: #c8a030; }

@keyframes gh-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

/* スマホ対応 */
@media (max-width: 400px) {
    .gh-board { padding: 12px 10px; gap: 10px; }
    .gh-emoji { font-size: 1.9rem; }
    .gh-status { font-size: 1rem; }
}
