@charset "utf-8";
#about .detailTxt {
    margin-bottom: clamp(56px, 6.94vw, 100px);
}
#about .detailTxt h3 {
    max-width: clamp(100px, 8.88vw, 128px);
    margin: 0 auto;
    margin-bottom: clamp(24px, 2.22vw, 32px);
}
#about .detailTxt h4 {
    font-size: clamp(2rem, 2.08vw, 3rem);
    text-align: center;
    line-height: 1.8;
}
#about .detailTxt p {
    margin-top: clamp(24px, 2.77vw, 40px);
    text-align: center;
    line-height: 1.8;
    font-size: clamp(1.6rem, 1.25vw, 1.8rem);
}
/* popup */
.thumbnail {
    display: block;
    cursor: pointer;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.modal-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.open header {
    z-index: 0;
}
.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    animation: modalFadeIn 0.3s ease;
    z-index: 3100;
}
.modal-content video {
    width: 100%;
    height: auto;
    max-width: 1200px;
    max-height: 90vh;
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        scale: 0.95;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}
.close-btn {
    position: absolute;
    top: -20px;
    right: 0;
    background: none;
    color: #fff;
    border: none;
    font-size: clamp(2rem, 2.08vw, 3rem);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
/* fade-in */
.fade-in {
    opacity: 0;
    filter: blur(6px);
    transition: opacity 1.2s ease, filter 1.2s ease;
}
.fade-in.visible {
    opacity: 1;
    filter: blur(0);
}
/* fade-blur */
.fade-blur {
    opacity: 0;
    filter: blur(6px);
    transition: all 1s ease;
}
.fade-blur.visible {
    opacity: 1;
    filter: blur(0);
}
#about .videoWrap {
    position: relative;
}
#about .imgWrap {
    position: relative;
}
#about .playbutton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(64px, 8vw, 96px);
    cursor: pointer;
    z-index: 10;
    cursor: pointer;
}
#about .producer {
    margin-top: clamp(80px, 8.33vw, 120px);
    display: flex;
    gap: 4.44%;
}
#about .producer .imageWrap {
    width: 47.78%;
}
#about .producer .imageWrap img {
    width: 100%;
}
#about .producer .txtWrap {
    max-width: 519px;
    margin-right: auto;
}
#about .producer .txtWrap h5 {
    font-size: clamp(3.2rem, 3.33vw, 4.8rem);
    line-height: 1.2;
    color: #fff;
    margin-bottom: clamp(24px, 2.22vw, 32px);
    ;
    margin-top: -30px;
}
#about .producer .txtWrap h5 span {
    font-size: clamp(2rem, 1.66vw, 2.4rem);
}
#about .producer .txtWrap p {
    line-height: 1.8;
}
@media screen and (max-width: 1000px) {
    #about .producer .txtWrap h5 {
        margin-top: 4.44%;
    }
    #about .producer {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    #about .producer .imageWrap {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }
    #about .producer .imageWrap img {
        width: 90%;
        margin-left: 0;
    }
    #about .producer .txtWrap {
        width: 90%;
        margin-left: auto;
    }
}
@media screen and (max-width: 570px) {
    #about .producer .txtWrap {
        margin-right: 5%;
    }
    #about .detailTxt p {
        text-align: left;
    }
}