@charset "utf-8";* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
.crumbsList {
	display: none;
}
.header .main.fixed::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100vmax;
	right: -100vmax;
	bottom: 0;
	background: rgb(255, 255, 255);
}
.header .main.fixed .logo {
	position: relative;
}

.outerwear-page a {
    color: #BA0000;
    font-weight: 400;
    font-size: 14px;
    overflow: hidden;
    line-height: 22px;
    letter-spacing: 1%;
}
.outerwear-page {
    background: #fff;
    font-family: "Nanum Myeongjo",serif;
    color: #BA0000;
}

.firstsection > div {
    display: flex;
    width: 100%;
    height: 100%;
}

.outerwear-page .firstsection__photo--mobile {

    display: none;
}

.outerwear-page .firstsection.img1 {
    position: relative;
}

.outerwear-page .firstsection.img1 img {
    display: block;
}

.outerwear-page .firstsection__text {
    position: absolute;
    display: block;
    max-width: fit-content;
    max-height: fit-content;
}

.animate-up {
    opacity: 0;
    animation: universalTextIn 1.45s cubic-bezier(.22,1,.36,1) 2.05s forwards;
}

@keyframes universalTextIn {
    0% {
        opacity: 0;
        transform: translateY(85px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.outerwear-page .firstsection__photo--desktop .firstsection__text.text-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.outerwear-page .firstsection__photo--desktop .firstsection__text.text-2 {
    top: 52%;
    left: 29%;
}

.outerwear-page .firstsection__photo--desktop .firstsection__title {
    font-size: 25.17px;
    line-height: 44.95px;
    letter-spacing: 2%;
}

.outerwear-page .firstsection__photo--desktop .firstsection__title1 {
    font-size: 35.96px;
    line-height: 44.95px;
    letter-spacing: 2%;
}

.outerwear-page .firstsection__photo--mobile .firstsection__text.text-1 {
    top: 20%;
    left: 15%;
}

.outerwear-page .firstsection__photo--mobile .firstsection__text.text-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.outerwear-page .firstsection__photo--mobile .firstsection__title {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 2%;
}

.outerwear-page .firstsection__photo--mobile .firstsection__title1 {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 2%;
}

@keyframes firstsectionTextIn {

    0% {
        opacity: 0;
        transform:
            translate3d(0,85px,0);
    }
    45% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform:
            translate3d(0,0,0);
    }
}


.secondsection {
    max-width: 1088px;
    margin: 0 auto;
}

.secondsection .photo-reveal-group {
    position: relative;
    width: 640px;
    height: 780px;
}

.secondsection .photo-reveal {
    position: absolute;
    margin: 0;
    overflow: hidden;
}

.secondsection .photo-reveal a,
.secondsection .photo-reveal img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secondsection .photo-reveal:nth-child(2) {
    left: 0;
    top: 113px;
    width: 446px;
    height: 558px;
    z-index: 1;
}

.secondsection .photo-reveal:nth-child(1) {
    left: 360px;
    top: 0;
    width: 280px;
    height: 351px;
    z-index: 2;
}

.secondsection .photo-reveal:nth-child(3) {
    left: 398px;
    top: 501px;
    width: 206px;
    height: 257px;
    z-index: 2;
}

.secondsection .product-info {
    width: fit-content;
    transform: translateY(-110px);
}

.secondsection .product-info div {
    padding: 3px 0;
}

.outerwear-page .thirdsection {
    display: flex;
    justify-content: right;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    margin-top: -7%;
}

.outerwear-page .thirdsection > div:first-child {
    width : 478px;
    height: 397px;
}

.outerwear-page .thirdsection > div:nth-child(2) {
    width : 400px;
    height: 597px;
}

.outerwear-page .forthsection {
    padding-left: 10%;
    padding-right: 50%;
}

.outerwear-page .fifthsection > div:first-child {
    position: relative;
    left: 550px;
    width: 297px;
    height: 370px;
}

.outerwear-page .fifthsection > div:nth-child(2) {
    position: relative;
    left: 350px;
    width: 297px;
    height: 370px;
    transform: translateY(-20%);
    margin-bottom: -5%;
    z-index: 1;
}
.outerwear-page .sixsection {
    padding-left: 60%;
    padding-right: 10%;
}
.outerwear-page .sevensection {
    padding-left: 35%;
    padding-right: 35%;
    position: relative;
    z-index: 1;
}

.outerwear-page .background-photo {
    position: relative;
    transform: translateY(-60%);
    margin-bottom: -40%;
}
.outerwear-page .eightsection {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    overflow: hidden;
}

.outerwear-page .eightsection > div {
    flex: 1;
}

.outerwear-page .eightsection img {
    display: block;
    width: 100%;

    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.outerwear-page .eightsection.is-visible > div:nth-child(1) img {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}
.outerwear-page .eightsection.is-visible > div:nth-child(2) img {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}
.outerwear-page .eightsection.is-visible > div:nth-child(3) img {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2s;
}

.outerwear-page .middlesection {
    display: flex;
    flex-direction: column;
}

.outerwear-page .large1 {
    padding-inline: 430px;
}

.outerwear-page .large {
    padding-inline: 401px;
}
.outerwear-page .small {
    padding-inline: 500px;
    align-items: center;
    gap: 150px;  
}

.outerwear-page .logo {
    align-items: center;
}

.outerwear-page .photo-reveal {

    opacity: 0;

    transform:
        translate3d(0,55px,0)
        scale(1.015);

    filter:
        blur(9px);

    transition:
        opacity 1.45s cubic-bezier(.22,1,.36,1),
        transform 1.55s cubic-bezier(.22,1,.36,1),
        filter 1.55s cubic-bezier(.22,1,.36,1);
    padding-bottom: 10px;
}


.outerwear-page .photo-reveal.is-visible {
    opacity: 1;
    transform:
        translate3d(0,0,0)
        scale(1);
    filter:
        blur(0);
    opacity: 1;
}

.outerwear-page .section-space {
    height: 150px;
}

@media (max-width: 767px) {
    .outerwear-page a {
        font-size: 12px;
        font-weight: bold;
        color: #BA0000;
    }
.outerwear-page {
        background: #fff;
        font-family: "Nanum Myeongjo",serif;
        font-size: 12px;
        overflow: hidden;
        line-height: 20px;
        letter-spacing: 1%;
    }
    .outerwear-page .firstsection__photo--desktop {
        display: none;
    }


    .outerwear-page .firstsection__photo--mobile {
        display: block;
    }

    .secondsection .photo-reveal-group {
        width: 100%;
        height: auto;
        display: flex;
        gap: 71px;
        padding-inline: 52px;
        flex-direction: column;
    }

    .secondsection .photo-reveal {
        position: static;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 5;
    }

    .secondsection .product-info {
        width: 100%;
        padding-inline: 52px;
        transform: translateY(0px);
    }

    .outerwear-page .thirdsection > div:first-child {
        width : 198px;
        height: 248px;
    }

    .outerwear-page .thirdsection > div:nth-child(2) {
        width : 167px;
        height: 248px;
    }

    .outerwear-page .forthsection {
        padding-inline: 24px;
    }
    .outerwear-page .fifthsection > div:first-child {
        left: 137px;
        right: 84px;
        width: 169px;
        height: 210px;
    }

    .outerwear-page .fifthsection > div:nth-child(2) {
        left: 24px;
        right: 198px;
        width: 169px;
        height: 210px;
        transform: translateY(-20%);
        margin-bottom: -10%;
        z-index: 1;
    }
    .outerwear-page .sixsection {
        padding-inline: 9%;
    }
    .outerwear-page .sevensection {
        padding-inline: 0;
    }
    .sevensection > div:nth-child(3) {
        padding-inline: 35px;
    }
    .sevensection > div:nth-child(4) {
        padding-left: 35px;
    }

    .outerwear-page .background-photo {
        padding-inline: 0;
        transform: none;
        margin-bottom: 0;
    }
    .outerwear-page .eightsection {
        width: 100%;
        padding-inline: 82px;
        display: block;
        justify-content: center;
        align-items: stretch;
        gap: 8px;
        overflow: hidden;
    }

    .outerwear-page .middlesection {
        display: flex;
        justify-content: center;
        padding-inline: 24px;
    }

    .outerwear-page .small {
        flex-direction: column;
        display: flex;
        justify-content: center;
        padding-inline: 57px;
        gap: 71px;
        
    }

    .outerwear-page .large1 {
    padding-inline: 24px;
    }

    .outerwear-page .large {
        padding-inline: 0;
    }

    .outerwear-page .large > div:nth-child(2) {
        padding-inline: 20px;
    }

    .outerwear-page .logo {
        padding-inline: 99px;
    }
        

    .outerwear-page .section-space {
        height: 112px;
    }


}
