
:root {

    /* 文字間 */
    --lsp-120: 0.12em;
    --lsp-100: 0.1em;
    --lsp-80: 0.08em;
    --lsp-70: 0.07em;
    --lsp-60: 0.06em;
    --lsp-50: 0.05em;
    --lsp-40: 0.04em;
    --lsp-30: 0.03em;
    --lsp-20: 0.02em;
    --lsp-10: 0.01em;

    /* 固有の余白 */
    --p310-spa: 16.1vw;
    --p200-spa: 10.4vw;
    --p180-spa: 9.3vw;
    --p160-spa: 8.3vw;
    --p150-spa: 7.8vw;
    --p140-spa: 7.3vw;
    --p120-spa: 6.3vw;
    --p110-spa: 5.7vw;
    --p100-spa: 5.2vw;
    --p90-spa: 4.7vw;
    --p80-spa: 4.1vw;
    --p70-spa: 3.6vw;
    --p60-spa: 3.1vw;
    --p50-spa: 2.7vw;
    --p45-spa: 2.3vw;
    --p40-spa: 2.1vw;
    --p35-spa: 1.8vw;
    --p30-spa: 1.5vw;
    --p25-spa: 1.3vw;
    --p20-spa: 1vw;
    --p15-spa: 0.8vw;
    --p10-spa: 0.52vw;

    /* 文字サイズ */
    /* 32〜65px */
    --32to65: clamp(32px,3.4vw,65px);
    /* 20〜36px */
    --20to36: clamp(20px,1.9vw,36px);
    /* 22〜35px */
    --22to35: clamp(22px,1.8vw,35px);
    /* 20〜35px */
    --20to35: clamp(20px,1.8vw,35px);
    /* 18〜35px */
    --18to35: clamp(18px,1.8vw,35px);
    /* 18〜32px */
    --18to32: clamp(18px,1.6vw,32px);
    /* 16〜30px */
    --16to30: clamp(16px,1.6vw,30px);
    /* 16〜28px */
    --16to28: clamp(16px,1.4vw,28px);
    /* 16〜24px */
    --16to24: clamp(16px,1.2vw,24px);
    /* 15〜28px */
    --15to28: clamp(15px,1.4vw,28px);
    /* 14〜24px */
    --14to24: clamp(14px,1.2vw,24px);
    /* 15〜24px */
    --15to24: clamp(15px,1.2vw,24px);
    /* 14〜24px */
    --14to24: clamp(14px,1.2vw,24px);
    /* 14〜22px */
    --14to22: clamp(14px,1.1vw,22px);
    /* 14〜20px */
    --14to20: clamp(14px,1vw,20px);
    /* 12〜18px */
    --12to18: clamp(12px,0.9vw,18px);
    /* 12〜16px */
    --12to16: clamp(12px,0.8vw,16px);
    /* 10〜14px */
    --10to14: clamp(10px,0.7vw,14px);
    
    /* 行送り */
    --lh-24: 2.4;
    --lh-23: 2.3;
    --lh-22: 2.2;
    --lh-21: 2.1;
    --lh-20: 2;
    --lh-19: 1.9;
    --lh-18: 1.8;
    --lh-16: 1.6;
    --lh-14: 1.4;

    /* 太さ */
    --fw-900: 900;
    --fw-800: 800;
    --fw-700: 700;
    --fw-600: 600;
    --fw-500: 500;
    --fw-400: 400;

    /* カラー */
    --cream: #FFF5CD;
    --black: #000000;
    --l-black: #323232;
    --l-blue: #5AC3EB;
    --l-gray: #F5F5F5;
    --m-gray: #AAAAAA;
    --d-gray: #4B4B4B;
    --orange: #E14619;
    --yellow: #FFDB00;

    /* フォント */
    --ff-noto: "Noto Sans JP", sans-serif;
    --ff-dela: "Dela Gothic One", sans-serif;
    --ff-mplus: "M PLUS 1p", sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-noto);
    color: var(--black);
    letter-spacing: var(--lsp-50);
    font-size: var(--16to28);
    font-weight: var(--fw-600);
    background-color: var(--cream);
}

body.fixed {
    overflow: hidden;
}

.is-modal-hidden {
    display: none!important;
}

a {
    display: block;
}

img {
    display: block;
    max-width: 100%;
}

.sp-view {
    display: none;
}

.spm-view {
    display: none;
}

.btn {
    transform: scale(1,1);
    transition: 0.3s;

        a {
            display: block;
            width: 100%;
        }

        &:hover {
            transition: 0.3;
            transform: scale(1.05,1.05);
        }
}

.info-btn {
    width: 32vw;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;

    a {
    padding: 2.5vw;
    color: #fff;
    font-size: var(--16to28);
    border-radius: 100px;
    background-color: var(--black);
    font-weight: var(--fw-800);
    font-family: var(--ff-mplus);
    letter-spacing: var(--lsp-50);
    position: relative;
    text-align: center;
    line-height: var(--lh-16);

    &::before {
        content: "";
        display: block;
        width: 1.6vw;
        max-width: 30px;
        height: 1.25vw;
        max-height: 24px;
        background-image: url(../images/btn-ico1.png);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 50%;
        right: var(--p60-spa);
        transform: translateY(-50%);
    }
}

}

