/* BASIC css start */
:root {
    --macaronBaseSize: 100px;
}

.headerWrapper {
    position: fixed !important;
    opacity: 0.01;
}
.headerWrapper:hover {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 1;
}

.listPageContainer {
    width: 100vw;
    min-width: 320px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.macaronDistrict {
    width: 100%;
}

/* ¸ÇÀ§ ¸¶Ä«·Õ ¸ÞÀÎ */
#macaronMainVisual {
    /* display: none; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: -webkit-gradient(
        linear,
        left bottom, left top,
        from(rgba(255, 255, 255, 1)),
        to(rgba(255, 110, 188, 1))
    );
    background: -o-linear-gradient(
        bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 110, 188, 1) 100%
    );
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 110, 188, 1) 100%
    );
}

.macaronMainTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 5.75rem;
}

.macaronMainTopBg {
    width: 100%;
    background-color: rgb(255, 97, 165);
}
.macaronTypoSvg {
    position: absolute;
    width: 18rem;
}
.macaronMainCenter {
    width: 100%;
    padding: 2vh 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.macaronMainCenter .macaron3d {
    width: 80%;
    aspect-ratio: 3/4;
}
.macaronMainCenter .macaron3d video {
    width: 100%;
    border-radius: 1.5rem;
}
.macaronMainCenter .macaronsFloating {
    position: absolute;
    z-index: 1;
}
.macaronsFloating .floatingMacaron {
    /* width: calc(var(--macaronBaseSize) * 1); */
}
.floatingMacaron:nth-child(1) {
    left: 15vh;
    top: 2vh;
    width: calc(var(--macaronBaseSize) * 1);
    -webkit-animation: translateY1 1.5s infinite alternate ease-in-out;
            animation: translateY1 1.5s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(2) {
    left: -17vh;
    top: 0vh;
    width: calc(var(--macaronBaseSize) * 1);
    -webkit-animation: translateY1 1.4s infinite alternate ease-in-out;
            animation: translateY1 1.4s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(3) {
    left: 27vh;
    top: 0vh;
    width: calc(var(--macaronBaseSize) * 1.2);
    -webkit-animation: translateY1 1.6s infinite alternate ease-in-out;
            animation: translateY1 1.6s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(4) {
    left: -28vh;
    top: 0vh;
    width: calc(var(--macaronBaseSize) * 1);
    -webkit-animation: translateY2 1.6s infinite alternate ease-in-out;
            animation: translateY2 1.6s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(5) {
    left: 18vh;
    top: 2vh;
    width: calc(var(--macaronBaseSize) * 1.1);
    -webkit-animation: translateY1 1.5s infinite alternate ease-in-out;
            animation: translateY1 1.5s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(6) {
    left: -20vh;
    top: -4vh;
    width: calc(var(--macaronBaseSize) * 0.7);

    -webkit-animation: translateY2 1.4s infinite alternate ease-in-out;

            animation: translateY2 1.4s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(7) {
    left: -12vh;
    top: -1vh;
    width: calc(var(--macaronBaseSize) * 0.9);

    -webkit-animation: translateY2 1.3s infinite alternate ease-in-out;

            animation: translateY2 1.3s infinite alternate ease-in-out;
}
.macaronMainBottom {
    /* background-color: aliceblue; */
    /* position: absolute; */
    bottom: 0;
    margin-top: 5rem;
}
.macaronMainBottom .sentiTypoSvg {
    height: 5rem;
}
.macaronMainBottom .sentiTypoSvg path {
    fill: rgb(255, 97, 165);
}
/* ¸ÇÀ§ ¸¶Ä«·Õ ¸ÞÀÎ */

/* ¸¶Ä«·Õ ½½¶óÀÌ´õ */
#macaronSliderContainer {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}
#macaronSlider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    padding: 3rem 0;
    will-change: transform;
}
.macaronSlide {
    width: 70vw;
    padding: 5vw;
    border-radius: 1.5rem;
}

.macaronSlideMeta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.375rem;
    margin-top: 2rem;
    z-index: 2;
    opacity: 0;
}
.macaronSlideMeta * {
    color: rgb(255, 97, 165);
}
.macaronSlideMeta h3 {
    font-weight: 600;
}
.macaronSlideMeta h4 {
    font-size: 1rem;
}
.macaronSlideMeta h5 {
    font-size: 0.875rem;
}
.macaronSlide:hover {
    -webkit-box-shadow: 0 0 10px rgb(255, 97, 165, 0.4);
            box-shadow: 0 0 10px rgb(255, 97, 165, 0.4);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.macaronSlide:hover img {
    scale: 1.2;
    -webkit-transform: rotateZ(10deg);
        -ms-transform: rotate(10deg);
            transform: rotateZ(10deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
}
.macaronSlide:hover .macaronSlideMeta {
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.macaronSliderBottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 4rem;
}
.macaronSliderBottom h5 {
    color: rgb(255, 97, 165);
    text-align: center;
    font-size: 1rem;
}
.macaronShopBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    gap: 2rem;
}
.macaronShopBtn {
    padding: 0.75rem;
    width: 17rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    background-color: #fff;
    color: rgb(255, 97, 165);
    border-radius: 5rem;
    -webkit-box-shadow: 0 0 8px rgb(255, 97, 165);
            box-shadow: 0 0 8px rgb(255, 97, 165);
}

.macaronShopBtn:hover {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    color: #fff;
    border-radius: 5rem;
    background-color: rgb(255, 97, 165);
    -webkit-box-shadow: 0 0 0px rgb(255, 97, 165, 0);
            box-shadow: 0 0 0px rgb(255, 97, 165, 0);
}
/* ¸¶Ä«·Õ ½½¶óÀÌ´õ */

#macaronImagesContainer {
    width: 100%;
    max-width: 1920px;
}
.macaronImageFlex {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
}
.mararonImageFlexVideoContainer video {
}
.macaronImageFlex img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin-bottom: 0.5rem;
}
.macaronImageFlex .bigSize {
    aspect-ratio: 4/3;
}
.macaronImageFlex .smallSize {
    aspect-ratio: 3/4;
}

@-webkit-keyframes translateY1 {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(3rem);
                transform: translateY(3rem);
    }
}

@keyframes translateY1 {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(3rem);
                transform: translateY(3rem);
    }
}

@-webkit-keyframes translateY2 {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(2rem);
                transform: translateY(2rem);
    }
}

@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(2rem);
                transform: translateY(2rem);
    }
}
/* BASIC css end */

