@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Girassol&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

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

    .sp {
        display: none !important;
    }

    .pc {
        display: block;
    }
}

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

    .sp {
        display: block;
    }
}

:root {
    --back-black: #061821;
    --text-black: #061821;
    --back-white: #e7f3ff;
    --title-font: "Girassol", serif;
    --nomal-font: "Shippori Mincho", serif;
}



html {
    scroll-behavior: smooth;
}


body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 16px;
    font-family: var(--nomal-font);
    background: var(--back-white);
    color: var(--text-black);
}

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


body.menu-open {
    overflow: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* ===== Hamburger ===== */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: var(--back-black);
    border: 1px solid var(--back-white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1100;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--back-white);
    transition: 0.3s;
}

/* バツ変形 */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.nav.active {
    opacity: 1;
    visibility: visible;
}

.nav ul {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
}

.nav li a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition: 0.3s;
}

.nav li a span {
    display: block;
    font-size: 16px;
}

.nav li a:hover {
    opacity: 0.7;
}


.wrap {
    padding: 120px 0 0;
}

.goods-head figure {
    width: 90%;
    max-width: 400px;
    margin: 0 auto 40px;
}

.goods-head {
    text-align: center;
}

.goods-head h3 {
    width: 90%;
    max-width: 600px;
    margin: 0 auto 10px;
    text-align: center;
}

.goods-head p {
    width: fit-content;
    padding: 4px 10px;
    font-size: 24px;
    border: 1px solid var(--back-black);
    margin: 0 auto;
}

.goods-head h3 img {
    margin: 0px 0 20px;
    display: block;
}

.goods-head h3 span {
    font-size: 40px;
    font-family: var(--title-font);
    letter-spacing: 0.2em;
}

.goods-intro {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.4;
    width: 90%;
    margin: 0 auto;
}

.goods-intro a {
    text-decoration: underline;
}

.goods-intro>span {
    font-size: 24px;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.goods-intro small {
    font-size: 16px;
    display: block;
}

.tokuten {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--back-white);
    background: var(--back-black);
    text-align: center;
    padding: 20px 0;
    line-height: 1.6;
}

.tokuten span {
    font-weight: 700;
    font-size: 130%;
    color: transparent;
    background: linear-gradient(90deg, #ffb12e 0% 5%, #f8ea90 50%, #ffb12e 95% 100%);
    -webkit-background-clip: text;
    display: block;
    line-height: 1.4;
}

.goods-page ul {
    width: 90%;
    max-width: 1280px;
    margin: 24px auto 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px 20px;
}

.goods-page a.popup {
    display: block;
    margin-bottom: 12px;
    background: #000;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.goods-page a.popup img {
    transition-duration: 0.2s;
}

.goods-page a.popup:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}

.goods-page li h4 {
    font-size: 18px;
}

.goods-page li h4 span {
    display: block;
    font-size: 80%;
    margin-top: 4px;
}

.goods-page a.cart {

    height: 48px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background: var(--back-black);
    color: #fff;
    border: solid 1px #000;
    margin: 20px auto 0px;
}


