/*Section1*/
#section1 {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#section1 .content {
    width: 92vw;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    background: url(../img/bg01.jpg) no-repeat left center;
    background-size: cover;
}

#scene1 {
    width: 45%;
    height: 80%;

}

#scene1 div {
    width: 100%;
    height: 100%;
    position: relative;
}

.logo {
    width: auto;
    height: 100%;
    display: block;
    margin-right: 10%;

    fill-opacity: 0;

    stroke: var(--Pink);
    stroke-opacity: 1;
    stroke-width: 1px;
}

.logoMain {
    fill-opacity: 1;
    stroke-opacity: 0;
    fill: var(--White);
}

.mainTitle {
    font-size: 25vw;
    position: absolute;
    line-height: 1em;
    transform: scaleY(.5);
    text-align: center;
}

.mainTitle01 {
    left: 10px;
    top: -13vw;
}

.mainTitle02 {
    right: 10px;
    top: -13vw;
}

.mainTitle03 {
    top: -10vw;
}

.number {
    font-size: 30vw;
}

.number .word .char {
    transform: scaleX(1.3);
}

.a .word .char {
    transform: scaleX(1.3);
}


.mainTitle[class*="scrollIn"] [data-char]:after {
    -webkit-animation-name: glitch-switch;
    animation-name: glitch-switch;
}

.reveal--0 [data-char]:after {
    -webkit-animation-iteration-count: calc(var(--char-index) * 0.55);
    animation-iteration-count: calc(var(--char-index) * 0.55);
}

[data-char] {
    color: transparent;
    position: relative;
}

[data-char]:after {
    --txt: attr(data-char);
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: steps(1);
    animation-timing-function: steps(1);
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    content: var(--txt);
    color: var(--Pink);
    font-size: 25vw;
    position: absolute;
    left: 0;
    top: 0;
}

