/* Tailwindの補助・カスタマイズ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #0f172a; /* Navy 900 */
    color: #e2e8f0;
}

.canvas-grid {
    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
    grid-template-rows: auto auto auto;
    border: 1px solid #cbd5e1;
    background-color: #fff;
    color: #1e293b;
}

.canvas-cell {
    border: 1px solid #cbd5e1;
    padding: 8px;
    display: flex;
    flex-direction: column;
    min-height: 120px;
}

.canvas-cell h3 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.canvas-cell .content {
    font-size: 13px;
    white-space: pre-wrap;
    flex-grow: 1;
}

/* Grid Layout definitions matching standard Lean Canvas */
.grid-problem { grid-column: 1 / 2; grid-row: 1 / 3; }
.grid-solution { grid-column: 2 / 3; grid-row: 1 / 2; }
.grid-metrics { grid-column: 2 / 3; grid-row: 2 / 3; }
.grid-uvp { grid-column: 3 / 4; grid-row: 1 / 3; }
.grid-unfair { grid-column: 4 / 5; grid-row: 1 / 2; }
.grid-channels { grid-column: 4 / 5; grid-row: 2 / 3; }
.grid-segment { grid-column: 5 / 6; grid-row: 1 / 3; }
.grid-cost { grid-column: 1 / 3; grid-row: 3 / 4; }
.grid-revenue { grid-column: 3 / 6; grid-row: 3 / 4; }

/* Print adjustments */
@media print {
    body { background: white; color: black; }
    .no-print { display: none !important; }
    .canvas-container { transform: none !important; width: 100% !important; margin: 0 !important; box-shadow: none !important; }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #1e293b; }
::-webkit-scrollbar-thumb { background: #475569; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }

/* 2025/11/25 SFIMA追記 */
.logo{
    width: 80px;
    opacity: .4;
    display: grid;
    place-items: center;
}
/* Tailwind の orange 系ユーティリティを SFIMA ブルーで上書き */
.text-orange-500 {
    color: #17BED2 !important;
}
.bg-orange-500 {
    background-color: #17BED2 !important;
}
.hover\:bg-orange-600:hover {
    background-color: #12A2B4 !important; /* ちょっとだけ暗めのブルー */
}
.border-orange-500 {
    border-color: #17BED2 !important;
}
.shadow-orange-500\/20{
    --tw-shadow-color: rgb(23 190 210 / 0.2) !important;
}