/**
 * Parallax Text Effect Styles
 * 3dË ÌoûªüÐüì¤ûÆ­¹È	nú,¹¿¤ë
 */
.js-parallax-text {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.parallax-text {
    position: absolute;
    z-index: 2;
    font-family: inherit;
    line-height: 1.4;
    white-space: pre-line;
    word-wrap: break-word;
}

/* ì¹Ýó·ÖþÜ */
@media (max-width: 768px) {
    .js-parallax-text {
        background-attachment: scroll !important;
    }
    
    .parallax-text {
        font-size: calc(var(--font-size) * 0.8) !important;
        padding: 0 15px !important;
        width: calc(100% - 30px) !important;
    }
}

@media (max-width: 480px) {
    .parallax-text {
        font-size: calc(var(--font-size) * 0.6) !important;
        padding: 0 10px !important;
        width: calc(100% - 20px) !important;
    }
}