.more-btn {
    width: 32vw;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.more-btn p {
    width: 100%;
    color: var(--black);
    border: 6px solid var(--black);
    background-color: var(--yellow);
    padding: 2.5vw;
    border-radius: 100px;
    font-size: var(--16to28);
    font-family: var(--ff-mplus);
    letter-spacing: var(--lsp-80);
    font-weight: var(--fw-800);
    text-align: center;
    position: relative;
}

.more-btn p::after {
    content: "";
    display: block;
    width: 1.6vw;
    min-width: 30px;
    height: 1.25vw;
    min-height: 24px;
    background-image: url(../images/btn-ico2.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}


.orange {
    color: var(--orange);
    font-weight: var(--fw-700);
}

@media screen and (max-width:1600px) {
    html {
        font-size: 57%;
    }

    .pc-view {
        display: block;
    }

}


@media screen and (max-width:1200px) {
    html {
        font-size: 52%;
    }

    .more-btn p {
        border: 4px solid var(--black);
    }

    .info-btn {
        width: 45vw;
    }
}

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

    :root {
        /* 余白 */
        --p120-spa: 32vw;
        --p100-spa: 26.5vw;
        --p80-spa: 21vw;
        --p70-spa: 18.6vw;
        --p65-spa: 17.3vw;
        --p60-spa: 16vw;
        --p55-spa: 14.6vw;
        --p50-spa: 13.3vw;
        --p45-spa: 12vw;
        --p40-spa: 10.5vw;
        --p35-spa: 9.3vw;
        --p30-spa: 8vw;
        --p25-spa: 6.5vw;
        --p20-spa: 5.3vw;
        --p15-spa: 4vw;
        --p10-spa: 2.6vw;
        --p5-spa: 1.3vw;
    }


    html {
        font-size: 62.5%;
    }

    body {
        background-image: url(../images/mv-bg_sp.png);
        background-position: center 10px;
    }

    .pc-view {
        display: none;
    }

    .sp-view {
        display: block;
    }

    .btn {
        &:hover {
            transform: scale(1,1);
        }
    }

    .info-btn {
        width: 100%;
    }

    .info-btn a {
        padding: 6.4vw;
        line-height: var(--lh-16);

        &::before {
            width: 4.2vw;
            min-width: 16px;
            height: 3.7vw;
            min-height: 14px;
            right: var(--p30-spa);
        }
    }

    .more-btn {
        min-width: auto;
        width: 73vw;
        margin-left: auto;
        margin-right: auto;

        p {
            padding: 6.4vw;
            border: 3px solid var(--black);

            &::after {
                min-width: 16px;
                min-height: 14px;
                right: 8vw;
            }
        }
    }

    
}

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

    .spm-view {
        display: block;
    }

}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../images/yellow-bg.jpg);
  background-repeat: repeat;
  z-index: 9999;
  overflow: hidden;

    .modal-content {
        background-color: #fff;
        padding: 6.7vw 2vw 5vw;
        border: 4px solid var(--black);
        border-radius: 2.6vw;
        max-width: 1080px;
        width: 56vw;
        text-align: center;
        position: absolute;
        top: 10.4vw;
        left: 50%;
        transform: translateX(-50%);

        &::before {
            content: "";
            display: block;
            width: 20.8vw;
            max-width: 400px;
            height: 7.5vw;
            max-height: 145px;
            background-image: url(../images/modal-caution_pc.png);
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            left: 50%;
            top: -3vw;
            transform: translateX(-50%);
        }

        p {
            font-size: var(--15to24);
            margin-bottom: var(--p35-spa);
        }

        .bigger {

            .pc {
                font-size: var(--20to35);
            font-weight: var(--fw-900);
            font-family: var(--ff-mplus);
            letter-spacing: var(--lsp-100);
            display: inline-block;
            position: relative;
            z-index: 10;
            background: linear-gradient(transparent 30%, #FFDB00 30%);
            box-decoration-break: clone;
            -webkit-box-decoration-break: clone;
            padding: 0 4px;
            }

            .sp {
                display: none;
            }

        }

        .lh {
            line-height: var(--lh-22);

            .orange {
                font-weight: var(--fw-900);
            }

        }

        .info-btn {
            margin-top: var(--p40-spa);
        }

    }

}

.close-button {
  position: absolute;
  top: 6.7vw;
  left: 16vw;
  width: 3.9vw;
  height: 3.9vw;
  background-color: var(--black);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.close-button::before,
.close-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8vw;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
  transform-origin: center;
}

.close-button::before {
  transform: translate(-50%, -50%) rotate(40deg);
}

.close-button::after {
  transform: translate(-50%, -50%) rotate(-40deg);
}

.modal.hidden {
  display: none;
}

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

    .modal {
        /* background-image: url(../images/yellow-bg_sp.jpg); */

        .close-button {
            left: 0;
            top: 0;
            border-radius: 0 0 2.5vw 0;
            width: 13vw;
            min-width: 50px;
            height: 13vw;
            min-height: 50px;

            &::before,&::after {
                width: 6.5vw;
                height: 3px;
            }
        }

        .modal-content {
            width: 86.5vw;
            padding: 20.8vw 6.5vw 16vw;
            border: 2px solid var(--black);
            top: 20.5vw;

            &::before {
                width: 53vw;
                min-width: 200px;
                height: 20.8vw;
                min-height: 78px;
                top: -8vw;
            }

            p {
                margin-bottom: var(--p10-spa);
                line-height: var(--lh-20);
            }

            .bigger {
                .pc {
                    display: none;
                }

                .sp {
                    display: block;

                    span {
                        font-size: var(--20to35);
                        font-weight: var(--fw-900);
                        font-family: var(--ff-mplus);
                        display: inline-block;
                        background: linear-gradient(transparent 50%, #FFDB00 50%);
                        box-decoration-break: clone;
                        -webkit-box-decoration-break: clone;
                        padding: 0 4px;
                    }

                }
            }

            .info-btn {
                margin-top: var(--p35-spa);
            }
        }
    }

}

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

    .modal {
        .modal-content {
            padding: 15vw 6.5vw 10vw;
            top: 18.5vw;
        }
    }

}

header {
    width: 100%;
    height: 110px;
    padding: 0 7.8vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 36vw;
    height: 100vh;
    background-color: var(--l-black);
    /* background-color: var(--yellow); */
    /* background-image: url(../images/yellow-bg.jpg); */
    transition: 0.7s;
    z-index: 1000;
    border-radius: 0 0 var(--p50-spa) 0;

    .menu-lists {
        ul {
            li {
                a {
                    .svg {
                        transition: 0.3s;
                        color: #fff;
                        width: 100%;
                    }

                    .svg:hover {
                        transition: 0.3s;
                        color: var(--yellow);
                    }
                }

                &:nth-child(1) {
                    a {
                        .svg {
                            width: 12vw;
                        }
                    }
                }
                &:nth-child(2) {
                    a {
                        .svg {
                            width: 9.16vw;
                        }
                    }
                }
                &:nth-child(3) {
                    a {
                        .svg {
                            width: 20.6vw;
                        }
                    }
                }
                &:nth-child(4) {
                    a {
                        .svg {
                            width: 11.5vw;
                        }
                    }
                }
            }
        }
    }
}

.menu.open {
    left: 0;
    transition: 0.5s;
}

.hamburger {
    width: 55px;
    height: 34px;
    position: relative;
    z-index: 1200;
    cursor: pointer;
    margin-right: var(--p40-spa);
}

