body{height: 10000px;}

.section{
    position: fixed;
    width: 100%;
    top:100%; left:0;
    box-sizing: border-box;
}

/* 커서 */
.cur{
    width: 22px; height: 18px;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%,-50%);
    z-index: 200;
    pointer-events: none;
    background-image: url(img/heart.png);
    background-size: cover;
}
.cur.play{
    width: 38px; height: 28px;
    background-image: url(img/click.png);
}
.cur.close{
    width: 25px; height: 34px;
    background-image: url(img/x.png);
}
.cur.scale{
    width: 300px; height:300px;
    border-radius: 50%;
    background-color: white;
    background-image: none;
    mix-blend-mode: overlay;
    transition: 0.5s;
}
.cur.star{
    width: 32px; height: 32px;
    background-image: url(img/stars.png);
}
/* 1 */
.section1{
    padding: 50px;
    height: 100vh; color: white;
    top:0;

}
.section1 .img-box{
    height: 100%;    display: flex;
    justify-content: center;
    align-items: center;
}

/* 2 */
.section2{
    padding: 50px;
    background-color: rgba(239, 194, 215, 0.8);
    height: auto;
}
.section2 .group{
    display: flex;
}
.section2 .group img{
    filter: drop-shadow(5px 5px #111);
}
.section2 .barbie .img2{
    position: absolute;
    top: 30%; left: 30%;
    width: 30px;
    display: none;
}
.section2 .barbie.baract img{
    filter: drop-shadow(5px 5px var(--color-bar));
    transform: rotate(10deg) scale(1.1);
}
.section2 .barbie.baract .img2{
    display: block;
}
.section2 .barbie.baract h3{
    animation: move1 1s;
    box-shadow: 5px 5px var(--color-bar);
    background-color: rgb(255, 130, 151);
}
.section2 .barbie.baract .text1 p{
    animation: move1 1s;
    box-shadow: 5px 5px var(--color-bar);
}
.section2 .barbie.baract .text2{

    box-shadow: 5px 5px var(--color-bar);
}
@keyframes move1{
    0%{right:100%; opacity: 0;}
    100%{right:15%; opacity: 1;}
}
@keyframes move2{
    0%{right:50%; opacity: 0;}
    100%{right:0%; opacity: 1;}
}


.section2 .ken .img2{
    position: absolute;
    top: 10%; right: 20%;
    width: 30px;
    display: none;
}
.section2 .ken.kenact img{
    filter: drop-shadow(5px 5px var(--color-ken));
    transform: rotate(10deg) scale(1.1);
}
.section2 .ken.kenact .img2{
    display: block;
}
.section2 .ken.kenact h3{
    animation: move3 1s;
    background-color: rgb(131, 189, 255) !important;
    box-shadow: 5px 5px var(--color-ken);
}
.section2 .ken.kenact .text1 p{
    animation: move3 1s;
    box-shadow: 5px 5px var(--color-ken);
}
.section2 .ken.kenact .text2{
    animation: move4 1s;
    box-shadow: 5px 5px var(--color-ken);
}
@keyframes move3{
    0%{left:100%; opacity: 0;}
    100%{left:0%; opacity: 1;}
}
@keyframes move4{
    0%{left:50%; opacity: 0;}
    100%{left:0%; opacity: 1;}
}



.section2 .item1{
    width: 30%;
}
.section2 .item2{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section2 .ken .item2{
    align-items: flex-end;
}

.section2 .text1{
    transform: rotate(-10deg);
    position: absolute;
    top: 20%; left: 0;
    z-index: 1;
}
.section2 .text1 h3{
    background-color: var(--color-bar);
    color:white;
    width: fit-content;
    padding: 5px 20px;
    box-shadow: 5px 5px #111;
}
.section2 .ken .text1 h3{
    background-color: var(--color-ken);
}
.section2 .text1 p{
    background-color: #333;
    width: fit-content;
    color: white;
    padding: 5px 20px;
    box-shadow: 5px 5px #111;
}
.section2 .text1 .small{font-size: 13px; margin-left: 10px;}
.section2 .ken .text1{
    left: inherit;
    right: 0;
    transform: rotate(10deg);
}

.section2 .text2{
    background-color: white;
    width: fit-content;
    padding: 30px 100px;
    box-shadow: 5px 5px #111;
}
.section2 .ken .text2{
    text-align: right;
}


/* 3 */
.section3{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; color: white;
    /* border: 5px solid; */
}
.section3 h1{
    font-size: 180px;
}
.section3 img{
    width: 400px;
    transform: rotate(10deg);
}
.section3 span{
    margin-left: -50px;
    display:inline-block;
    animation:float 0.3s ease-in-out infinite;
}
@keyframes float {
    0%,100%{ transform:none; }
    33%{ transform:translateY(-1px) rotate(-3deg); }
    66%{ transform:translateY(1px) rotate(3deg); }
  }

.section3 h1 span:nth-child(2){ animation-delay:.05s; }
.section3 h1 span:nth-child(3){ animation-delay:.1s; }
.section3 h1 span:nth-child(4){ animation-delay:.15s; }
.section3 h1 span:nth-child(5){ animation-delay:.2s; }
.section3 h1 span:nth-child(6){ animation-delay:.25s; }
.section3 h1 span:nth-child(7){ animation-delay:.3s; }
.section3 h1 span:nth-child(8){ animation-delay:.35s; margin-left: 0px;}
.section3 h1 span:nth-child(9){ animation-delay:.4s; }
.section3 h1 span:nth-child(10){ animation-delay:.45s; }
.section3 h1 span:nth-child(11){ animation-delay:.5s; }

/* 4 */
.section4{
    height: 100vh;
    color: white;
}
.section4 .item-group{
    position: absolute;
    top:0;
    left:0%;
    display: flex;
    height: 100%;
}
.section4 .item{
    width: 100vw;
    padding: 50px;
    box-sizing: border-box;

}
.section4 .item h3{
    writing-mode: vertical-lr;
    color: rgba(226,36,125);
    text-shadow: 5px 5px #eee;
}
.section4 .cloud{
    position: fixed;
    top: 0;
    left: 0;
}
.section4 .cloud1{
    width: 40%;
    top:10%;
    left: -20%;
}
.secion4 .cloud2{
    position: absolute;
    width: 100%;
    top: 0;
    left:0;
    border: 2px solid gold;
}
.section4 .cloud3{
    position: absolute;
    width: 50%;
    top: 0;
    right:0;
}

.section4 .car{
    position: fixed;
    bottom: 0;
    left:0;
}
.section4 .item1{
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    margin-right: 500px;
}
.section4 .item1 .left{
    height: 100px;
}
.section4 .item1 .left p{
    text-transform: uppercase;
    margin-top: 20px;
}
.section4 .item1 .left p::before{
    content: '';
    display: inline-block;
    margin-right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(226,36,125);
}
.section4 .item1 .right{
    align-self: flex-end;
}

.section4 .item2{
    display: grid;
    grid-template-columns: 10% 90%;
    background-color: rgba(255,255,255,0.3);
    height: 100vh;
    width: 1000px;
    margin-right: 500px;
}
.section4 .item2 .btn-group{
    grid-column: span 2;
    text-align: right;
}

.section4 .item3{
    background-color: rgba(255,255,255,0.3);
    width: 1000px;
    height: 100vh;
    display: grid;
    grid-template-columns: 10% 90%;
    margin-right: 500px;
}
.section4 .item3 .box{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    overflow: visible;
}
.section4 .item3 .img-box{
    padding: 3px;
    background-color: white;
    box-sizing: border-box;
    z-index: 1;
    cursor: pointer;
}
.section4 .item3 .img-box:nth-child(2n):hover{
    transform: rotate(10deg);
}
.section4 .item3 .img-box:nth-child(2n+1):hover{
    transform: rotate(-10deg);
}
.section4 .item3 .box img{
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(1);
}
.section4 .item3 .box img:hover{
    filter: grayscale(0)
}

.section4 .pop{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 5;
}
.section4 .pop .bg{
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.section4 .pop .cont{
    position: absolute;
    top:50%; left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 3px;
    box-sizing: border-box;
}
.section4 .pop-img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.section4 .pop .num-group{
    display: flex;
    justify-content: center;
    align-items: center;
}
.section4 .pop .btn{
    width: 100px;
    height: 100%;
    position: absolute; top: 50%; transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    color: white;
}
.section4 .pop .btn-prev{right: 100%;}
.section4 .pop .btn-next{left: 100%;}


.section4 .item4{
    display: grid;
    grid-template-columns: 10% 90%;
    width: 1000px;
    background-color: rgba(255,255,255,0.3);

    height: 100vh;
    margin-right: 80px;
}
.section4 .item4 img{
    height: 100%;
    z-index: 1;
}


.section4 .box{
    max-width: 1300px;
    margin:0 auto;
    max-height: 800px;
    overflow: hidden;
}
.section4 .vod{
    width:100%; height: 100%;object-fit: cover;display: block;
}

.section4 .item2 .btn{
    padding: 20px; z-index: 1;
    background-color: transparent;
    border: none;
    font-size: 50px;
    cursor: pointer;
    color: white;
}
.section4 .btn{
    text-shadow: 3px 3px #666;
}
.section4 .fa-stop{display: none;}
.section4 .btn1:hover{
    color: rgba(226,36,125);
    transition: 0.5s;
}
.section4 .btn3:hover{
    transform: rotate(360deg);
    transition: 1s;
}

.section4 .intro .title{
    padding-left: 50px;
}
.section4 .intro{
    padding-top: 50px;
    overflow: hidden;

}

.section4 .intro .item{
    margin-top: 200px;
}
.section4 .intro .item p{
    text-align: center;
    bottom:100px;
    font-size: 25px;
    font-weight: 600;
    
}
.section4 .intro .item p span{
    font-family: 'KCCChassam';
}

.section4 .intro img{
    width: 100%;
    right: 50px;
}
.section4 .intro .text-box{
    position: absolute;
    top: 0; left:0;
}
.section4 .intro .txt{
    position: absolute;
    font-size: 250px;
    font-weight: 900;
    color: lightgray;
    transform: rotate(-40deg);

}
.section4 .intro .txt1{
    top:0;
    left:0;
    z-index: -1;
    -webkit-text-stroke: 2px rgba(226,36,125);
    color:rgb(229, 175, 200);   
}
.section4 .intro .txt2{
    bottom: 500px;
    left: 800px;
    -webkit-text-stroke: 2px rgba(226,36,125);
    color:rgb(229, 175, 200);   
}


/* 5 */
.section5{
    height: 100vh;
    background-color: rgba(226,36,125);
    color: white;
}
.section5 .title{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 50px;
}
.section5 .title img{
    width: 300px;
}

/* 슬라이더 */
.news{
    padding: 50px 50px 0px 50px;
}
.slide1 .swiper-wrapper{
}
.slide1 .item{
    margin-top: 20px;
    display: flex;
    align-items: baseline;
    gap: 30px;
    height: 300px;
}
.slide1 .left{
    height: 100% !important;
}
.slide1 .right{
    height: 100% !important;
}
.slide1 h5{
    margin-top: 40px;
}
.slide1 h5::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(226,36,125);
    margin: auto 5px;
}


.slide1 .swiper-pagination-progressbar-fill{
    background: linear-gradient(-90deg, orange,pink, skyblue) !important;
}

.slide1 .btn{
    position: absolute;
    background-color: white;
    border: 1px solid;
    border-radius: 50%;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
}
.slide1 .btn:hover{
    background-color: rgb(229, 161, 193);
}
.slide1 .btn-next{
    bottom:10%;
    right:45%;
}
.slide1 .btn-prev{
    bottom:10%;
    left:45%;
}


/* 푸터 */
.section5 .line{
    width: 95%;
    height: 1px;
    background-color: #eee;
    margin: 0 auto 30px;
    
}
footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0px 50px 20px;
}

footer .logo img{
    width: 80px;
}
footer .sns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}
footer .sns i{cursor: pointer;}
footer .sns i:nth-child(1):hover{color: blue;}
footer .sns i:nth-child(2):hover{color: tomato;}
footer .sns i:nth-child(3):hover{color: skyblue;}
footer .sns i:nth-child(4):hover{color: pink;}
footer .sns i:nth-child(5):hover{color: gold;}

/* video */
.bg-group{
    position: fixed;
    top:0; left:0; z-index: -1;
    width: 100%; height: 100%;
}

.bg-group video{
    width: 100%; height: 100%;
    position: absolute; top:0; left:0;
    object-fit: cover;
}

.bg-group .bg2{
    width: 100%; height: 100%;
    opacity: 0;
    background-image: linear-gradient( 180deg,  rgba(62,147,252,0.57) 12.9%, rgba(236, 101, 124, 0.44) 91.2% );
}



