:root {
    --sss-pink: #FFDEDF;
    --sss-orange: #FF7034;
    --sss-red: #FF3B30;
    --sss-bg-gradient: linear-gradient(180deg, #FFCAD1 0%, #E8D5C8 100%);
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--sss-bg-gradient);
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Background Decorations */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: #FF9A9E;
    top: -50px;
    left: -50px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: #A18CD1;
    top: -30px;
    right: -30px;
}

.circle-3 {
    width: 180px;
    height: 180px;
    background: #FBC2EB;
    bottom: 20%;
    right: -60px;
}

.circle-4 {
    width: 120px;
    height: 120px;
    background: #FFC3A0;
    top: 40%;
    left: -40px;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

/* Header Section */
.dots {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--sss-orange);
    border-radius: 50%;
}

.header-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5px;
}

.logo-main {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 5px;
}

.logo-icon img {
    height: 30px;
}

.logo-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #444;
}

.main-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--sss-orange);
    text-shadow: 2px 2px 0 #fff;
    margin-bottom: 40px;
}

/* Image Section */
.image-section {
    position: relative;
    margin-bottom: 60px;
}

.photo-grid {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.photo-item {
    width: 48%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.photo-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.price-notice {
    margin-top: -10px;
    position: relative;
    z-index: 2;
}

.price-notice img {
    max-width: 340px;
    width: 100%;
    height: auto;
}



/* Link Section */
.link-section {
    margin-top: 5px;
    margin-bottom: 60px;
}

.link-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.eye-icon {
    font-size: 1.8rem;
}

.sns-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 40px;
}

.sns-item {
    text-decoration: none;
    display: block;
    transition: transform 0.2s;
}

.sns-item:hover {
    transform: translateY(-5px);
}

.sns-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.logo-area {
    animation: float 3s ease-in-out infinite;
}

/* =========================================================================
   Mobile Overrides
   ========================================================================= */
@media screen and (max-width: 768px) {
    .header-text {
        font-size: 14px;
    }

    .logo-name {
        font-size: 14px;
    }

    .main-title {
        font-size: 19px;
    }
}