.hamburger span {
    content: "";
    display: block;
    width: 55px;
    height: 6px;
    background-color: var(--black);
    border-radius: 10px;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
    left: 0;
    transition: 0.5s;
}
.hamburger span:nth-child(2) {
    top: 14px;
    left: 0;
    transition: 0.5s;
}
.hamburger span:nth-child(3) {
    top: 28px;
    transition: 0.5s;
}

.hamburger.close span {
    background-color: #fff;
}

.hamburger.close span:nth-child(1) {
    transform: rotate(40deg);
    transition: 0.5s;
    top: 14px;
}
.hamburger.close span:nth-child(2) {
    opacity: 0;
    transition: 0.5s;
}
.hamburger.close span:nth-child(3) {
    transform: rotate(-40deg);
    top: 14px;
    transition: 0.5s;
}

.menu .menu-lists {
    padding: 160px 16% 0 23%;
}

.menu .menu-lists ul li {
    margin-bottom: 55px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.menu .menu-lists ul li::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/menu-arrow_b.png);
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.3s;
}

.menu .menu-lists ul li a {
    color: #fff;
    font-family: var(--ff-futura);
    font-size: 4rem;
    letter-spacing: var(--lsp-50);
    transition: 0.3s;
    width: fit-content;
}

.menu .menu-lists ul li:hover a {
    /* color: var(--yellow); */
    transition: 0.3s;
}

.menu .menu-lists ul li:hover {
    /* color: var(--yellow); */
    transition: 0.3s;
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    .pokemon-logo {
        width: 200px;
    }
}

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

header {
    height: 13.3vw;
    min-height: 50px;

    .hamburger {
        width: 25px;
        height: 17px;
        min-width: 6.6vw;
        min-height: 4.5vw;

        span {
            width: 25px;
            height: 3px;
            min-width: 6.6vw;
            min-height: 0.8vw;
            border: 2px solid var(--black);

            &:nth-child(2) {
                top: 1.86vw;
            }
            &:nth-child(3) {
                top: 3.6vw;
            }
        }
    }

    .close {
            span {
                border: 2px solid #fff;
            }
        }

    .menu {
        width: 100%;

        .menu-lists {
            padding: 48.5vw 0 0 6.6vw;

            ul {
                li {
                    &:nth-child(1) {
                        a {
                            .svg {
                                width: 42.4vw;
                            }
                        }
                    }

                    &:nth-child(2) {
                        a {
                            .svg {
                                width: 32vw;
                            }
                        }
                    }

                    &:nth-child(3) {
                        a {
                            .svg {
                                width: 72.8vw;
                            }
                        }
                    }

                    &:nth-child(4) {
                        a {
                            .svg {
                                width: 40.5vw;
                            }
                        }
                    }
                }
            }
        }
    }

    .logo-wrap {
        
        .threecoins-logo {
            width: 18.9vw;
            min-width: 71px;
        }

        .pokemon-logo {
            width: 24vw;
            min-width: 90px;
        }
    }
}

}

@media screen and (max-width:500px) {
    header {
        .menu {
            .menu-lists {
                padding: 30vw 0 0 6.6vw;

                ul {
                    li {
                        margin-bottom: 10.6vw;
                    }
                }
            }
        }
    }
}

/* MV */
.mv {
    max-width: 1620px;
    width: 84.3vw;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3.6vw;

    .key {
        position: relative;
        width: 100%;
        height: 35.9vw;
        max-height: 690px;
        background-image: url(../images/key-bg.jpg);

        .key-img {
            width: 46.87vw;
            max-width: 900px;
            height: 39vw;
            max-height: 750px;
            position: absolute;
            top: -1.56vw;
            left: 50%;
            transform: translateX(-50%);

            img {
                position: absolute;
                opacity: 0;
                transform: scale(0.4);
            }

            .mv-logo {
                width: 24.16vw;
                top: 1.25vw;
                left: 0.989vw;
                z-index: 20;
            }

            .mv-pikachu {
                width: 32.6vw;
                top: 3.489vw;
                right: 5.52vw;
                z-index: 10;
            }

            .mv-bg {
                width: 100%;
                top: 0;
                left: 0;
                z-index: 0;
            }

        }

        .mv-poke_logo {
            position: absolute;
            right: 2vw;
            bottom: 2vw;
            width: 15.3vw;
        }
    }

    .mv-copy {
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: right;

        small {
            color: var(--l-black);
            font-size: var(--10to14);
        }
    }

}

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

    .mv {

        width: 86.6vw;

        .key {
            height: 102vw;
            max-height: none;
            min-height: 383px;

            .key-img {
                width: 96vw;
                max-width: none;
                min-width: 360px;
                height: 80vw;
                max-height: none;
                min-height: 300px;
                top: 8.53vw;

                img {
                    max-width: none;
                    max-height: none;
                }

                .mv-logo {
                    width: 49.3vw;
                    min-width: 185px;
                    height: 29.86vw;
                    min-height: 112px;
                    top: 2.66vw;
                    left: 2.13vw;
                }

                .mv-pikachu {
                    width: 67.4vw;
                    min-width: 185px;
                    height: 60.2vw;
                    min-height: 226.3px;
                    top: 6.93vw;
                    right: 10.93vw;
                }
            }

            .mv-poke_logo {
                right: 4vw;
                bottom: 4vw;
                width: 30.6vw;
                min-width: 115px;
            }
        }

        .mv-copy {
            text-align: center;
            margin-top: 2.1vw;
            margin-bottom: 2.1vw;
        }
    }

}

/* section共通 */

.bg-y-group {
    background-color: var(--yellow);
    background-image: url(../images/yellow-bg.jpg);
}

.bg-b-group {
    background-color: var(--l-blue);
    background-image: url(../images/blue-bg.jpg);
}

.m-section {
    position: relative;
    padding: 0 var(--p150-spa);
}

.s-section {
    position: relative;
}

section {
    h2 {
        width: 100%;

        img {
            width: 100%;
        }
    }
}

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

    .bg-y-group {
        background-image: url(../images/yellow-bg_sp.jpg);
    }
    .bg-b-group {
        background-image: url(../images/blue-bg_sp.jpg);
    }

    .m-section {
        padding: 0 6.6vw;
    }

}

