/*popup*/
body.noScroll{overflow: hidden;}
.__popupBx{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    word-break: keep-all;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.__popupBx.active{opacity: 1;visibility: visible;pointer-events: auto;}
.__popupBx .inn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1080px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
	max-height: 90vh;
	overflow: auto;
	line-height: 1.5;
}
.__popupBx .close{position: absolute;top: 20px;right: 20px;cursor: pointer;z-index: 9999;}
.__popupBx .close i{font-size: 22px;color: #000;}

.__popupBx .txtBx > h2{font-size: 24px;color: #000;font-weight: 600;margin-bottom: 40px;line-height: 1.3;}
.__popupBx .txtBx > p{font-size: 16px;color: #000;font-weight: 400;margin-bottom: 40px;line-height: 1.3;}
.__popupBx .scrollBx {
    height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: #f8f8f8;
}
.__popupBx .scrollBx > em{font-size: 18px;color: #000;font-weight: 600;margin-bottom: 20px;display: block;}
.__popupBx .scrollBx > p{font-size: 16px;color: #000;font-weight: 400;}
.__popupBx .scrollBx > p span{display: flex;gap: 4px;margin-bottom: 5px;}
.__popupBx .scrollBx > p span small{white-space: nowrap;}
.__popupBx .scrollBx .mt_25{display: block; margin-top: 25px;}
.__popupBx .scrollBx .mt_40{display: block; margin-top: 40px;}
.__popupBx .scrollBx .pl_20{padding-left: 20px; box-sizing: border-box;}
.__popupBx .scrollBx .pl_30{padding-left: 30px; box-sizing: border-box;}
.__popupBx .scrollBx .fw500{font-weight: 500;}
.__popupBx .scrollBx .fw600{font-weight: 600;}
.__popupBx .scrollBx > p span.s_margin{margin-bottom: 12px;}
.__popupBx .scrollBx ._bold{font-weight: 700;margin-bottom: 5px;}
.__popupBx .txtBx > h2 br.max-360{display: none;}
@media screen and (max-width: 1024px) {
    .__popupBx .txtBx > h2{font-size: clamp(22px, 22 / 820 * 100vw, 24px);}
}
@media screen and (max-width: 820px) {
    .__popupBx .inn{box-sizing: border-box;padding: 25px;width: 90%;}
    .__popupBx .txtBx > h2{font-size: clamp(20px, 20 / 500 * 100vw, 22px);}
    .__popupBx .txtBx > p{font-size: clamp(14px, 14 / 500 * 100vw, 16px);}
    .__popupBx .scrollBx {
        height: 250px;
    }
    .__popupBx .scrollBx > em{font-size: clamp(16px, 16 / 500 * 100vw, 18px);}
    .__popupBx .scrollBx > p{font-size: clamp(14px, 14 / 500 * 100vw, 16px);}
}
@media screen and (max-width: 500px) {
    .__popupBx .scrollBx ._column{flex-direction: column;gap: 4px;}
}
@media screen and (max-width: 360px) {

    .__popupBx .txtBx > h2{font-size: clamp(18px, 18 / 280 * 100vw, 20px);}
    .__popupBx .close i{font-size: clamp(18px, 18 / 280 * 100vw, 22px);}
    .__popupBx .close{top: 15px;right: 15px;}
    .__popupBx .txtBx > h2 br.max-360{display: block;}
}
