@charset "UTF-8";

.today-kin-banner {
    max-width: 1100px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,168,75,0.3);
    border-radius: 14px;
    margin: 28px auto 8px auto;          
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(4px);
}
/* ゴールドの上ライン */
.today-kin-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── 左カラム：KIN番号 ── */
.tkb-left {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(200,168,75,0.2);
    min-width: 120px;
}
.tkb-date {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    white-space: nowrap;
}
.tkb-kin-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.tkb-kin-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(200,168,75,0.65);
    text-transform: uppercase;
}
.tkb-kin-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 24px rgba(200,168,75,0.25);
}

/* ── 中央カラム：紋章・説明・アクション ── */
.tkb-center {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.tkb-seal-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.tkb-seal-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200,168,75,0.12);
    border: 1px solid rgba(200,168,75,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--gold-light);
}
.tkb-seal-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.tkb-tone-name {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
}
.tkb-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    padding-left: 2px;
}

/* ◎ 今日やること / △ 避けること */
.tkb-action {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 1rem;
}
.tkb-action-label {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(200,168,75,0.8);
    white-space: nowrap;
    flex-shrink: 0;
}
.tkb-action--avoid .tkb-action-label {
    color: rgba(255,160,122,0.8);
}
.tkb-action-text {
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

/* ── 城・ウェイブスペル バッジ行 ── */
.tkb-cycle-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tkb-cycle-badge {
    flex: 1;
    min-width: 180px;
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(200,168,75,0.25);
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: rgba(255,255,255,0.04);
}
.tkb-cycle-badge-eyebrow {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(200,168,75,0.6);
    line-height: 1;
}
.tkb-cycle-badge-main {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.tkb-cycle-badge-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}
.tkb-cycle-badge-pos {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(200,168,75,0.75);
    margin-top: 2px;
}

/* 城：色別のアクセント左ボーダー */
.tkb-castle--red    { border-left: 3px solid #e57373; }
.tkb-castle--white  { border-left: 3px solid rgba(255,255,255,0.6); }
.tkb-castle--blue   { border-left: 3px solid #64b5f6; }
.tkb-castle--yellow { border-left: 3px solid #ffd54f; }
.tkb-castle--green  { border-left: 3px solid #81c784; }

/* ウェイブスペル */
.tkb-wave { border-left: 3px solid var(--gold); }

/* ── 右カラム：CTA ── */
.tkb-right {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    border-left: 1px solid rgba(200,168,75,0.2);
    min-width: 200px;
    background: rgba(200,168,75,0.06);
}
.tkb-cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}
.tkb-cta-text strong {
    color: var(--gold);
    font-weight: 700;
}
.tkb-cta-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-deep) !important;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.12s;
    white-space: nowrap;
    box-shadow: 0 3px 14px rgba(200,168,75,0.3);
}
.tkb-cta-btn:hover {
    background: #dbb955;
    transform: translateY(-1px);
    color: var(--navy-deep) !important;
}
.tkb-cta-note {
    font-size: 1rem;
    color: rgba(255,255,255,0.3);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .today-kin-banner {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }
    .tkb-right {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        border-left: none;
        border-top: 1px solid rgba(200,168,75,0.2);
        padding: 14px 20px;
        background: rgba(200,168,75,0.08);
        min-width: 0;
    }
    .tkb-cta-text { text-align: left; font-size: 1.2rem; }
}

/* ── SP ── */
@media (max-width: 600px) {
    .today-kin-banner {
        grid-template-columns: 1fr;
        margin: 20px 0 8px;
    }
    .tkb-left {
        flex-direction:column;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid rgba(200,168,75,0.2);
        padding: 14px 18px;
        gap: 16px;
        min-width: 0;
    }
    .tkb-kin-row { flex-direction: row; align-items: baseline; gap: 6px; }
    .tkb-kin-num { font-size: 34px; }
    .tkb-center  { padding: 14px 18px; }
    .tkb-right {
        grid-column: 1;
        flex-direction: column;
        padding: 14px 18px;
    }
    .tkb-cta-text { text-align: center; }
    /* バッジ：SP では縦並び */
    .tkb-cycle-row    { flex-direction: column; gap: 8px; }
    .tkb-cycle-badge  { min-width: 0; }
}