.notice {
    margin-top: 17.5vw;
    padding-top: 14.2vw;
    padding-bottom: 24.1vw;

    h2 {
        position: absolute;
        left: 0;
        top: -17.5vw;
    }

    .caution {
        margin-bottom: var(--p80-spa);
        p {
            img {
                width: 33.8vw;
                margin-left: auto;
                margin-right: auto;
            }
        }
    }

    .caution-wrap {
        width: 100%;
        background-color: #fff;
        border-radius: 30px;
        border: 4px solid var(--black);
        position: relative;
        padding: var(--p120-spa) var(--p150-spa) var(--p140-spa);

        h3 {
            margin-bottom: var(--p80-spa);
            width: 27vw;
            margin-left: auto;
            margin-right: auto;
        }

        .desc {
            text-align: center;
            line-height: var(--lh-24);
            margin-bottom: var(--p60-spa);
        }

        .points1,
        .points2 {
            ul {
                    li {
                        color: var(--m-gray);
                        font-size: var(--12to18);
                        letter-spacing: var(--lsp-20);
                        line-height: var(--lh-22);
                        font-weight: var(--fw-500);
                        margin-bottom: var(--p10-spa);
                        text-indent: -1.5em;
                        position: relative;

                        &::before {
                            content: "※";
                            margin-right: var(--p10-spa);
                        }
                    }
                }
        }

        .points1 {
                background-color: var(--l-gray);
                padding: var(--p60-spa);
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                column-gap: var(--p50-spa);

                ul {
                    width: 47%;
                }
        }

        .points2 {
                background-color: var(--l-gray);
                padding: 40px 80px;
        }

    }

    .wrap1 {
        margin-bottom: var(--p60-spa);

        .term {
            margin-bottom: var(--p70-spa);
            width: 47.3vw;
            max-width: 910px;
            margin-left: auto;
            margin-right: auto;

            dl {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: var(--p30-spa);
                margin-bottom: var(--p20-spa);
                position: relative;

                &:last-child {
                    margin-bottom: 0;
                }

                dt {
                    font-size: var(--14to22);
                    font-family: var(--ff-mplus);
                    width: 18.2vw;
                    height: 3.38vw;
                    text-align: center;
                    position: relative;
                    z-index: 10;
                    line-height: 3.38vw;

                    &::after {
                        content: "";
                        display: block;
                        width: 18.2vw;
                        height: 3.38vw;
                        background-color: var(--l-blue);
                        border: 3px solid var(--black);
                        position: absolute;
                        top: 0;
                        left: 50%;
                        transform: translateX(-50%) skewX(-25deg);
                        z-index: -1;
                    }
                }

                dd {
                    font-size: var(--14to24);
                }
            }
        }

        .info-btn {
            margin-bottom: var(--p80-spa);
        }

    }

    .wrap2 {
        position: relative;
        z-index: 1;

        &::after {
            content: "";
            display: block;
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            width: 11.6vw;
            max-width: 224px;
            height: 15.6vw;
            max-height: 300px;
            background-image: url(../images/notice-deco2.png);
            bottom: -18.2vw;
            right: 10.8vw;
        }
    }

    &::after {
        content: "";
        display: block;
         width: 4.9vw;
            max-width: 95px;
            height: 4.9vw;
            max-height: 95px;
            background-image: url(../images/notice-deco1.png);
            background-repeat: no-repeat;
            background-size: contain;
            position: absolute;
            bottom: 20.8vw;
            right: 36.4vw;
            z-index: 0;
    }
}

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

    .notice {
        .wrap1 {
            .term {

                width: 60vw;

                dl {
                    dt {
                        width: 40%;

                        &::after {
                            width: 100%;
                        }
                    }

                    dd {
                        width: 60%;
                    }
                }
            }
        }
    }

}

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

    .notice {
        padding-top: 50vw;
        padding-bottom: 50.6vw;

        h2 {
            top: -10.6vw;
        }

        .caution {

            margin-bottom: var(--p30-spa);

            p {
                img {
                    width: 73.3vw;
                }
            }
        }

        .caution-wrap {
            border-radius: 20px;
            border: 2px solid var(--black);
            padding: var(--p50-spa) var(--p25-spa) var(--p60-spa);

            .desc {
                margin-bottom: var(--p30-spa);
            }

            .points1,.points2 {
                background-color: #fff;
                padding: 0;
                flex-direction: column;
                padding: 0 0 0 5vw;

                ul {
                    width: 100%;

                    li {
                        &::before {
                            margin-right: var(--p5-spa);
                        }
                    }
                }
            }
        }

        .wrap1 {
            margin-bottom: var(--p30-spa);

            h3 {
                margin-bottom: var(--p30-spa);
                width: 66.6vw;

                    img {
                        width: 100%;
                    }
                }

            .term {

                margin-bottom: var(--p35-spa);
                width: 100%;

                dl {
                    flex-direction: column;
                    gap: var(--p10-spa);
                    margin-bottom: var(--p15-spa);
                    
                    dt {
                        width: 100%;
                        max-width: none;
                        height: 9.33vw;
                        max-height: none;
                        padding: 0;
                        line-height: 9.33vw;

                        &::after {
                            width: 100%;
                            max-width: none;
                            height: 9.33vw;
                            max-height: none;
                            transform: translateX(-50%) skewX(-25deg);
                            top: 0;
                            border: 2px solid var(--black);
                        }
                    }

                    dd {
                        width: 100%;
                        line-height: var(--lh-18);
                    }
                }
            }

            .info-btn {
                margin-bottom: var(--p40-spa);
            }
        }

        .wrap2 {
            h3 {
                margin-bottom: var(--p30-spa);
                width: 40vw;
            }

            .desc {
                margin-bottom: var(--p25-spa);
            }

            &::after {
                width: 28.8vw;
                max-width: none;
                min-width: 108px;
                height: 38.6vw;
                max-height: none;
                min-height: 145px;
                bottom: -44.2vw;
                right: 8.6vw;
            }
        }

        &::after {
            width: 10.6vw;
            max-width: none;
            min-width: 40px;
            height: 10.6vw;
            max-height: none;
            min-height: 40px;
            bottom: 42.3vw;
            right: 60.4vw;
        }
    }

}

@media screen and (max-width:500px) {
    .notice {
        h2 {
            top: -11vw;
        }
    }
}

/* ITEM */

