/* 全体のリセット設定（余白をゼロにし、スクロールを禁止する） */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* 縦・横のスクロールを完全に禁止 */
    background-color: #e6e6e6; /* スクショに近い、少しだけグレーがかった上品な白 */
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none; /* 文字の選択をハイライトさせない */
}

/* 文字を重ねて中央に配置するコンテナ */
.logo-container {
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 1;
}

/* 黒くて大きい文字 (WIP) */
.bg-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 28vw; /* 画面の横幅に合わせて自動でジャストサイズになります */
    font-weight: 900;
    color: #1a1a1a; /* 締まりのあるインクブラック */
    margin: 0;
    padding: 0;
    letter-spacing: -0.03em; /* 文字の詰まり具合を調節 */
}

/* 赤い手書き風の文字 (yutaishikawa) */
.fg-text {
    font-family: 'Caveat', cursive;
    font-size: 11vw; /* 画面の横幅に合わせて自動拡大縮小 */
    color: #ff2b2b; /* パキッとした鮮やかな赤 */
    position: absolute;
    top: 52%; /* WIPのちょうど真ん中に重なるよう調整 */
    left: 50%;
    transform: translate(-50%, -50%); /* 完全に中心に固定 */
    width: 100%;
    white-space: nowrap; /* 改行させない */
    letter-spacing: 0.02em;
    text-shadow: 0 0 10px rgba(230, 230, 230, 0.5); /* 重なった部分が見えやすいよう背後に薄いボカシ */
}

/* スマホやタブレットなど、画面が縦長になったときの微調整 */
@media (max-width: 768px) {
    .bg-text {
        font-size: 35vw; /* 縦画面でも存在感が出るように少し大きく */
    }
    .fg-text {
        font-size: 14vw;
        top: 53%;
    }
}