.blocker {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal {
    color: var(--back-white);
    background: var(--back-black);
    padding: 40px;
    text-align: center;
    max-width: 700px;
}

.modal h4 {
    font-size: 36px;

}

.modal h4 span {
    display: block;
    font-size: 80%;
    margin-top: 12px;
}

.modal p {
    text-align: center;
    line-height: 1.5;
    margin: 40px 0;
    font-size: 16px;
}

.modal-close {
    width: fit-content;
    display: block;
    margin: 0 auto;
    font-size: 24px;
}

.goods-page aside {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: block;
    font-size: 13px;
    line-height: 1.6;
}

.goods-page aside a {
    text-decoration: underline;
}

.cd-info {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.cd-info p {
    border: solid 1px #fff;
    padding: 40px;
    font-size: 16px;
}

.cd-info strong {
    font-weight: normal;
    font-size: 120%;
    display: block;
    margin-bottom: 10px;
    ;
}

.bottom-link {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

footer {
    padding: 40px 0 10px;
    font-size: 12px;
    text-align: center;
}

footer a {
    display: block;
    width: 50%;
    max-width: 280px;
    margin: 0 auto 40px;
    font-size: 16px;
}

footer a img {
    margin: 0 auto 8px;
}


.goods-title {
    display: flex !important;
    flex-direction: column;
    gap: 20px !important;
    text-align: center;
    font-size: 24px;
    margin-bottom: 24px !important;
}

.notes-box {
    text-align: center;
    margin: 64px auto 40px;
    border: 1px solid rgba(6,24,33,0.5);
    padding: 20px 32px 24px;
    max-width: 1000px;
    width: 90%;
}

.notes-box p{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(6,24,33,0.5);
}

.button-content {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px dashed rgba(6,24,33,0.5);
    padding-top: 20px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--back-black);
    color: var(--back-white);
    width: 100%;
    border-radius: 100px;
    height: 48px;
    margin: 0 auto;
    font-size: 14px;
}

.button img {
    max-width: 14px;
    margin-top: 4px;
}

.goods-intro-2 {
    margin-top: 32px;
    border-top: 1px dashed var(--back-black);
    border-bottom: 1px dashed var(--back-black);
    max-width: 650px;
    margin: 40px auto;
    padding: 16px 0 20px;
}

.goods-box {
    margin: 56px auto 40px !important;
}

.cart{
    background: var(--back-black);
}

.campaign-step{
    text-align: left !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    max-width: 800px;
    margin: 32px auto  ;
}

.campaign-step li{
    display: flex;
    gap: 4px;
}

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

    .hamburger {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        gap: 5px;
    }

    .hamburger span {
        width: 20px;
        height: 1px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav li a {
        font-size: 20px;
    }

    .nav li a span {
        font-size: 14px;
    }


    .wrap {
        padding: 80px 0 0;
    }


    .goods-head h3 {
        width: 80%;
        margin: 0 auto 8px;

    }

    .goods-head h3 img {
        margin: 0px 0 20px;
    }

    .goods-head h3 span {
        font-size: 28px;
    }

    .goods-intro {
        text-align: center;
        font-size: 18px;
        margin-bottom: 28px;
        line-height: 1.4;
    }

    .goods-intro span {
        font-size: 14px;
        display: block;
        margin-bottom: 12px;
    }

    .goods-intro small {
        font-size: 12px;
        display: block;
    }

    .tokuten {
        margin: 0 auto 29px;
        padding: 16px 0;
        font-size: 12px;
    }

    .goods-page ul {
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
        margin-bottom: 40px;
    }

    .goods-page a.popup {
        margin-bottom: 8px;
    }

    .goods-page li h4 {
        font-size: 14px;
    }

    .goods-page li h4 span {
        margin-top: 4px;
    }


    .modal {
        padding: 24px 20px;
    }

    .modal h4 {
        font-size: 18px;

    }

    .modal h4 span {
        display: block;
        font-size: 80%;
        margin-top: 8px;
    }

    .modal p {
        text-align: center;
        line-height: 1.5;
        margin: 20px 0;
        font-size: 12px;
    }

    .modal-close {
        width: fit-content;
        display: block;
        margin: 0 auto;
        font-size: 16px;
    }

    .goods-page aside {
        width: 90%;
        max-width: 1280px;
        margin: 0 auto;
        display: block;
        font-size: 11px;
        line-height: 1.6;
    }

    .goods-page aside a {
        text-decoration: underline;
    }

    .cd-info {
        display: flex;
        justify-content: center;
        margin-top: 100px;
    }

    .cd-info p {
        border: solid 1px #fff;
        padding: 40px;
        font-size: 16px;
    }

    .cd-info strong {
        font-weight: normal;
        font-size: 120%;
        display: block;
        margin-bottom: 10px;
        ;
    }

    .bottom-link {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    footer {
        padding: 40px 0 10px;
        font-size: 10px;
        text-align: center;
    }

    footer a {
        font-size: 12px;
    }

    footer a img {
        margin: 0 auto 8px;
    }


    .goods-title {
        font-size: 18px;
        margin-top: 40px !important;
    }


    .button-content {
        flex-direction: column;
        gap: 10px;
    }

    .goods-head p {
        font-size: 18px;
    }

    .campaign-step{
        margin: 20px auto;
    }

}