:root {
    --container-max: 680px;
    --page-bg: #050000;
    --ink: #ffffff;
    --muted: rgba(255, 255, 255, 0.78);
    --red: #d60018;
    --deep-red: #470005;
    --line: rgba(255, 72, 72, 0.24);
    --shadow-red: rgba(214, 0, 24, 0.62);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

@media (min-width: 520px) {
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background:
            linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.72)),
            url("../images/bg.webp") center / cover no-repeat;
        z-index: -1;
    }
}


body {
    color: var(--ink);
    background: var(--page-bg);
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.wrapper {
    width: min(var(--container-max), 100%);
    min-height: 100vh;
    margin: 0 auto;
    box-shadow: 0 0 44px rgba(0, 0, 0, 0.65);
}

.hero {
    line-height: 0;
}

.hero img {
    display: block;
    width: 100%;
    height: auto;
}

/* @media (max-width: 520px) {
    .content {
        background:
            linear-gradient(rgba(6, 0, 0, 0.08), rgba(6, 0, 0, 0.4)),
            url("../images/sp_loop.png") top center / 100% auto repeat-y;
    }
} */


.store-section {
    padding: 0 clamp(16px, 5vw, 38px) 24px;
}

.store-heading {
    text-align: center;
    margin: clamp(-75px, -6vw, -28px) 0 clamp(18px, 5vw, 32px);
}

.store-heading img {
    display: block;
    width: min(92%, 560px);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 14px rgba(255, 0, 24, 0.72));
}

.store-total {
    margin: -20px 0 0;
    color: #fff;
    font-size: clamp(1.06rem, 4vw, 1.35rem);
    font-weight: 900;
    letter-spacing: 0;
    text-shadow:
        0 2px 0 #000,
        0 0 12px var(--shadow-red);
}

.store-list-wrap {
    position: relative;
    padding: 10px clamp(14px, 4vw, 26px) 12px;
    border: 1px solid rgba(148, 0, 12, 0.82);
    background:
        linear-gradient(90deg, rgba(34, 0, 4, 0.88), rgba(96, 0, 10, 0.72), rgba(34, 0, 4, 0.88));
    box-shadow:
        inset 0 0 36px rgba(0, 0, 0, 0.72),
        0 0 22px rgba(172, 0, 16, 0.22);
    overflow: hidden;
}

.store-list-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 0, rgba(166, 0, 18, 0.2), transparent 30%),
        radial-gradient(circle at 85% 100%, rgba(255, 0, 24, 0.16), transparent 32%);
    pointer-events: none;
}

.store-list {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0;
    list-style: none;
}

.store-list li {
    min-width: 0;
    border-bottom: 1px solid var(--line);
}

.store-list li:last-child {
    border-bottom: 0;
}

.store-name {
    display: flex;
    align-items: baseline;
    gap: 14px;
    width: 100%;
    min-height: 46px;
    padding: 9px 0;
    color: #fff;
    font-size: clamp(0.92rem, 3.3vw, 1.16rem);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0;
    text-decoration: none;
    text-shadow: 0 2px 0 #000;
    overflow-wrap: anywhere;
}

.store-pref {
    flex: 0 0 4.5em;
    color: #ffd8de;
    font-size: 0.86em;
    white-space: nowrap;
}

.store-name-text {
    flex: 1 1 auto;
    min-width: 0;
}

a.store-name {
    transition: color 0.18s ease, text-shadow 0.18s ease;
}

a.store-name:hover {
    color: #ffdbe0;
    text-shadow:
        0 2px 0 #000,
        0 0 12px rgba(255, 255, 255, 0.68);
}

.notice {
    margin: 0;
    padding: 18px 16px 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    text-align: center;
}

.sns-section {
    padding: 24px 18px 34px;
}

.sns-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 18px;
}

.sns-row:last-child {
    margin-bottom: 0;
}

.sns-site-link,
.sns-icon-link {
    display: block;
    line-height: 0;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.sns-site-link:hover,
.sns-icon-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.sns-site-link {
    width: min(230px, 58vw);
}

.sns-icon-link {
    width: 52px;
}

.sns-site-img,
.sns-icon-img {
    display: block;
    width: 100%;
    height: auto;
}

.site-footer {
    position: relative;
    padding: 22px 0 24px;
    background: #080808;
    text-align: center;
}

.site-footer a {
    display: inline-block;
    line-height: 0;
}

.footer-logo {
    display: block;
    width: auto;
    height: 28px;
    margin: 0 auto;
}

@supports (-webkit-touch-callout: none) {
    body::before {
        background-attachment: scroll;
    }
}

@media (max-width: 520px) {
    body::before {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72)),
            url("../images/sp_loop.png");
        background-size: auto, 100% auto;
        background-repeat: repeat-y;
        background-position: top center;
    }

    .wrapper {
        background: #090000;
        box-shadow: none;
    }

    .content {
        background:
            linear-gradient(rgba(6, 0, 0, 0.06), rgba(6, 0, 0, 0.4)),
            url("../images/sp_loop.png") top center / 100% auto repeat-y;
    }

    .store-heading {
        margin-top: -58px;
        margin-bottom: 24px;
    }

    .store-name {
        min-height: auto;
        gap: 10px;
        padding: 10px 0;
    }

    .store-pref {
        flex-basis: 4.2em;
        font-size: 0.82em;
    }

    .sns-site-link {
        width: min(190px, 55vw);
    }

    .sns-icon-link {
        width: 44px;
    }

    .footer-logo {
        height: 22px;
    }
}
