* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: #f1bdc4;
}

.shop-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 40px;
    background-color: rgba(242, 189, 197, 1);
    box-shadow: none;
    margin-top: 166px;
    margin-bottom: 166px;
}

.shop-text {
    font-size: 35px;
    font-weight: 700;
    color: #000000;
    font-family: 'ヒラギノ明朝 ProN W3';
    letter-spacing: 0.05em;
    line-height: 1;
}

.click-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-style: none;
    border-width: 0px;
    border-color: rgba(0, 0, 0, 0);
    border-image: none;
    background-color: rgba(215, 96, 122, 1);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1;
}

.click-button:hover {
    background-color: #d894a5;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pc-banner {
    display: flex;
}

.shop-banner.pc-banner {
    flex-direction: row;
    margin-top: 0;
    margin-bottom: 0;
}

.sp-banner {
    display: none;
}

@media (max-width: 768px) {
    .pc-banner {
        display: none;
    }

    .sp-banner {
        display: flex;
    }

    .shop-banner {
        padding: 15px 20px;
        gap: 15px;
    }

    .shop-text {
        font-size: 20px;
    }

    .click-button {
        width: 70px;
        height: 70px;
        font-size: 12px;
    }
}

img {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.pc-image {
    display: block;
    background-color: unset;
    background: unset;
}

.sp-image {
    display: none;
    background-color: unset;
    background: unset;
}

@media (max-width: 768px) {
    .pc-image {
        display: none;
    }

    .sp-image {
        display: block;
        background-color: unset;
        background: unset;
    }
}
