@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

@media screen and (min-width: 896px) {

    .sp {
        display: none !important;
    }

    .pc {
        display: block;
    }
}

@media screen and (max-width: 897px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block;
    }
}

html {
    scroll-behavior: smooth;
}

body,
html {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 1rem;
    font-family: "Noto Serif JP", serif;
    color: #5F3928;
}

img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.back {
    position: fixed;
    top: 0;
    z-index: -2;
    width: 100%;
}

.back img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

#kira-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    /* クリック無効 */
    overflow: hidden;
    z-index: 9999;
}

/* 1つのキラ */
.kira {
    position: absolute;
    background-image: url("../img/kira.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    animation: kiraFade 2.5s ease-in-out forwards;
}

/* フェードイン → フェードアウト */
@keyframes kiraFade {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    30% {
        opacity: 1;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(2.4);
    }
}

.kv {
    position: relative;
    height: 100vh;
}

.taremaku img {
    height: 100vh;
    object-fit: cover;
}

.title {
    position: absolute;
    top: 28%;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1000px;
    /* 追加 */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.title.is-show {
    opacity: 1;
    transform: translateY(0);
}

.date {
    position: absolute;
    right: 24px;
    bottom: 20px;
    animation: fluffy 3s infinite;
    max-width: 150px;
    transition: all 0.2s ease;
}

.date:hover {
    filter: brightness(0.8);
}

@keyframes fluffy {

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

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

.section {
    text-align: center;
    padding: 120px 0 0;
}

.content {
    width: 90%;
    margin: 0 auto;
}

.ribon {
    max-width: 900px;
    margin: 0 auto;
}

.campaign-text {
    max-width: 1000px;
    margin: 32px auto 0;
}

.h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 120%;
}

.h2 span {
    display: block;
    margin-top: -10px;
    font-size: 16px;
}

.h2 img {
    height: 40px;
    object-fit: contain;
}

.join-ul {
    margin-top: 24px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: underline;
    line-height: 180%;
}

.button {
    display: block;
    /* padding: 24px 0;
    background: #5F3928;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 100px; */
    max-width: 600px;
    margin: 56px auto 0;
    transition: all 0.2s ease;
}

.button:hover {
    filter: brightness(0.8);
}

.date-box {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #5F3928;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
}

.h2-date {
    border-bottom: 2px solid #5F3928;
    padding: 16px 0;
    font-size: 24px;
}

/* .campaign-date {
    font-size: 28px;
    font-weight: 700;
    padding: 24px 0;
    letter-spacing: 0.05em;
} */

.campaign-date {
    max-width: 900px;
    margin: 0 auto;
}

.godds-ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 40px;
    max-width: 800px;
    margin: 48px auto 0;
}

.goods-info {
    font-size: 14px;
    line-height: 150%;
    margin-top: 40px;
    font-weight: 700;
}

.copy {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 80px auto 0;
    padding-bottom: 40px;
}

.shipping{
    margin-top: 56px;
}


@media screen and (max-width: 896px) {

    .section {
        padding: 64px 0 0;
    }

    .campaign-text {
        margin: 20px auto 0;
    }

    .title {
        top: 40%;
    }

    .date {
        max-width: 100px;
        z-index: 2;
    }

    .taremaku-left {
        position: absolute;
        left: 0;
        bottom: 0;
        max-width: 100px;
    }

    .taremaku-right {
        position: absolute;
        right: 0;
        bottom: 0;
        max-width: 100px;
    }

    .godds-ul {
        grid-template-columns: 1fr;
    }

    .goods-info {
        font-size: 14px;
    }

    .campaign-date {
        font-size: 24px;
        line-height: 130%;
    }

    .h2-date {
        font-size: 20px;
    }

    .h2 span {
        margin-top: -28px;
    }

    .h2 img {
        height: 28px;
    }

    .join-ul {
        font-size: 20px;
    }

    .shipping{
    margin-top: 32px;
}



}


@media screen and (max-width: 400px) {
    .godds-ul {
        max-width: 300px;
    }
}