
.no-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100001;
}
.no-popup__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120rem;
}

@media screen and (max-width: 1440px) {
    .no-popup__inner {
        width: 80%;
    }
}


@media screen and (max-width: 768px) {
    .no-popup__inner {
        width: 90%;
    }
}

.no-popup__zone {
    display: flex;
}
.no-popup__image {
}

.no-popup__image picture {
	width: 100%;
	overflow : hidden;
}
.no-popup__image picture img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s;
}
.no-popup__image picture img:hover {
	transform : scale(1.05);
}
.no-popup__content {
    color: #fff;
    text-align: center;
    word-break: keep-all;
}
@media screen and (max-width: 768px) {
    .no-popup__content {
        padding: 1rem 2.4rem 2.4rem;
    }
}
@media screen and (max-width: 544px) {
    .no-popup__content {
        padding: 0.8rem 1.6rem 1rem;
    }
}
.no-popup__title {
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.333;
	margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
    .no-popup__title {
        font-size: 2.8rem;
    }
}
@media screen and (max-width: 768px) {
    .no-popup__title {
        font-size: 2.4rem;
    }
}
@media screen and (max-width: 544px) {
    .no-popup__title {
        font-size: 2rem;
    }
}
.no-popup__desc {
    line-height: 1.45;
    padding: 1rem 0 3.2rem;
    font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
    .no-popup__desc {
        font-size: 1.4rem;
        padding: 1rem 0 2.4rem;
    }
}
@media screen and (max-width: 544px) {
    .no-popup__desc {
        font-size: 1.2rem;
        padding: 0.8rem 0 1.6rem;
    }
}
.no-popup__pos {
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 1.6rem;
}
.no-popup__pos a {
    min-width: 18rem;
    font-weight: 500;
    border: 1px solid #fff;
    border-radius: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.4rem;
    color: #fff;
    transition: 0.15s;
    font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
    .no-popup__pos a {
        font-size: 1.4rem;
        height: 4rem;
        border-radius: 4rem;
        min-width: 16rem;
    }
}
@media screen and (max-width: 544px) {
    .no-popup__pos a {
        font-size: 1.2rem;
        height: 3.6rem;
        border-radius: 3.6rem;
    }
}
.no-popup__pos a:hover {
    background: #fff;
    color: #212121;
}
.no-popup-ctrl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
}
@media screen and (max-width: 768px) {
    .no-popup-ctrl {
    }
}
.no-popup-ctrl__off input[type='checkbox'] {
    display: none;
}
.no-popup-ctrl__off label {
    padding: 0.7rem 1rem 0.5rem;
    border-radius: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.15s;
    color: #fff;
}

.no-popup-ctrl__off label span {
    transition: 0.15s;
    font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
    .no-popup-ctrl__off label span {
        font-size: 1.2rem;
    }
}
.no-popup-ctrl__close a {
    padding: 0.7rem 1.4rem;
    border-radius: 5.5rem;
    color: #fff;
    transition: 0.15s;
    font-size: 1.4rem;
    transition: 0.15s;
}
@media screen and (max-width: 768px) {
    .no-popup-ctrl__close a {
        font-size: 1.2rem;
    }
}

.no-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.popup-pager {
	color: #fff;
    bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    position: static;
    margin-top: 2rem;
}
@media screen and (max-width: 768px) {
    .popup-pager {
		margin-top: 1rem;
    }
}
.popup-pager .swiper-pagination-bullet {
    background-color: #666;
    opacity: 1;
}
.popup-pager .swiper-pagination-bullet-active {
    background-color: #fafafa;
}