.item {

    padding-top: 23vw;

    h2 {
        position: absolute;
        left: 0;
        top: -18.2vw;
    }

    .c-wrapper {
        padding-bottom: 29vw;
        position: relative;

        &::before,
        &::after {
            content: "";
            display: block;
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
        }

        &::before {
            width: 6.25vw;
            max-width: 120px;
            height: 7.3vw;
            max-height: 140px;
            background-image: url(../images/item-deco1.png);
            bottom: 24.8vw;
            left: 21.4vw;
            z-index: 0;
        }

        &::after {
            width: 30.2vw;
            max-width: 581px;
            height: 16.6vw;
            max-height: 320px;
            background-image: url(../images/item-deco2.png);
            bottom: 9vw;
            left: 35.6vw;
        }

        .c-dsg {
        position: relative;
    }
    }

    .s-wrapper {
        background-color: var(--l-black);
        position: relative;
        padding-top: 8.4vw;
        padding-bottom: 30vw;

        &::before,
        &::after {
            content: "";
            display: block;
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
        }

        &::before {
            width: 100%;
            height: 9.1vw;
            background-image: url(../images/s-wrapper_top.png);
            top: -8.8vw;
            left: 0;
        }

        &::after {
            width: 7.8vw;
            max-width: 150px;
            height: 6.8vw;
            max-height: 131px;
            background-image: url(../images/s-wrapper-deco1.png);
            top: -9.5vw;
            right: 19.4vw;
            transform: rotateZ(-120deg);
        }

        .s-dsg {
            position: relative;
            .ttl {
                color: #fff;
            }

            .wrap {
                .inner {
                    a {
                        .slides {
                            border: none;
                        }

                        h4 {
                            color: #fff;
                        }

                        .price {
                            color: #fff;
                        }

                        .size {
                            color: #fff;
                        }

                        .buy {
                            background-color: var(--l-black);
                            border: 2px solid #fff;
                        }
                    }
                }
            }

            &::after {
                content: "";
                display: block;
                width: 51.1vw;
                max-width: 983px;
                height: 18.2vw;
                max-height: 350px;
                background-image: url(../images/s-wrapper-deco2.png);
                background-repeat: no-repeat;
                background-size: contain;
                position: absolute;
                bottom: -21.5vw;
                left: 8.8vw;
            }
        }
    }

    .item-dsg {
        position: relative;
        width: 68vw;
        margin-left: auto;
        margin-right: auto;

        .ttl {
            text-align: center;
            margin-bottom: var(--p100-spa);

            h3 {
                font-size: var(--32to65);
                font-family: var(--ff-dela);
                letter-spacing: var(--lsp-70);
                margin-bottom: var(--p60-spa);
            }

            p {
                font-size: var(--15to28);
                line-height: var(--lh-21);
            }
        }

        .wrap {

            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: var(--p120-spa) var(--p80-spa);
            padding-bottom: var(--p120-spa);

            .inner {
                display: none;
                max-width: 380px;
                position: relative;

                a {
                    position: relative;
                    .slides {
                            border-radius: var(--p30-spa);
                            border: 4px solid var(--black);
                            background-color: #fff;
                            margin-bottom: var(--p30-spa);
                            aspect-ratio: 38 / 47;
                            overflow: hidden;

                        div {
                            overflow: hidden;
                            height: 100%;

                            > ul {
                                height: 100%;

                                li {
                                    img {
                                        width: 100%;
                                    }
                                }

                                .slick-slide {
                                    overflow: hidden;
                                }

                                .slick-dots {
                                    bottom: var(--p30-spa);

                                    li.slick-active button:before {
                                        color: var(--black);
                                    }

                                    li {
                                        width: 20px;
                                        height: 20px;
                                        margin: 0;

                                        button {
                                            line-height: 0;
                                            width: 10px;
                                            height: 10px;
                                            padding: 5px;

                                            &::before {
                                                opacity: 1;
                                                font-size: 40px;
                                                top: 0;
                                                left: 0;
                                                color: var(--m-gray);
                                            }
                                        }
                                    }
                                }
                            }

                            .slick-dotted.slick-slider {
                                border-radius: 20px;
                                overflow: hidden;
                            }
                        }
                    }

                    h4 {
                        font-size: var(--14to24);
                        font-weight: var(--fw-900);
                        line-height: var(--lh-16);
                        text-align: center;
                        color: var(--black);
                        margin-bottom: 10px;
                    }

                    .price {
                        color: var(--black);
                        font-size: var(--22to35);
                        font-family: var(--ff-mplus);
                        font-weight: var(--fw-800);
                        letter-spacing: -0.01em;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-bottom: var(--p60-spa);

                        .tax {
                            font-size: var(--14to20);
                            font-weight: var(--fw-800);
                            display: block;
                            margin-left: 5px;
                        }
                    }

                    .size {
                        font-size: var(--12to16);
                        color: var(--black);
                        text-align: center;
                        position: absolute;
                        bottom: 5.2vw;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 100%;
                    }
                }
            }
        }

        .wrap2 {
            margin-top: var(--p120-spa);
            background-color: #fff;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding: var(--p100-spa) var(--p120-spa) var(--p120-spa);
            border-radius: var(--p50-spa);
            border: 4px solid var(--black);

            .info {
                width: 53%;

                .ttl-img {
                    width: 100%;
                    margin-bottom: var(--p50-spa);

                    img {
                        width: 100%;
                    }
                }

                .sub-ttl {
                    font-size: var(--20to36);
                    line-height: var(--lh-16);
                    font-family: var(--ff-mplus);
                    font-weight: var(--fw-900);
                    margin-bottom: var(--p20-spa);
                }

                .texts {
                        font-size: var(--14to24);
                        line-height: var(--lh-22);
                        letter-spacing: var(--lsp-40);
                        margin-bottom: var(--p20-spa);
                    }

                .caption {
                        font-size: var(--12to18);
                        color: var(--m-gray);
                        font-weight: var(--fw-500);
                    }
            }

            .slides2 {
                width: 36%;
                .inner {
                    a {
                        .slides {
                            border-radius: var(--p30-spa);
                            border: 4px solid var(--black);
                            background-color: #fff;
                            margin-bottom: var(--p30-spa);
                            aspect-ratio: 38 / 47;
                            overflow: hidden;
                            margin-bottom: var(--p30-spa);

                            div {
                            overflow: hidden;
                            height: 100%;

                            > ul {
                                height: 100%;

                                li {
                                    img {
                                        width: 100%;
                                    }
                                }

                                .slick-slide {
                                    overflow: hidden;
                                }

                                .slick-dots {
                                    bottom: var(--p30-spa);

                                    li.slick-active button:before {
                                        color: var(--black);
                                    }

                                    li {
                                        width: 20px;
                                        height: 20px;
                                        margin: 0;

                                        button {
                                            line-height: 0;
                                            width: 10px;
                                            height: 10px;
                                            padding: 5px;

                                            &::before {
                                                opacity: 1;
                                                font-size: 40px;
                                                top: 0;
                                                left: 0;
                                                color: var(--m-gray);
                                            }
                                        }
                                    }
                                }
                            }

                            .slick-dotted.slick-slider {
                                border-radius: 20px;
                                overflow: hidden;
                            }
                        }

                        }

                        h4 {
                            font-size: var(--14to24);
                            margin-bottom: 10px;
                            text-align: center;
                            font-weight: var(--fw-900);
                        }

                        .price {
                            font-size: var(--22to35);
                            font-family: var(--ff-mplus);
                            font-weight: var(--fw-800);
                            letter-spacing: -0.01em;
                            margin-bottom: 10px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                        }

                        .tax {
                            font-size: var(--14to20);
                            font-weight: var(--fw-800);
                            display: block;
                            margin-left: 6px;
                        }

                        .size {
                            font-size: var(--12to16);
                            letter-spacing: var(--lsp-50);
                            margin-bottom: 25px;
                            text-align: center;
                        }
                    }
                }
            }
        }

        /* buyボタン共通 */
        .wrap .inner a .buy,
        .wrap2 .inner a .buy {
            background-color: var(--black);
            font-size: var(--14to24);
            color: #fff;
            font-family: var(--ff-mplus);
            padding: 1.2vw;
            border-radius: 50px;
            width: 13vw;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
            /* ↓ボタン公開時、opacity: 1;に変更をしてください */
            /* opacity: 0; */
        }
    }

}