.mainTitle:nth-child(1) .a [data-char]:after {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.mainTitle:nth-child(1) .number [data-char]:after {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.mainTitle:nth-child(2) .w [data-char]:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.mainTitle:nth-child(2) .number [data-char]:after {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.mainTitle03:nth-child(1) .word:nth-child(1) [data-char]:after {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.mainTitle03:nth-child(1) .word:nth-child(3) [data-char]:after {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.mainTitle03:nth-child(2) .word:nth-child(1) [data-char]:after {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.mainTitle03:nth-child(2) .word:nth-child(3) [data-char]:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}


@-webkit-keyframes glitch-switch {
    0% {
        --txt: var(--char-0);
    }

    10% {
        --txt: var(--char-1);
    }

    20% {
        --txt: var(--char-2);
    }

    30% {
        --txt: var(--char-3);
    }

    40% {
        --txt: var(--char-4);
    }

    50% {
        --txt: var(--char-5);
    }

    60% {
        --txt: var(--char-6);
    }

    70% {
        --txt: var(--char-7);
    }

    80% {
        --txt: var(--char-8);
    }

    90% {
        --txt: var(--char-9);
    }

    100% {
        --txt: var(--char-0);
    }
}

@keyframes glitch-switch {
    0% {
        --txt: var(--char-0);
    }

    10% {
        --txt: var(--char-1);
    }

    20% {
        --txt: var(--char-2);
    }

    30% {
        --txt: var(--char-3);
    }

    40% {
        --txt: var(--char-4);
    }

    50% {
        --txt: var(--char-5);
    }

    60% {
        --txt: var(--char-6);
    }

    70% {
        --txt: var(--char-7);
    }

    80% {
        --txt: var(--char-8);
    }

    90% {
        --txt: var(--char-9);
    }

    100% {
        --txt: var(--char-0);
    }
}



/*Section2*/
#section2 {
    width: 100vw;
}

#section2 .content {
    width: 100%;
    position: relative;
    min-height: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calender {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50vh;
    transform: rotate(-5deg);
}

.aDay {
    display: block;
    width: calc(100% / 18);
    border: 1px solid var(--Pink);
    text-align: center;
    line-height: 1em;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;

    height: 0;
    overflow: hidden;
}

.aDay:hover {
    background: var(--Pink);
    color: var(--Yellow);
    cursor: pointer;
}

.calender.is-inview .aDay {
    height: 960px;
    transition: .5s;
}

.calender.is-inview .aDay:nth-child(1) {
    transition-delay: 1.9s;
    border-left: 2px solid var(--Pink);
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(2) {
    transition-delay: 1.8s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(3) {
    transition-delay: 1.7s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(4) {
    transition-delay: 1.6s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(5) {
    transition-delay: 1.5s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(6) {
    transition-delay: 1.4s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(7) {
    transition-delay: 1.3s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(8) {
    transition-delay: 1.2s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(9) {
    transition-delay: 1.1s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(10) {
    transition-delay: 1s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(11) {
    transition-delay: .9s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(12) {
    transition-delay: .8s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(13) {
    transition-delay: .7s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(14) {
    transition-delay: .6s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(15) {
    transition-delay: .5s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(16) {
    transition-delay: .4s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(17) {
    transition-delay: .3s;
    transition-property: height;

}

.calender.is-inview .aDay:nth-child(18) {
    transition-delay: .2s;
    border-right: 2px solid var(--Pink);
    transition-property: height;
}

.aDay_luck {
    height: 60px;
}

.aDay_date,
.aDay_week,
.aDay_time,
.aDay_luck {
    padding: 10px 10px;
    border-bottom: 1px solid var(--Pink);
    color: var(--Pink)
}

.aDay:hover .aDay_date,
.aDay:hover .aDay_week,
.aDay:hover .aDay_time,
.aDay:hover .aDay_luck {
    border-bottom: 1px solid var(--Yellow);
    color: var(--Yellow);
}

.aDay:hover .aDay_title p {
    color: var(--Yellow);
}

.aDay_luck span {
    display: block;
    background: var(--Pink);
    border-radius: 50%;
    color: var(--Yellow);
    width: 33px;
    margin: 0 auto;
    padding: 7px 0;
}

.aDay:hover .aDay_luck span {
    color: var(--Pink);
    background: var(--Yellow);
}

.aDay_title {
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    writing-mode: vertical-lr;
}

.aDay_title p {
    margin-left: 1vw;
    text-align: initial;
    color: var(--Pink);
}

.aDay_title2 p {
    margin-left: 0;
}

/*Section3*/
#section3 {
    width: 100vw;
}

#section3 .content {
    position: relative;
}

.star {
    display: block;
    width: 15vw;
    height: auto;
    margin: 100px auto;
    animation: rotate 4s infinite linear normal forwards;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(364deg);
    }
}

.pinkBG {
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.mask2 {
    position: absolute;
    width: 100%;
    height: 150vh;
    /*End point*/
    top: 50vh;
    /*start point*/
    left: 0;
    z-index: -10;
}

.textBg {
    position: absolute;
    width: 100%;
    top: -32vw;
    left: 0;
    color: var(--Pink);
    font-size: 10vw;
    line-height: 1em;
    transform: scaleY(1.5);
    text-align: center;
    white-space: nowrap;
}

.textBg div {
    margin-left: -20%;
}

.shop {
    width: 70vw;
    height: 50vw;
    position: relative;
    background: var(--Yellow);
    color: var(--Pink);
    font-family: var(--Normal);
    z-index: 1;
    box-shadow: 0 0 10px var(--Pink);

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

.shopContent {
    width: 90%;
    height: 90%;
    border: 40px solid var(--Pink);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 20px 20px;
}

.shopContent a {
    color: var(--Pink);
    display: block;
    cursor: pointer;

    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--Pink);
}

.shopContent a:hover {
    color: var(--Pink);
    -webkit-text-fill-color: var(--Pink);
    -webkit-text-stroke-width: none;
    -webkit-text-stroke-color: transparent;
}

.shopContent p {
    font-size: 3.9vw;
    font-weight: bold;
    line-height: 1em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
}

#scene2 {
    width: 35%;
}

#scene2 div {
    width: 100%;
}

.squareLogo {
    width: 100%;
    height: auto;
    fill: var(--Pink);
    fill-opacity: 0;
    stroke: var(--Pink);
    stroke-width: 1px;
    stroke-opacity: 1;
}

.squareLogo.main {
    stroke-opacity: 0;
    fill-opacity: 1;
}

/* Magnific-Popup */
body.pop {
    background: #ff56b9;
    color: var(--Black);

}

.popSection1 .content {
    width: 100%;

}

.mfp-iframe-holder .mfp-close:before,
.mfp-iframe-holder .mfp-close:after {
    position: absolute;
    left: 29px;
    content: ' ';
    height: 30px;
    width: 5px;
    background-color: var(--Black);
    top: 17px;
}

.mfp-iframe-holder .mfp-close:before {
    transform: rotate(45deg);
    transition: .3s;
}

.mfp-iframe-holder .mfp-close:after {
    transform: rotate(-45deg);
    transition: .3s;
}

.mfp-close:hover:before {
    transform: rotate(65deg);
    transition: .3s;
}

.mfp-close:hover:after {
    transform: rotate(-65deg);
    transition: .3s;
}

.mfp-close {
    text-indent: -9999px;
}

.textDeco {
    width: 50px;
    height: 50px;
    text-align: center;
    font-family: var(--Serif);
    font-weight: bold;
    font-size: 30px;
    border-radius: 50%;
    border: 1px solid var(--Black);
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.textDeco span {
    display: block;
    transform: scaleY(.7);
}

.textDeco01 {
    right: 20px;
    top: 20px;
    z-index: 3;
}

.textDeco02 {
    left: 20px;
    top: 20px;
    z-index: 3;
}

.textDeco03 {
    right: 20px;
    top: calc(100vh - 70px);
}

.textDeco04 {
    left: 20px;
    top: calc(100vh - 70px);
}

.lightBoxTitle::before {
    content: '';
    width: calc(50vw - 120px);
    height: 1px;
    background: var(--Black);
    position: absolute;
    right: 35px;
    top: -40px;
    z-index: 2;
}

.lightBoxTitle::after {
    content: '';
    width: calc(50vw - 120px);
    height: 1px;
    background: var(--Black);
    position: absolute;
    left: 35px;
    top: -40px;
    z-index: 2;
}

.textDeco01::before {
    content: '';
    width: 1px;
    height: calc(100vh - 160px);
    background: var(--Black);
    position: absolute;
    left: 24px;
    top: 60px;
    z-index: 2;
}

.textDeco02::before {
    content: '';
    width: 1px;
    height: calc(100vh - 160px);
    background: var(--Black);
    position: absolute;
    left: 24px;
    top: 60px;
    z-index: 2;
}

.textDeco03::before {
    content: '';
    width: calc(100vw - 160px);
    height: 1px;
    background: var(--Black);
    position: absolute;
    left: calc(-100vw + 150px);
    bottom: 25px;
    z-index: 2;
}

.textDeco03::after {
    content: '';
    width: 100vw;
    height: 90px;
    background: #ff56b9;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.bottomPink {
    content: '';
    width: 100vw;
    height: 70px;
    background: #ff56b9;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.icon {
    fill: var(--Black);
    width: 60px;
    height: auto;
    display: block;
    position: fixed;
    top: 20px;
    left: calc(50% - 30px);
    z-index: 2;
}

.pop a {
    color: var(--Black);
}

.lightBoxTitle {
    position: fixed;
    background: #ff56b9;
    top: 90px;
    left: 45px;
    width: calc(100% - 90px);
    height: 242px;
    border-bottom: 1px solid var(--Black);
    line-height: 1.2em;
    z-index: 2;

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

.lightBoxTitle h1 {
    font-size: 6vw;
    text-align: center;
    text-transform: uppercase;
    transform: scaleY(.7);
    line-height: 1em;

}

.lightBoxTitle h2 {
    line-height: 1.2em;
    padding: 0 20px;
    text-align: center;
}

.lightBoxMain {
    font-family: var(--Normal);
    width: calc(100% - 90px);
    margin: 332px auto 50px auto;
    position: relative;
    z-index: 0;
}

.lightBoxMain .concept {
    padding: 20px 20px;
    border-bottom: 1px solid var(--Black);
    background: #ff56b9;
}

.concept img {
    width: 100%;
    mix-blend-mode: multiply;
}

.textCircle {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    position: relative;
}

.circle {
    width: 100%;
    animation: rotate 4s infinite linear normal forwards;
}

.youtube {
    font-size: 40px;
    position: absolute;
    left: 28px;
    top: 28px;
}

.youtube:hover {
    color: var(--Yellow);
}



.mfp-3d-unfold .mfp-content {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transform: translateX(70vw);
}

.mfp-3d-unfold.mfp-ready .mfp-content {
    opacity: 1;
    transform: translateX(0);
}

.mfp-3d-unfold.mfp-bg,
.mfp-3d-unfold.mfp-ready.mfp-bg {
    opacity: 0;
}

.mfp-3d-unfold.mfp-removing .mfp-content {
    transform: translateX(70vw);
    opacity: 0;
}

.mask {
    width: 100%;
    height: 75vh;
    position: absolute;
    top: -332px;
    left: 0;
    z-index: -10;
}

.designer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
    flex-wrap: nowrap;
    position: relative;
    border-top: 1px solid var(--Black);
}

.designer:nth-child(2) {
    border-top: none;
}

.designer:last-child {
    border-bottom: 1px solid var(--Black);
}

.designerInfo {
    flex-basis: calc(50vw - 45px);
    width: calc(50vw - 45px);
    height: calc(50vw - 45px);
    border-right: 1px solid var(--Black);
    background: #ff56b9;
    line-height: 1.2em;
}

.designerImg {
    flex-basis: calc(50vw - 45px);
    height: calc(50vw - 45px);
    overflow: hidden;
}

.designerInfo_2 {
    flex-basis: calc(70vw - 45px);
    width: calc(70vw - 45px);
    height: calc(70vw - 45px);
}

.designerInfo_3 {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

.designerInfo_2 p {
    width: 100%;
    height: 80%;
    overflow-y: auto;
}

.designerInfo_2 p::-webkit-scrollbar-track {
    background-color: transparent;
}

.designerInfo_2 p::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

.designerInfo_2 p::-webkit-scrollbar-thumb {
    border-radius: 7px;
    background-color: var(--Black);
}

.designerInfo_3:nth-child(2) {
    border-right: none;
}

.designerImg_2 {
    display: block;
    cursor: pointer;
    flex-basis: calc(30vw - 45px);
    height: calc(30vw - 45px);
}

.designerImg_3 {
    height: auto;
}

.deisgnerName {
    width: 100%;
    height: 20%;
    font-size: 4.5vw;
    font-weight: bold;
    font-family: var(--Serif);
    line-height: 1em;
    border-bottom: 1px solid var(--Black);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.deisgnerName_3 {
    height: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.deisgnerName_3:last-child {
    border-bottom: none;
    border-top: 1px solid var(--Black);
}

.deisgnerName_4 {
    height: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
}

.deisgnerName div {
    white-space: nowrap;
    margin-left: -45%;
    line-height: 1em;
}

.deisgnerName_4 div {
    margin-left: 0;
}

.designerInfo_3:nth-child(1) .deisgnerName_4:last-child {
    border-bottom: none;
}

.deisgnerName div span {
    display: inline-block;
    transform: rotate(45deg);
}

.designer:nth-child(2) .deisgnerName div {
    margin-left: 0;
}

.designer:nth-child(2) .deisgnerName_3:first-child div {
    margin-left: -45%;
}

.designer:nth-child(2) .deisgnerName_3:last-child div {
    margin-left: 50%;
}

.designerInfo p {
    padding: 20px 20px;
    font-size: 14px;
}

.designerLogo {
    display: block;
    width: 90%;
    height: 45%;
    margin: 0 auto;
    cursor: pointer;
    text-align: center;
}

.designerLogo img {
    height: 100%;
    transition: .3s;
}

.designerLogo:hover img {
    transform: scale(1.05);
    transition: .3s;
}

/*Opening*/
.designerImg01 {
    background: #ff56b9 url(../img/op/1.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg02 {
    background: #ff56b9 url(../img/op/2.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg03 {
    background: #ff56b9 url(../img/op/3.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg04 {
    background: #ff56b9 url(../img/op/4.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg05 {
    background: #ff56b9 url(../img/op/5.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg06 {
    background: #ff56b9 url(../img/op/6.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg07 {
    background: #ff56b9 url(../img/op/7.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

/*New Breed*/
.designerImg08 {
    background: #ff56b9 url(../img/new/8.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg09 {
    background: #ff56b9 url(../img/op/5.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg10 {
    background: #ff56b9 url(../img/new/10.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

/*Sustainable*/
.designerImg11 {
    background: #ff56b9 url(../img/sustain/11.png) no-repeat center center;
    background-size: contain;
    background-blend-mode: darken;
}

.designerImg12 {
    background: #ff56b9 url(../img/sustain/12.png) no-repeat center center;
    background-size: contain;
    background-blend-mode: darken;
}

.designerImg13 {
    background: #ff56b9 url(../img/sustain/13.png) no-repeat center center;
    background-size: contain;
    background-blend-mode: darken;
}

.designerImg14 {
    background: #ff56b9 url(../img/sustain/14.png) no-repeat center center;
    background-size: contain;
    background-blend-mode: darken;
}

.designerImg15 {
    background: #ff56b9 url(../img/sustain/15.png) no-repeat center center;
    background-size: contain;
    background-blend-mode: darken;
}

.designerImg16 {
    background: #ff56b9 url(../img/sustain/16.png) no-repeat center center;
    background-size: contain;
    background-blend-mode: darken;
}

/*Main*/
.designerImg17 {
    background: #ff56b9 url(../img/main/17.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg18 {
    background: #ff56b9 url(../img/main/18.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg19 {
    background: #ff56b9 url(../img/main/19.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg20 {
    background: #ff56b9 url(../img/main/20.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg020 {
    background: #ff56b9 url(../img/main/020.jpg) no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg21 {
    background: #ff56b9 url(../img/main/21.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg22 {
    background: #ff56b9 url(../img/main/22.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg23 {
    background: #ff56b9 url(../img/main/23.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg24 {
    background: #ff56b9 url(../img/main/24.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg25 {
    background: #ff56b9 url(../img/main/25.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg26 {
    background: #ff56b9 url(../img/main/26.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg27 {
    background: #ff56b9 url(../img/main/27.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg28 {
    background: #ff56b9 url(../img/main/28.jpg) no-repeat top center;
    background-size: cover;
    background-blend-mode: multiply;
}

.designerImg .designerImg {
    width: 100%;
    height: 100%;
}

.designer:nth-child(2) .designerImg img,
.designer:nth-child(2) .designerImg .designerImg {
    transition-delay: 1.5s;
}

.designer:nth-child(3) .designerImg img {
    transition-delay: 2s;
}

.designerImg img,
.designerImg .designerImg {
    width: 100%;
    opacity: 0;
    transition: .5s;
}

.designerImg.is-inview img,
.designerImg.is-inview .designerImg {
    opacity: 1;
    transition: .5s;
    transition-delay: 2s;
}

.bTT {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    font-size: 30px;
    margin: 0 auto 20vh auto;
    position: relative;
    z-index: 1;
    border: 1px solid var(--Black);
    background: var(--Black);
    color: #ff56b9;
}

.bTT:hover {
    background: #ff56b9;
    color: var(--Black);
}

/* End Magnific-Popup */


/*Links*/
.section4 .content {
    padding: 50px 0;
    background: var(--Yellow);
}

.linkTitle {
    font-size: 9vw;
    color: var(--Pink);
    line-height: 1em;
    transform: scaleY(0.6);
    margin-bottom: 25px;
}

.allLinks {
    width: 100%;
}

.allLinks a {
    color: var(--Pink);
}

.aLink {
    cursor: pointer;
    display: flex;
    width: 100%;
    height: 90px;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid var(--Pink);
    font-size: 36px;
    line-height: 1em;
    font-weight: bold;
    padding: 0 50px;
    text-transform: uppercase;
}

.aLink span {
    display: block;
    font-size: 18px;
    font-family: var(--Normal);
    line-height: 1em;
    margin-right: 10px;
}

.aLink p {
    transform: scaleY(0.6);

}

.aLink:first-child {
    border-top: 1px solid var(--Pink);
}

.aLink:hover {
    background: var(--Pink);
    color: var(--Yellow);
}


.eventBtn {
    display: block;
    cursor: pointer;
    position: fixed;
    width: 500px;
    height: 40px;
    line-height: 40px;
    z-index: 15;
    border-radius: 20px 20px;
    border: 2px solid var(--Pink);
    color: var(--Pink);
    font-family: var(--Normal);
    font-weight: bold;
    font-size: 24px;
    background: var(--Yellow);
    right: 60px;
    bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.book {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: var(--Pink);
    background: var(--Yellow);
    border: 2px solid var(--Pink);
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.eventBtn:hover,
.book:hover {
    background: var(--Pink);
    color: var(--Yellow);
}

/*////RWD////*/
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {
    .calender {
        width: 100%;
        margin-left: 3%;
    }
}

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

@media screen and (max-width:1280px) {
    .shopContent p {
        font-size: 3.8vw;
    }

    .mask2 {
        top: 60vh;
    }
}

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

    #section2 .content {
        min-height: 1800px;
    }

    .calender {
        margin-left: 0;
        justify-content: center;
        transform: rotate(0);
    }

    .aDay {
        width: 11%;
        border-top: 5px solid var(--Pink);
        height: auto;
        opacity: 0;
    }

    .aDay_title p {
        margin-left: 9.3%;
    }

    .calender.is-inview .aDay {
        opacity: 1;
        transition: .5s;
    }

    .calender.is-inview .aDay:nth-child(1) {
        order: 10;
        transition-delay: 1.9s;
        border-left: 2px solid var(--Pink);
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(2) {
        order: 11;
        transition-delay: 1.8s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(3) {
        order: 12;
        transition-delay: 1.7s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(4) {
        order: 13;
        transition-delay: 1.6s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(5) {
        order: 14;
        transition-delay: 1.5s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(6) {
        order: 15;
        transition-delay: 1.4s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(7) {
        order: 16;
        transition-delay: 1.3s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(8) {
        order: 17;
        transition-delay: 1.2s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(9) {
        order: 18;
        transition-delay: 1.1s;
        border-right: 2px solid var(--Pink);
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(10) {
        order: 1;
        transition-delay: 1s;
        border-left: 2px solid var(--Pink);
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(11) {
        order: 2;
        transition-delay: 0.9s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(12) {
        order: 3;
        transition-delay: 0.8s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(13) {
        order: 4;
        transition-delay: 0.7s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(14) {
        order: 5;
        transition-delay: 0.6s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(15) {
        order: 6;
        transition-delay: 0.5s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(16) {
        order: 7;
        transition-delay: 0.4s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(17) {
        order: 8;
        transition-delay: 0.3s;
        transition-property: opacity;
    }

    .calender.is-inview .aDay:nth-child(18) {
        order: 9;
        transition-delay: 0.2s;
        border-right: 2px solid var(--Pink);
        transition-property: opacity;
    }

    .aDay_title p {
        margin-left: 3.3vw;
    }

    .aDay_title2 p {
        margin-left: 1.9vw;
    }

}

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

    /*Section1*/
    #section1 {
        height: 100vh;
    }

    .aDay_title p {
        margin-left: 3vw;
    }

    .aDay_title2 p {
        margin-left: 1.1vw;
    }

    #section2 .content {
        min-height: 2000px;
    }

    .shopContent p {
        font-size: 3.6vw;
    }

}

@media (orientation:landscape) and (max-height:800px) {
    /*Section1*/


}

@media (orientation:portrait) and (max-height:1180px) {

    /*Section1*/
    #section1 .content {
        width: 80vw;
        height: 80vh;
        background: url(../img/bg02.jpg) no-repeat center center;
        background-size: cover;


        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    #scene1 {
        width: 40%;
        height: 30%;
        margin-left: 5%;
        margin-top: 5%;
    }


    .mfp-iframe-holder .mfp-content {
        width: 65vw;
    }

    .mainTitle {
        font-size: 30vw;
        top: -15vw;
    }

    .number {
        font-size: 35vw;
    }

    .calender {
        margin-top: 30vh;
    }

    .aRowLogo img {
        margin: 0 20px 20px 0;
    }

    .shopContent p {
        font-size: 3.3vw;
    }

    .mask2 {
        top: 0vh;
    }


}

@media (orientation:portrait) and (max-height:1024px) {
    .shopContent p {
        font-size: 3.2vw;
    }

}

@media screen and (max-width:480px) {
    #section1 .content {

        background: url(../img/bg02.jpg) no-repeat center center;
        background-size: cover;
    }

    /*Section1*/
    #scene1 {
        width: 40%;
        height: 25%;
    }

    .mainTitle {
        font-size: 40vw;
        top: -20vw;
    }

    .mainTitle02 {
        right: -12%;
    }

    #section2 .content {
        min-height: 2500px;
    }

    .aDay {
        width: 16.5%;
    }

    .aDay_title2 p {
        margin-left: 1.1vw;
        line-height: 1em;
    }

    .calender {
        margin-top: 20vh;
    }

    .calender.is-inview .aDay:nth-child(1) {
        order: 13;
        transition-delay: 1.9s;
        border-left: 2px solid var(--Pink);
    }

    .calender.is-inview .aDay:nth-child(2) {
        order: 14;
        transition-delay: 1.8s;
    }

    .calender.is-inview .aDay:nth-child(3) {
        order: 15;
        transition-delay: 1.7s;
    }

    .calender.is-inview .aDay:nth-child(4) {
        order: 16;
        transition-delay: 1.6s;
    }

    .calender.is-inview .aDay:nth-child(5) {
        order: 17;
        transition-delay: 1.5s;
    }

    .calender.is-inview .aDay:nth-child(6) {
        order: 18;
        transition-delay: 1.4s;
        border-right: 2px solid var(--Pink);
    }

    .calender.is-inview .aDay:nth-child(7) {
        order: 7;
        transition-delay: 1.3s;
        border-left: 2px solid var(--Pink);
    }

    .calender.is-inview .aDay:nth-child(8) {
        order: 8;
        transition-delay: 1.2s;
    }

    .calender.is-inview .aDay:nth-child(9) {
        order: 9;
        transition-delay: 1.1s;
        border-right: 1px solid var(--Pink);
    }

    .calender.is-inview .aDay:nth-child(10) {
        order: 10;
        transition-delay: 1s;
        border-left: 1px solid var(--Pink);
    }

    .calender.is-inview .aDay:nth-child(11) {
        order: 11;
        transition-delay: 0.9s;
    }

    .calender.is-inview .aDay:nth-child(12) {
        order: 12;
        transition-delay: .8s;
        border-right: 2px solid var(--Pink);
    }

    .calender.is-inview .aDay:nth-child(13) {
        order: 1;
        transition-delay: 0.7s;
        border-left: 2px solid var(--Pink);
    }

    .calender.is-inview .aDay:nth-child(14) {
        order: 2;
        transition-delay: 0.6s;
    }

    .calender.is-inview .aDay:nth-child(15) {
        order: 3;
        transition-delay: 0.5s;
    }

    .calender.is-inview .aDay:nth-child(16) {
        order: 4;
        transition-delay: 0.4s;
    }

    .calender.is-inview .aDay:nth-child(17) {
        order: 5;
        transition-delay: 0.3s;
    }

    .calender.is-inview .aDay:nth-child(18) {
        order: 6;
        transition-delay: 0.2s;
        border-right: 2px solid var(--Pink);
    }

    /*Section2*/
    .star {
        width: 40vw;
    }

    .mfp-iframe-scaler {
        height: 100%;
        position: relative;
        overflow: inherit;
    }

    .mfp-iframe-holder .mfp-content {
        width: 100vw;
        height: calc(100% - 60px);
    }

    .mfp-3d-unfold.mfp-ready.mfp-bg {
        opacity: 0.8;
    }

    .mfp-content {
        vertical-align: bottom;
        justify-content: center;
    }

    .mfp-iframe-holder .mfp-close {
        top: auto;
        bottom: -60px;
        left: calc(50% - 30px);
    }

    .mfp-iframe-holder .mfp-close:before,
    .mfp-iframe-holder .mfp-close:after {
        left: 28px;
    }

    .lightBoxContent h1 {
        font-size: 8vw;
    }

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

    .mfp-3d-unfold .mfp-content {
        transform: translateX(0) translateY(-100vh);
    }

    .mfp-3d-unfold.mfp-ready .mfp-content {
        transform: none;
    }

    .mfp-3d-unfold.mfp-removing .mfp-content {
        transform: translateX(0) translateY(-100vh);
    }

    button.mfp-close,
    button.mfp-arrow {
        border-radius: 0 0 10px 10px;
    }

    .mask {
        height: 77vh;
        top: -300px;
    }

    .designer {
        flex-wrap: wrap;
    }

    .designerInfo,
    .designerImg {
        flex-basis: calc(100vw - 90px);
        width: calc(100vw - 90px);
        height: calc(100vw - 90px);
        border-right: none;
    }

    .designerInfo_3 {
        height: auto;
    }

    .designerInfo02 {
        height: calc(140vw - 45px);
    }

    .designerInfo_3:nth-child(1) .deisgnerName_4:last-child {
        border-bottom: 1px solid var(--Black);
    }

    .designerInfo_3:nth-child(2) .deisgnerName_4:last-child {
        border-bottom: none;
    }

    .designerImg {
        z-index: 2;
    }

    .designer:nth-child(2) .deisgnerName div {
        margin-left: -45%;
    }

    .deisgnerName_4 div {
        margin-left: 0 !important;
    }

    .deisgnerName {
        font-size: 6.5vw;
    }

    .deisgnerName_4 {
        font-size: 12px;
    }

    .lightBoxTitle {
        height: 210px;
    }

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

    .lightBoxTitle2 h1 {
        font-size: 10vw;
    }

    .lightBoxTitle2 h2 {
        font-size: 24px;
    }

    .lightBoxMain {
        margin: 300px auto 20vh auto;
    }

    .designerImg.is-inview img {
        opacity: 1;
        transition: .5s;
        transition-delay: 1s;
    }

    .designerInfo p {
        font-size: 14px;
    }

    .textCircle {
        width: 70px;
        height: 70px;
    }

    .youtube {
        font-size: 30px;
        position: absolute;
        left: 19px;
        top: 19px;
    }

    .linkTitle {
        font-size: 20vw;
    }

    .aLink {
        height: 80px;
        font-size: 24px;
        padding: 0 20px;
    }

    .textBg {
        font-size: 12vw;
        transform: scaleY(3);
    }

    .eventBtn {
        width: 90%;
        font-size: 14px;
        right: 5%;
        bottom: 20px;
    }

    .shop {
        width: 70vw;
        height: 100vh;
    }

    .shopContent {
        width: 85%;
        height: 95%;
        border: 20px solid var(--Pink);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px 10px;
    }

    #scene2 {
        width: 80%;
        margin-bottom: 30px;
    }

    .shopContent p {
        font-size: 7vw;
    }

    .shopContent a {
        margin-bottom: 30px;
    }

    .mask2 {
        height: 200vh;
        top: 110vh;
    }

    .book {
        bottom: 70px;
    }

}

/*Iphone XR 414*896 */
@media (orientation: portrait) and (max-height:896px) {}

/*Iphone 12Pro 390*844 */
@media (orientation: portrait) and (max-height:844px) {
    .mask {
        height: 60vh;
    }

    .mask2 {
        height: 220vh;
    }

}

@media (orientation: portrait) and (max-width:390px) {}

/*Iphone 10 375*812 */
@media (orientation: portrait) and (max-height:812px) {
    .mask2 {
        height: 250vh;
    }
}

@media (orientation: portrait) and (max-width:375px) {}

/*S23U */
@media (orientation: portrait) and (max-height:746px) {
    .mask {
        height: 72vh;
    }

}

/*Iphone 8Plus 414*736 */
@media (orientation: portrait) and (max-height:736px) {
    .mask {
        height: 85vh;
    }

    .mask2 {
        top: 120vh;
        height: 250vh;
    }

    .shopContent p {
        font-size: 5.5vw;
    }

}

/*Iphone 8 375*667 */
@media (orientation: portrait) and (max-height:667px) {
    .mask {
        height: 78vh;
    }

    .mask2 {
        top: 130vh;
    }

    .lightBoxTitle h2 {
        font-size: 18px;
    }
}

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

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