.shopLogo {
    width: 250px;
}

section h1 {
    width: 100%;
    text-align: center;
    line-height: 1.2em;
    margin: 0;
}

/*Section1*/
.section1 {
    height: 100vh;
    background: url(../images/pmp/bg01.png) no-repeat top center;
    background-size: cover;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section1Content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.bgText {
    width: 60%;
    position: absolute;
    top: 35%;
    left: 20%;
    z-index: 0;
}

.aMobile {
    width: 18vw;
    position: relative;
    z-index: 1;
    margin: -36% auto 0 auto;

}

.aMobile:before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    position: absolute;
    right: -10px;
    bottom: -10px;
    border-radius: 50px;
    z-index: 0;
    filter: blur(4px);
}

.aMobileContent {
    width: 100%;

    mask-image: url(../images/ads/mask.png);
    mask-size: 99% 99%;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url(../images/ads/mask.png);
    -webkit-mask-size: 99% 99%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;

    line-height: 0;
    margin: 0;
    padding: 0;
    /* background: var(--Black); */

}

.aMobile img {
    width: 100%;
    position: relative;
    line-height: 0;
    margin: 0;
    padding: 0;
    z-index: 4;
}

.aMobile video {
    width: 90%;
    position: absolute;
    top: 2%;
    left: 5%;
    z-index: 3;
    line-height: 0;
    margin: 0;
    padding: 0;
    background: var(--Black);
}


