#paw-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    height: 40px;
}

.paw-dot {
    width: 28px;
    height: 28px;
    opacity: 0.5;
    animation: paw-bounce 1.2s infinite;
    object-fit: contain;
}

.paw-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.paw-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes paw-bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    40% {
        transform: translateY(-18px);
        opacity: 1;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

body {
    font-family: 'Kosugi Maru', sans-serif;
    background: #fffaf6;
    color: #4d3c2b;
    margin: 0;
    padding: 0;
}

/* ロゴスプラッシュ */
#logo-splash {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fffaf6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s;
    flex-direction: column;
}

#logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px auto;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

#paw-track {
    position: relative;
    width: 320px;
    height: 180px;
    margin: 0 auto;
}

.paw {
    position: absolute;
    width: 28px;
    height: 28px;
    opacity: 0;
    transition: opacity 0.3s;
}

.paw.show {
    opacity: 1;
}

.pawmark {
    /* 画像の足跡用 */
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#exclamation {
    position: absolute;
    font-size: 2.2rem;
    color: #a0522d;
    font-weight: bold;
    left: 260px;
    top: 140px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

#whiteout {
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s;
}

#site-content {
    /* 通常通り */
}

header {
    background: #ffe4e1;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    border-bottom: 2px solid #f8b5a8;
}

header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
}

header p {
    margin: 0;
    font-size: 1.2rem;
}

.main-image {
    width: 200px;
    margin: 1rem auto 1rem auto;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.intro {
    text-align: center;
    margin: 2rem 0;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #ffe4e1;
    color: #a67c52;
    font-size: 0.9rem;
    border-top: 2px solid #f8b5a8;
}