:root {
    --container-max: 680px;
    --page-bg: #0a0a0a
}

* {
    box-sizing: border-box
}

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

body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/PC_BG.webp');
    background-size: cover;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-attachment: initial;
    z-index: -1;
}

body {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
    font-family: "Noto Sans JP", sans-serif;
    font-display: swap;
    font-weight: 300;
    position: relative;
    width: 100vw;
    min-height: 100vh;
    z-index: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.main_content {
    background-image: url('../images/bg_loop.webp');
    background-size: contain;
    background-repeat: repeat-y;
}

.wrapper {
    width: min(var(--container-max), 100%);
    margin: 0 auto
}

.section {
    position: relative
}

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

.panel {
    padding: 16px
}

.store-section-inner {
    text-align: center;
    font-size: 24px;
    padding: 0 0 16px;
    color: #ffeb2a;
}

.store-card {
    background-image: linear-gradient(90deg, rgba(145, 0, 0, 1), rgba(160, 0, 0, 1) 30%, rgba(220, 0, 0, 1) 50%, rgba(160, 0, 0, 1) 70%, rgba(145, 0, 0, 1));
    padding: 0 40px 16px;
    margin: 16px 20px;
    position: relative;
    overflow: hidden;
}

.store-card:first-of-type {
    margin-top: 20%;
}




.store-card h3 {
    border-bottom: 2px solid rgba(255, 255, 255, .8);
    padding-bottom: 12px;
    margin: 20px 0;
    font-size: 32px;
    margin: 50px 0 20px;
}

.store-card h3:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0
}

.store-list {
    columns: 2;
    column-gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0
}

.store-list li {
    break-inside: avoid;
    padding: 8px 0
}

.store-link {
    display: inline-block;
    text-decoration: none;
    color: #fff
}

.store-prefix {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.store-name {
    display: block;
    font-size: 28px;
    font-weight: 700
}

@media (max-width:680px) {
    body::before {
        background-image: url('../images/bg_loop.webp');
    }
    .main_content {
        background-image: none;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
}

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

@media (max-width:500px) {

    .store-card {
        padding: 0 15px 12px;
        margin: 12px 15px;
    }

    .store-card:first-of-type {
        margin-top: 20%;
    }

    .store-count {
        font-size: 18px;
    }

    .store-title {
        width: 86% !important
    }

    .store-section-inner {
        font-size: 14px;
        padding: 0 0 8px
    }

    .store-card h3 {
        font-size: 26px;
        border-bottom-width: 1.5px;
        padding-bottom: 8px;
        margin: 30px 0 12px
    }

    .store-count {
        font-size: 16px
    }

    .store-list li {
        padding: 6px 0
    }

    .store-link {
        padding: 6px 0
    }

    .store-prefix {
        font-size: 12px
    }

    .store-name {
        font-size: 20px;
        line-height: 1.35;
        letter-spacing: .5px
    }
}

.footer {
    text-align: center;
    font-size: 16px;
    padding: 10% 0 3%;
}


/* hero video overlay */
.hero {
    position: relative;
    overflow: hidden
}

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

.hero.has-video {
    padding-bottom: 0
}

.hero .video-embed {
    position: absolute;
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 640px;
    aspect-ratio: 16/9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
    border-radius: 8px;
    overflow: hidden;
    z-index: 2
}

.hero .video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.hero .twitter-embed {
    position: absolute;
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 560px;
    z-index: 2
}

.hero .twitter-embed blockquote {
    margin: 0
}

.twitter-section {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.twitter-section .twitter-embed {
    width: 100%;
    max-width: 560px;
}

.twitter-section .twitter-embed blockquote {
    margin: 0
}

.date-anchors {
    display: flex;
    gap: 12px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    padding: 24px 20px 0;
}

.date-anchor {
    position: relative;
    display: block;
    flex: 1 1 0;
    min-width: 0;
    color: #fff;
    text-decoration: none;
    line-height: 0;
    transition: transform .18s ease, filter .18s ease;
}

.date-anchor:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.date-anchor.is-ended {
    filter: grayscale(.7);
    opacity: .55;
}

.date-anchor img {
    width: 100%;
    height: auto;
    display: block;
}

.date-anchor-ended-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    padding: 6px 18px;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    border: 2px solid #fff;
    line-height: 1;
}

.date-anchor-date {
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #ffeb2a;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .5);
}

.date-anchor-weekday {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ffeb2a;
    margin-left: 4px;
    opacity: .95;
}

.date-anchor-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    color: #fff;
    letter-spacing: .5px;
    opacity: .85;
}

@media (max-width: 500px) {
    .date-anchors {
        gap: 8px;
        padding: 16px 15px 0;
    }
    .date-anchor-ended-badge {
        font-size: 13px;
        padding: 5px 14px;
        letter-spacing: 1px;
    }
}

.store-date-heading {
    position: relative;
    display: block;
    margin: 30px 0 10px;
    padding: 16px 16px 4px;
    text-align: center;
    scroll-margin-top: 16px;
}

.store-date-label {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #ffeb2a;
    line-height: 1.2;
    letter-spacing: 3px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .45);
}

.store-date-total {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
}

.store-card[id] {
    scroll-margin-top: 16px;
}

@media (max-width: 500px) {
    .store-date-heading {
        margin: 25px 0 10px;
        padding: 12px 12px 10px;
    }

    .store-date-label {
        font-size: 22px;
        letter-spacing: 2px;
    }
    .store-date-total {
        font-size: 12px;
        letter-spacing: 2px;
        margin-top: 6px;
    }
}

.store-section {
    position: relative;
    padding-top: 25%;
    padding-bottom: 5%;
}

.store-title {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    width: 70% !important;
}

.store-count {
    font-size: 22px;
    font-weight: 400;
}

.store-list a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 2px 0;
    line-height: 1.4;
}

.store-list a:hover {
    text-decoration: underline
}

.sns-section {
    position: relative;
    padding-top: 30%;
}

.sns-section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: url('../images/bg_sns.webp');
    background-size: cover;
    z-index: -1
}

.sns-title {
    position: absolute;
    left: 50%;
    top: 23%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 40% !important;
}

.sns-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0 0;
    flex-wrap: wrap
}

.sns-row .sns-site-link {
    display: block;
    width: 58%;
    margin-right: 25px;
}

.sns-row .sns-icon-link {
    display: block;
    width: 15%;
}

.sns-row .sns-site-img {
    height: auto;
    width: 100%;
    display: block;
    margin-right: 25px;
}

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

.site-footer {
    position: relative;
    padding: 20px 0
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #222
}

.site-footer .footer-logo {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
    height: 30px;
    width: auto
}

@media (max-width:480px) {

    .site-footer {
        padding: 15px 0;
    }
    .site-footer .footer-logo {
        height: 20px;
    }

}

@media (max-width:400px) {
    .store-name {
        font-size: 18px;
    }
}