.section1Content h4 {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.section1Content h4+p {
    color: var(--Gray02);
}

/*Section2*/
.section2 {
    padding: 100px 0;
    background: url(../images/pmp/bg02.png) no-repeat bottom center;
    background-size: cover;
}

.bgImg {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.section2 .w1280 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 100px;
}

.aBlock05 {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.aBlock05 img {
    width: 50%;
}

.text01 {
    width: 100%;
    color: var(--Green);
    background: #1A2620;
    border: 1px solid var(#22322A);
    border-radius: 35px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5em;
    text-align: center;
}

.aBlock05 i {
    color: var(--Green);
}

.aBlock05 p {
    line-height: 1.8em;
}

/*Section3*/
.section3 {
    padding: 100px 0;
    color: var(--Black);
    background: var(--White);
    text-align: center;
}

.section3 p {
    margin-top: 30px;
}

.section3 div {
    width: 100%;
}

.section3 .w1280 {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 0;
}

.section3 img {
    width: 200px;
}

.section3 img:nth-child(3),
.section3 img:nth-child(5) {
    width: 100px;
    margin-right: 50px;
}

/*Section4*/
.section4 {
    background: var(--White);
    color: var(--Black);
    padding: 100px 0;
}

.section4 h1 {
    margin-bottom: 50px;
}

.accordion {
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    position: relative;
    z-index: 0;
    transition: .5s;
}

.accordion>* {
    overflow: hidden;
}

.accordion:before {
    content: '';
    width: 100%;
    height: 10vh;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 1) 80%);
}

.accordion.active {
    grid-template-rows: 1fr;
    transition: .5s;
}

.accordion.active:before {
    z-index: -1;
}

.accordionContent {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 0;
}

.accordionContent img {
    width: calc(100% / 8);
}

.section4 .btn {
    width: fit-content;
    margin: 0 auto;
}

.section4 .btn i {
    margin-right: 10px;
}

.accordionBtn.active i {
    transform: rotate(180deg);
}

.bgImg02 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/*Section5*/
.section5 img {
    width: 100%;
}

/*Section6*/
.section6 {
    min-height: 100vh;
    padding: 100px 0;
    background: var(--White);
    color: var(--Black);
    z-index: 0;
}

.section6 h1 {
    position: relative;
    z-index: 2;
}

.section6:before {
    content: '';
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.section6:after {
    content: '';
    background: rgb(255, 255, 255);
    background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    width: 20%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.swiper {
    width: 100%;
    z-index: 0;
}

.swiper-slide img {
    display: block;
}

.mySwiper {
    width: 100%;
    height: 35vw;
    margin-top: 50px;
}

.mySwiper .swiper-slide {
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.mySwiper .aMobile {
    width: 12vw;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    transition: .3s;
}

.mySwiper .swiper-slide:nth-child(odd) .aMobile {
    transform: translateY(10%);

}

.mySwiper .swiper-slide:nth-child(even) .aMobile {
    transform: translateY(-10%);

}


.aMobile .mainContent {
    width: 95%;
    position: absolute;
    top: 0%;
    left: 2.5%;
    z-index: 3;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.mySwiper .aMobile:before {
    left: 0;
    top: 5px;
    border-radius: 20px;
    transition: .3s;
}

.mySwiper .aMobile .mobileCover {
    opacity: 0;
    transition: .3s;
}


.mySwiper .swiper-slide-thumb-active .aMobile {
    transform: scale(1.6) translateY(0%) !important;
    transition: .3s;
}

.mySwiper .swiper-slide-thumb-active .aMobile:before {
    left: 10px;
    bottom: 10px;
    border-radius: 50px;
    transition: .3s;
}

.mySwiper .swiper-slide-thumb-active .mobileCover {
    opacity: 1;
    transition: .3s;
}

.mySwiper2 {
    width: 40%;
    height: fit-content;
    padding:  50px 50px ;
}

.mySwiper2 .swiper-slide {
    width: 100%;
    height: fit-content;
    padding: 20px 20px;
    background: var(--White);
    border-radius: 20px 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: .5s;
    opacity: 0 !important;
    pointer-events: none;

}

.mySwiper2 .swiper-slide-active {
    opacity: 1 !important;
    transition: .5s;
}

.swiper-slide img {
    display: block;
}

.slideInfo {
    width: 70%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.slideInfo h3,
.slideInfo h5 {
    width: 100%;
}

.slideInfo .btn {
    font-size: 10px;
    width: fit-content;
    margin-right: 10px;
    margin-top: 10px;
}

.mySwiper2 .swiper-slide img {
    width: 30%;
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    width: 20px;
    height: 20px;
    background: var(--Black);
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 10px;
    font-weight: bold;
}

.swiper-button-prev01 {
    top: 30px;
    bottom: auto;
    left: 35%;
    right: auto;
}

.swiper-button-next01 {
    top: 30px;
    bottom: auto;
    right: 35%;
    left: auto;
}
.swiper-pagination01{
    bottom: auto !important;
    top: 12.5px !important;
}


/*Section7*/
.section7 {
    padding: 100px 0;
    background: var(--White);
    color: var(--Black);
}

.mySwiper3 {
    width: 100%;
    margin-top: 50px;
    text-align: center;
    padding: 0 30px;
}

.mySwiper3 .swiper-slide p {
    width: fit-content;
    margin: 0 auto;
    padding: 5px 10px;
}

.mySwiper3 .swiper-slide-thumb-active p {
    border-bottom: 4px solid var(--Green);
}

.mySwiper3 .swiper-button-next,
.mySwiper3 .swiper-button-prev {
    background: transparent;
    top: 27px;
}

.mySwiper3 .swiper-button-next:after,
.mySwiper3 .swiper-button-prev:after {
    font-weight: bold;
}

.mySwiper4 {
    width: 100%;
    margin-top: 50px;
    /*padding-bottom: 50px;*/
    position: relative;
}

.swiper .accordionContent {
    gap: 0;
}

.mySwiper5,
.mySwiper6 {
    width: 100%;
    position: relative;
    padding-bottom: 50px;
}

.swiper-button-prev02,
.swiper-button-prev04 {
    top: auto !important;
    bottom: 2px !important;
    left: 35vw !important;
    right: auto !important;
}

.swiper-button-next02,
.swiper-button-next04 {
    top: auto !important;
    bottom: 2px !important;
    left: auto !important;
    right: 35vw !important;
}


/*////RWD////*/
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {
    .mySwiper2 {
        width: 50%;
    }

    .mySwiper {
        height: 30vw;
    }
}

@media (orientation:landscape) and (max-width:1050px) {}

@media (orientation:portrait) and (max-height: 1180px) {
    .bgText {
        width: 80%;
        top: 25%;
        left: 10%;
    }

    .aMobile {
        width: 30vw;
        position: relative;
        z-index: 1;
        margin: -36% auto 0 auto;
    }

    .section1Content h3 {
        margin-top: 30px;
    }

    .section1Content h4 {
        margin-top: 10px;
    }

    .section2 .w1280 {
        gap: 50px;
    }

    .aBlock05 {
        width: 25%;
    }

    .section3 img {
        width: 150px;
    }

    .section3 img:nth-child(3),
    .section3 img:nth-child(5) {
        width: 50px;
        margin-right: 40px;
    }

    .mySwiper {
        height: 42vw;
    }

    .mySwiper2 {
        width: 70%;
    }
}

@media (orientation:portrait) and (max-height: 1024px) {}

@media screen and (max-width:640px) {
    .bgText {
        width: 90%;
        left: 5%;
    }

    .aBlock05 {
        width: 50%;
    }

    .aMobile {
        width: 50vw;
        position: relative;
        z-index: 1;
        margin: -40% auto 0 auto;
    }

    .section3 .w1280 {
        padding: 0 30px;
        flex-direction: column;
        gap: 50px;
    }

    .section3 img {
        width: 65vw;
        margin-left: 21%;
    }

    .section3 img:nth-child(3),
    .section3 img:nth-child(5) {
        width: 100px;
        margin: 0;
        transform: rotate(90deg);
    }

    .accordionContent img {
        width: calc(100% / 3.2);
    }

    .mySwiper {
        height: 42vw;
    }

    .mySwiper2 {
        width: 90%;
        padding: 50px 10px;
    }

    .slideInfo {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .mySwiper2 img {
        display: none;
    }

    .mySwiper {
        height: 88vw;
        margin-top: 20px;
    }

    .mySwiper .swiper-slide {

        padding: 0 10px;
    }

    .mySwiper .aMobile {
        width: 15vw;
    }

    .mySwiper .aMobile:before {

        border-radius: 5px;
    }

    .mySwiper .swiper-slide-thumb-active .aMobile:before {
        left: 5px;
        bottom: 5px;
        border-radius: 10px;
    }

    .mySwiper .swiper-slide-thumb-active .aMobile {
        transform: scale(2.5) translateY(0%) !important;
    }

    .swiper-button-prev01 {

        left: 30%;
    }

    .swiper-button-next01 {

        right: 30%;
    }

    .section6:before {

        width: 15%;
    }

    .section6:after {

        width: 15%;
    }

    .swiper-button-prev02 {
        left: 20vw !important;
    }

    .swiper-button-next02 {
        right: 20vw !important;
    }

    .swiper .accordionContent img {
        width: calc(100% / 3);
    }

}

/*Iphone XR 414*896 */
@media (orientation: portrait) and (max-width:390px) {}

@media (orientation: portrait) and (max-height:896px) {}

/*Iphone 12Pro 390*844 */
@media (orientation: portrait) and (max-height:844px) {}


/*Iphone 10 375*812 */
@media (orientation: portrait) and (max-width:375px) {}

@media (orientation: portrait) and (max-height:812px) {}


/*Iphone 8Plus 414*736 */
@media (orientation: portrait) and (max-height:736px) {}

/*Iphone 8 375*667 */
@media (orientation: portrait) and (max-height:667px) {}

@media screen and (max-width:360px) {}

@media screen and (max-width:320px) {}