@media screen and (max-width:1200px) {
    .item {
        .item-dsg {
            .wrap {
                .inner {
                    a {
                        .slides {
                            border: 3px solid var(--black);
                            div {
                                > ul {
                                    .slick-dots {
                                        li {
                                            button {
                                                &::before {
                                                    top: -10px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            .wrap2 {
                .slides2 {
                    .inner {
                    a {
                        .slides {
                            border: 3px solid var(--black);
                            div {
                                > ul {
                                    .slick-dots {
                                        li {
                                            button {
                                                &::before {
                                                    top: -10px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                }
            }
        }
    }
}

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

    .item {
        padding-top: 51vw;

        h2 {
            top: -31.6vw;
        }

        .c-wrapper {
            padding-bottom: 69.3vw;
            &::before {
                display: none;
            }

            &::after {
                width: 73.3vw;
                max-width: none;
                min-width: 275px;
                height: 42.6vw;
                max-height: none;
                min-height: 160px;
                bottom: 18vw;
                left: 50%;
                transform: translateX(-50%);
            }
        }

        .s-wrapper {
            padding-bottom: 70.6vw;
            padding-top: 16.4vw;

            &::before {
                background-image: url(../images/s-wrapper_top_sp.png);
                height: 13vw;
                top: -11.5vw;
            }

            &::after {
                width: 22.3vw;
                max-width: none;
                min-width: 65px;
                height: 15.2vw;
                max-height: none;
                min-height: 131px;
                top: -13.5vw;
                right: 37.4vw;
            }

            .s-dsg {
                &::after {
                    background-image: url(../images/s-wrapper-deco2_sp.png);
                    width: 80vw;
                    max-width: none;
                    min-width: 300px;
                    height: 56vw;
                    max-height: none;
                    min-height: 210px;
                    left: 0;
                    bottom: -53.5vw;
                }

                .wrap {
                    .inner {
                        a {
                            .buy {
                                border: 1px solid #fff;
                            }
                        }
                    }
                }
            }
        }

        .item-dsg {
            width: 86.6vw;

            .ttl {
                margin-bottom: var(--p50-spa);

                h3 {
                    line-height: var(--lh-14);
                    margin-bottom: var(--p25-spa);
                }
            }

            .wrap {
                grid-template-columns: 1fr 1fr;
                gap: var(--p50-spa) var(--p20-spa);
                padding-bottom: var(--p60-spa);

                .inner {
                    max-width: none;
                    min-width: 152px;

                    a {
                        .slides {
                            border-radius: var(--p10-spa);
                            border: 2px solid var(--black);
                            margin-bottom: var(--p20-spa);

                            div {
                                > ul {
                                    .slick-dots {
                                        bottom: 0;

                                        li {
                                            button {
                                                &::before {
                                                    font-size: 30px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }

                        .size {
                            bottom: 14.2vw;
                        }

                        .price {
                            margin-bottom: var(--p45-spa);
                        }
                    }
                }
            }

            .wrap .inner a .buy,
            .wrap2 .inner a .buy {
                min-width: auto;
                width: 100%;
                padding: 3.4vw;
            }

            .wrap2 {
                padding: var(--p100-spa) var(--p25-spa) var(--p60-spa);
                border-radius: var(--p20-spa);
                border: 2px solid var(--black);
                flex-direction: column;
                position: relative;

                .info {
                    width: 100%;
                    margin-bottom: var(--p20-spa);

                    .ttl-img {
                        width: 73.3vw;
                        min-width: 275px;
                        margin-bottom: 0;
                        position: absolute;
                        left: 50%;
                        top: -16vw;
                        transform: translateX(-50%);
                    }

                    .sub-ttl {
                        text-align: center;
                    }

                    .caption {
                        line-height: var(--lh-18);
                    }
                }

                .slides2 {
                    width: 45vw;
                    margin-left: auto;
                    margin-right: auto;

                    .inner {
                    max-width: none;
                    min-width: 152px;

                    a {
                        .slides {
                            border-radius: var(--p10-spa);
                            border: 2px solid var(--black);
                            margin-bottom: var(--p20-spa);

                            div {
                                > ul {
                                    .slick-dots {
                                        bottom: 0;

                                        li {
                                            button {
                                                &::before {
                                                    font-size: 30px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }

                        .size {
                            bottom: 14.2vw;
                        }

                        .price {
                            margin-bottom: var(--p5-spa);
                        }
                    }
                }
                }
            }
        }
    }

}

@media screen and (max-width:500px) {
    .item {

        h2 {
            top: -32.4vw;
        }

        .s-wrapper {
            &::after {
                top: -23.5vw;
            }
        }

        .item-dsg {
            .wrap {
                .inner {
                    a {
                        .slides {
                            div {
                                > ul {
                                    .slick-dots {
                                        li {
                                            width: 10px;
                                            button {
                                                width: 10px;
                                                height: 10px;
                                                &::before {
                                                    font-size: 20px;
                                                    width: 10px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            .wrap2 {
                .slides2 {
                    .inner {
                    a {
                        .slides {
                            div {
                                > ul {
                                    .slick-dots {
                                        li {
                                            width: 10px;
                                            button {
                                                width: 10px;
                                                height: 10px;
                                                &::before {
                                                    font-size: 20px;
                                                    width: 10px;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                }
            }
        }
    }
}

/* information */

.information {
    position: relative;
    padding-top: 22.8vw;
    padding-bottom: 17.7vw;

    h2 {
        position: absolute;
        left: 0;
        top: -8.2vw;
    }

    .wrap {
        background-color: #fff;
        border: 4px solid var(--black);
        border-radius: var(--p50-spa);
        padding: var(--p120-spa) 8vw var(--p140-spa);

        .inner {
            margin-bottom: var(--p80-spa);
            padding-bottom: var(--p100-spa);
            border-bottom: 5px dotted var(--l-black);

            &:last-child {
                border-bottom: none;
                margin-bottom: 0;
                padding-bottom: 0;
            }

            li {
                text-indent: -1.5em;
                padding-left: 1.5em;
                font-size: var(--14to20);
                margin-bottom: var(--p35-spa);
                line-height: var(--lh-22);

                &::before {
                    content: "※";
                    margin-right: var(--p10-spa);
                }

                &:last-child {
                    margin-bottom: 0;
                }
            }

            h3 {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                margin-bottom: var(--p50-spa);
                font-size: var(--18to35);
                font-weight: var(--fw-900);
                color: var(--orange);
                font-family: var(--ff-mplus);
                position: relative;
                padding-left: var(--p50-spa);

                &::before {
                    content: "";
                    display: block;
                    width: 1.3vw;
                    max-width: 25px;
                    height: 1.3vw;
                    max-height: 25px;
                    background-color: var(--orange);
                    border-radius: 50%;
                    position: absolute;
                    top: calc(50% - 0.65vw);
                    left: 0;
                }
            }

            .lists {
                margin-bottom: var(--p60-spa);

                ul {
                    margin-bottom: var(--p45-spa);
                    
                    .orange {
                        font-weight: var(--fw-900);
                    } 
                }

                .info-btn {
                    width: 29.7vw;
                    margin-right: auto;
                    margin-left: 0;

                    a {
                        padding: var(--p40-spa);
                        font-size: var(--16to24);
                        line-height: var(--lh-16);
                    }
                }
            }

            .texts {
                    li {
                        font-size: var(--14to20);
                        line-height: var(--lh-22);
                    }
            }
        }
    }
}

@media screen and (max-width:1200px) {
    .information {
        .wrap {
            .inner {
                .lists {
                    .info-btn {
                    width: 45vw;
                }
            }
        }
    }
    }
}

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

    .information {
        padding-top: 47.8vw;
        padding-bottom: 30.1vw;

        .wrap {
            border: 2px solid var(--l-black);
            border-radius: var(--p20-spa);
            padding: var(--p40-spa) 6vw var(--p60-spa);

            .inner {
                padding-bottom: var(--p40-spa);
                margin-bottom: var(--p40-spa);

                h3 {
                    margin-bottom: var(--p20-spa);
                    padding-left: 6.6vw;
                    line-height: var(--lh-16);

                    &::before {
                        width: 4vw;
                        height: 4vw;
                        top: calc(50% - 2vw);
                    }
                }

                li {
                    margin-bottom: var(--p15-spa);
                    letter-spacing: var(--lsp-20);

                    &::before {
                        margin-right: var(--p5-spa);
                    }
                }

                .lists {
                    margin-bottom: var(--p40-spa);
                    ul {
                        margin-bottom: var(--p30-spa);
                    }

                    .info-btn {
                        width: 100%;
                        max-width: none;

                        a {
                            padding: 4.8vw;
                        }
                    }
                }
            }
        }
    }

}

/* about */

.about {
    position: relative;
    padding-top: 20.7vw;

    h2 {
        position: absolute;
        top: -10vw;
        left: 0;
    }

    .catch {

        padding-bottom: 9.5vw;

        p {
            width: 85.6vw;
            margin-left: auto;
            margin-right: auto;

            img {
                width: 100%;
            }
        }
    }

    .story {
        .story-wrapper_pc {
            position: relative;
            background-color: var(--cream);
            padding-top: 6.6vw;
            padding-bottom: 6.6vw;
            position: relative;

            &::before,
            &::after {
                content: "";
                display: block;
                background-size: contain;
                background-repeat: no-repeat;
                width: 100%;
                position: absolute;
                left: 0;
            }

            &::before {
                background-image: url(../images/about-upper.png);
                height: 8.6vw;
                top: -8.2vw;
            }

            &::after {
                background-image: url(../images/about-lower.png);
                height: 10vw;
                bottom: -9.7vw;
            }

            h3 {
                position: absolute;
                top: -9vw;
                left: 50%;
                transform: translateX(-50%);

                img {
                    width: 36.4vw;
                }
            }

            .story-wrap.pc-view {
                width: 80vw;
                margin-left: auto;
                margin-right: auto;
                display: flex;
                align-items: center;
                justify-content: space-between;

                .chara1 {
                    width: 11.6vw;
                }

                .chara2 {
                    width: 10.2vw;
                }

                .desc {
                    width: 48vw;
                    text-align: center;

                    p {
                        font-size: var(--16to30);
                        line-height: var(--lh-21);
                        font-family: var(--ff-mplus);
                        margin-bottom: var(--p80-spa);

                        &:last-child {
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }

        .official.pc-view {
            padding-top: 12vw;
            padding-bottom: var(--p140-spa);

            p {
                font-size: var(--18to32);
                font-family: var(--ff-mplus);
                font-weight: var(--fw-900);
                line-height: var(--lh-21);
                text-align: center;
                margin-bottom: var(--p80-spa);

                .orange {
                    font-weight: var(--fw-900);
                }
            }
        }
    }

}

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

    .about {
        padding-top: 48vw;
        h2 {
            top: -14vw;
        }

        .catch {
            padding-bottom: 21.5vw;

            p {
                width: 90.6vw;
            }
        }

        .story-wrapper_sp {
            position: relative;
            background-color: var(--cream);
            padding-top: 28.8vw;
            padding-bottom: 19vw;
            position: relative;

            &::before,
            &::after {
                content: "";
                display: block;
                background-size: contain;
                background-repeat: no-repeat;
                width: 100%;
                position: absolute;
                left: 0;
            }

            &::before {
                background-image: url(../images/about-upper_sp.png);
                height: 14vw;
                top: -8.2vw;
            }

            &::after {
                background-image: url(../images/about-lower_sp.png);
                height: 14vw;
                bottom: -12vw;
            }

            h3 {
                position: absolute;
                top: -12vw;
                left: 50%;
                transform: translateX(-50%);
                width: 73.3vw;
            }

            .story-wrap {
                width: 86.6vw;
                margin-left: auto;
                margin-right: auto;

                .desc {
                    text-align: center;

                    p {
                        font-family: var(--ff-mplus);
                        margin-bottom: var(--p30-spa);
                        line-height: var(--lh-20);

                        &:last-child {
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }

        .official {
            padding-top: 20vw;
            padding-bottom: var(--p50-spa);
            padding-left: var(--p25-spa);
            padding-right: var(--p25-spa);

            p {
                font-size: var(--18to32);
                font-family: var(--ff-mplus);
                font-weight: var(--fw-900);
                line-height: var(--lh-16);
                text-align: center;
                margin-bottom: var(--p30-spa);

                    .orange {
                    font-weight: var(--fw-900);
                }
            }

            .info-btn {
                margin-bottom: var(--p35-spa);
                width: 73.3vw;

                a {
                    padding: 4.8vw;
                }
            }

            .characters {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 9.6vw;
                
                .chara1 {
                    width: 34.6vw;
                    min-width: 130px;
                }

                .chara2 {
                    width: 29vw;
                    min-width: 109px;
                }
            }
        }
    }

}

footer {
    .pokemon-wrap {
        background-color: #fff;
        padding: var(--p80-spa) 0 var(--p80-spa);

        .logo {
            margin-bottom: var(--p45-spa);

                    img {
                    width: 17.5vw;
                    max-width: 337px;
                    margin-left: auto;
                    margin-right: auto;
                }
        }

        .copy {
            font-size: var(--12to16);
            text-align: center;
        }
    }

    .threecoins-wrap {
        background-color: var(--black);
        padding: var(--p100-spa) 0 var(--p120-spa);
        color: #fff;

        .logo {
            margin-bottom: var(--p50-spa);

            a {
                width: fit-content;
                margin-left: auto;
                margin-right: auto;

                img {
                    width: 10vw;
                    max-width: 193px;
                }
            }
        }

        .wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--p60-spa);

            li {
                margin-left: var(--p30-spa);
                margin-right: var(--p30-spa);

                &:nth-child(1) {
                    a {
                        img {
                            width: 2.8vw;
                            max-width: 54px;
                        }
                    }
                }
                &:nth-child(2),
                &:nth-child(3) {
                    a {
                        img {
                            width: 3.1vw;
                            max-width: 60px;
                        }
                    }
                }
            }
        }

        .copy {
            text-align: center;
            font-size: var(--12to16);
        }

    }
}

.banner-wrap {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 2vw;
    transition: 0.3s;
    opacity: 0;

    .gototop {
        transform: translateY(3px);
        a {
            width: 4.6vw;
            height: 4.6vw;
            max-width: 90px;
            max-height: 90px;
            min-width: 60px;
            min-height: 60px;
            margin-left: auto;
        }
    }

    .banner {
        position: relative;
        transition: 0.3s;

        .close {
            position: absolute;
            top: -1.2vw;
            left: -1.6vw;
            width: var(--p60-spa);
            height: var(--p60-spa);
            cursor: pointer;
        }

        .bnr-img {
            a {
                img {
                    width: 23.4vw;
                }
            }

            .noevents {
                pointer-events: none;
            }
        }
    }

    .banner.hide {
        opacity: 0;
        transition: 0.3s;
    }
}

.banner-wrap.show {
    opacity: 1;
    transition: 0.3s;
}





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

    footer {
        .pokemon-wrap {
            padding: var(--p40-spa) 0 var(--p50-spa);

            .logo {
                margin-bottom: var(--p20-spa);
                    img {
                        width: 50vw;
                        min-width: 188px;
                    }
            }

            .copy {
                line-height: var(--lh-20);
            }
        }

        .threecoins-wrap {
            padding: var(--p50-spa) var(--p60-spa);

            .logo {
                margin-bottom: var(--p30-spa);
                img {
                    width: 33vw;
                    min-width: 123px;
                }
            }

            .wrap {
                margin-bottom: var(--p30-spa);
                li {
                    margin-left: var(--p15-spa);
                    margin-right: var(--p15-spa);

                    &:nth-child(1) {
                        a {
                            img {
                                width: 8vw;
                                min-width: 30px;
                            }
                        }
                    }
                    &:nth-child(2),
                    &:nth-child(3) 
                     {
                        a {
                            img {
                                width: 9.3vw;
                                min-width: 35px;
                            }
                        }
                    }
                }
            }
        }
    }

    .banner-wrap {
        bottom: 0;

        .gototop {
            a {
                width: 13.3vw;
                height: 13.3vw;
                min-width: 50px;
                min-height: 50px;
            }
        }

        .banner {
            transform: translateY(0);
            .close {
                width: 10.6vw;
                height: 10.6vw;
                top: -5.3vw;
                left: 6.6vw;
            }

            .bnr-img {
                a {
                    img {
                        width: 100%;
                    }
                }
            }
        }

        .banner.hide {
        opacity: 1;
        display: none;
        transition: 0.3s;
    }
    }

.banner-wrap.show {
    opacity: 1;
    display: block;
    transition: 0.3s;
}
    

}