@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Pretendard';
    line-height: 1.5;
    color: #eee;
    font-size: 16px;
    background-color: #222;
    position: relative;
    overflow-x: hidden;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #eee;
}

/* 헤더 */
header {
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
    background: linear-gradient(rgba(30, 30, 30, 0.6) 40%, transparent 100%);
}

.header_in {
    width: 90%;
    height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
}

.header_in>ul {
    display: flex;
}

.logo {
    width: 208px;
    display: block;
    margin-right: 80px;
}

.nav {
    align-items: center;
}

.nav>li>a {
    display: block;
    padding: 20px 0;
    font-size: 20px;
    margin-right: 80px;
}

.nav>li.on>a {
    color: #E0007A;
}

/* 서브메뉴 만들기 */
.nav .sub_bg {
    position: absolute;
    width: 100%;
    height: 300px;
    background-color: rgba(34, 34, 34, 0.8);
    left: 0;
    top: 0;
    z-index: -1;
    display: none;
}

.nav div {
    width: 90%;
    margin: auto;
    padding-top: 70px;
    display: flex;
}

.mg {
    margin-left: 288px;
}

.sub li a {
    font-size: 14px;
    display: block;
    padding: 5px 0;
}

.sub li a:hover {
    color: #E0007A;
    text-decoration: underline;
}

.sub1 {
    width: 114.58px;
}

.sub2 {
    width: 154.22px;
}

.sub3 {
    width: 166.44px;
}

.sub4 {
    width: 149.14px;
}

.sub5 {
    width: 131.86px;
}

.menu_right {
    margin-left: auto;
}

/* 모바일 내비 */
/* 움직이는 메뉴버튼 */
input[id="menuicon"] {
    display: none;
}

/* 메뉴 아이콘 버튼 크기, 위치 */
input[id="menuicon"]+label {
    display: block;
    width: 40px;
    height: 20px;
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 999;
    transition: all 0.5s;
    cursor: pointer;
}

/* 메뉴 버튼 클릭했을 때 X버튼 색상 */
input[id="menuicon"]:checked+label span {
    background: #fff;
}

/* 메뉴 세줄 버튼 */
input[id="menuicon"]+label span {
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 30px;
    background: #eee;
    transition: all 0.5s;
}

input[id="menuicon"]+label span:nth-child(1) {
    top: 0;
}

input[id="menuicon"]+label span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

input[id="menuicon"]+label span:nth-child(3) {
    bottom: 0;
}

/* 메뉴 버튼 클릭했을 때 세줄버튼에서 X버튼으로 바뀌는 모습 */
input[id="menuicon"]:checked+label span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

input[id="menuicon"]:checked+label span:nth-child(2) {
    opacity: 0;
}

input[id="menuicon"]:checked+label span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* 메뉴 창 */
.sidebar {
    width: 100%;
    height: 100%;
    background: #222;
    position: fixed;
    top: -100%;
    right: 0;
    z-index: 998;
    transition: all 0.5s;
    padding: 80px 30px;
    box-sizing: border-box;
    font-size: 36px;
}

input[id="menuicon"]:checked+label+div {
    top: 0;
}

.m_nav {
    display: none;
}

/* 메인 배너 */
.main-bn {
    width: 100%;
    height: 100vh;
    position: relative;
    margin: auto;
    text-align: center;
    overflow: hidden;
}

.bn-swiper {
    height: 100vh;
}

/* progressbar 커스텀 */
.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 99.6%;
}

.bn-swiper img {
    width: 100%;
}

.bn-text {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    z-index: 100;
}

.main-bn h1,
.main-bn h3 {
    font-family: 'Paperlogy';
    font-weight: 600;
}

.main-bn h1 {
    font-size: 5.5vw;
}

.main-bn h3 {
    font-size: 24px;
}

.main-bn h6 {
    font-size: 14px;
    font-weight: 400;
}

.scroll {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 50px;
    z-index: 100;
}

.scrollbox {
    width: 26px;
    height: 36px;
    border: 1px solid #fff;
    margin: 10px auto 0;
    line-height: 36px;
    text-align: center;
    border-radius: 50px;
}

.scrollbox img {
    animation: scrollani 1s alternate infinite;
}

@keyframes scrollani {
    0% {transform: translateY(-5px);}
    100% {transform: translateY(5px);}
}

/* 내용1 */
/* 프로그램 - 데스크탑 */
.contents1 {
    width: 90%;
    margin: auto;
}

.contents1 h1,
.contents2 h1 {
    font-size: 48px;
}

.contents-program {
    text-align: center;
    margin-top: 120px;
}

/* 프로그램 탭 내비 */
.tabnav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: auto;
    margin-top: 80px;
}

.tabnav li {
    width: 25%;
}

.tabnav a {
    display: block;
    height: 50px;
    border-bottom: 1px solid #999;
    color: #999;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    transition: 0.3s;
}

.tabnav li a.active {
    border-bottom: 3px solid #E0007A;
    color: #E0007A;
}

.tabnav a:hover {
    border-bottom: 3px solid #E0007A;
    color: #E0007A;
}

/* 프로그램 탭 내용 */
.mySwiper {
    width: 100%;
    margin-top: 50px;
}

.program-box {
    width: 320px;
    text-align: left;
}

.imgbox {
    width: 100%;
    height: 23vw;
    overflow: hidden;
    background-color: #111;
}

.imgbox img {
    width: 100%;
}

.imgbox h4 {
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 23vw;
    font-size: 20px;
    font-weight: 500;
}

.program-box h3,
.program-box p {
    padding: 15px 0;
}

.program-box p {
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
}

.program-box h3 {
    font-size: 20px;
}

.program-box h3 span {
    font-weight: 500;
}

.program-box a {
    display: block;
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border: 1px solid #eee;
    margin-top: 10px;
    box-sizing: border-box;
}

.program-box:hover a {
    background-color: #eee;
    color: #222;
}

.program-mobile {
    display: none;
}

/* 영화비평 */
.contents-review {
    margin-top: 190px;
}

.review-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    position: relative;
}

/* 영화비평 - 좌측 텍스트 */
.textSwiper {
    width: 45%;
    padding-bottom: 70px;
}

.textSwiper .swiper-button-next,
.textSwiper .swiper-button-prev {
    top: 95%;
    width: 53px;
    height: 19px;
}

.textSwiper .swiper-button-prev {
    background: url(../images/bt-prev.png) no-repeat center top;
}

.textSwiper .swiper-button-next {
    background: url(../images/bt-next.png) no-repeat center top;
}

.textSwiper .swiper-button-prev:after,
.textSwiper .swiper-button-next:after {
    content: '';
}

.review-text {
    display: flex;
    width: 100%;
}

.title-sub {
    width: 140px;
    height: 40px;
    text-align: center;
    background-color: #E0007A;
    line-height: 40px;
    margin-left: 5px;
    margin-right: 30px;
}

.textbox {
    width: 70%;
}

.textbox p {
    margin-top: 60px;
    line-height: 1.7;
    transition: 0.3s;
}

.textbox:hover p {
    text-decoration: underline;
}

.button {
    width: 90px;
    display: block;
    padding: 10px 30px;
    border: 1px solid #eee;
    margin-left: auto;
    text-align: center;
    transition: 0.3s;
}

.textbox:hover .button {
    background-color: #eee;
    color: #222;
}

/* 영화비평 - 우측 이미지 */
.imgSwiper {
    width: 50%;
    height: 460px;
    overflow: hidden;
    text-align: right;
}

.imgSwiper img {
    height: 100%;
}

.review-mobile {
    display: none;
}

/* BUSAN CINEMA CENTER */
.mask {
    width: 100%;
    height: 500px;
    font-size: 5.5vw;
    font-family: 'Paperlogy';
    font-weight: 600;
}

.mask div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;

    background: url(../images/main-01.jpg) no-repeat 50% 0/cover fixed;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* 내용2 */
.contents2 {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.contents2 h1,
.contents2 h1 a {
    display: flex;
    align-items: center;
}

.contents2 h1 a {
    font-size: 16px;
    font-weight: 400;
}

.contents2 h1 a:hover {
    color: #E0007A;
}

.contents2 h1 img {
    display: block;
    margin-right: 5px;
}

/* 공지사항 */
.contents-notice {
    width: 65%;
}

.contents-notice h3 {
    font-size: 20px;
}

.contents-notice ul {
    margin-top: 30px;
}

.contents-notice ul li a {
    padding: 30px 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #777;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contents-notice h3 span {
    font-size: 16px;
    margin-right: 50px;
    text-align: center;
    padding: 5px 10px;
}

.pink {
    background-color: #E0007A;
}

.blue {
    background-color: #00A1ED;
}

.green {
    background-color: #7DB72C;
}

.contents-notice ul li:hover h3 {
    text-decoration: underline;
}

.contents-notice ul li:hover h3 span {
    text-decoration: none;
}

/* 뉴스레터 */
.contents-newsletter {
    width: 30%;
}

.newsletter-wrap {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.in-box {
    display: block;
    width: 100%;
    height: auto;
    background-color: #666;
    margin-bottom: 40px;
}

.in-box>div {
    padding: 20px 30px;
    box-sizing: border-box;
}

.in-box img {
    width: 100%;
}

.in-box h3 {
    margin-top: 10px;
}

.in-box h4 {
    font-size: 16px;
    padding: 5px 15px;
    background-color: #fff;
    display: inline-block;
    color: #333;
    font-weight: 500;
}

.newsletter-wrap p {
    width: 70%;
    font-size: 0.9vw;
}

.newsletter-wrap>div {
    width: 100px;
    height: 100px;
    background-color: #fff;
}

/* 메뉴 4개 */
.menu-box {
    width: 100%;
    background-color: #fff;
    margin-top: 100px;
    padding: 100px 0;
    box-sizing: border-box;
}

.menu-in {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
}

.menu-in li {
    width: 24%;
    height: 20vw;
}

.menu-in li>a>img {
    margin-left: auto;
    transition: 0.3s;
}

.menu-in li>a:hover>img {
    filter: brightness(2);
}

.menu-in li a {
    background-color: #eee;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    transition: 0.3s;
    color: #999;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-in li:hover a {
    border-radius: 0 100px 0 0;
    color: #fff;
}

.circle {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 40px;
    right: 140px;
    opacity: 0;
    transition: 0.3s;
}

.menu-in li:hover .circle {
    right: 40px;
    opacity: 1;
}

.menu1:hover {
    background-color: #E0007A;
}

.menu2:hover {
    background-color: #00A1ED;
}

.menu3:hover {
    background-color: #002581;
}

.menu4:hover {
    background-color: #7DB72C;
}

/* 푸터 위 로고 */
.simply-scroll {
    width: 100%;
    height: 180px;
    overflow: hidden;
    padding-top: 60px;
    box-sizing: border-box;
    margin: 0px auto;
    background-color: #fff;
}

.simply-scroll .simply-scroll-list li {
    width: 200px;
    height: 60px;
    margin-right: 50px;
}

.simply-scroll .simply-scroll-list li img {
    height: 100%;
}

/* 푸터 */
footer {
    width: 100%;
    height: 500px;
}

.footer_in {
    width: 90%;
    margin: auto;
    padding: 80px 0 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.in_left {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}

.in_left>ul {
    width: 100%;
    display: flex;
    gap: 5vw;
    line-height: 2;
}

.footer_sub li a {
    display: block;
    color: #666;
    font-size: 0.8vw;
}

.footer_sub li a:hover {
    color: #eee;
}

.in_left>a {
    width: 30%;
    display: block;
    margin-top: 50px;
}

.in_left img {
    width: 100%;
}

.in_left p {
    width: 60%;
    font-size: 0.8vw;
    margin-left: 30px;
    padding-top: 80px;
    color: #666;
}

.in_right {
    margin-right: 80px;
}

.in_right>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.in_right p {
    line-height: 2;
}

.right-list {
    display: flex;
    margin-top: 60px;
    gap: 50px;
}

.right-list li a {
    color: #666;
}

.right-list li a:hover {
    color: #E0007A;
}

.right-sns {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.right-sns li {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50px;
    box-sizing: border-box;
    text-align: center;
    line-height: 45px;
    opacity: 0.6;
}

.right-sns li:hover {
    opacity: 1;
}

.logo-footer {
    display: none;
}

/* 탑버튼 */
.bt_top {
    width: 20px;
    height: 200px;
    position: absolute;
    top: 80px;
    right: 0;
}

.arrow {
    animation: arrowani 1s alternate infinite;
    margin-bottom: 30px;
}

@keyframes arrowani {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}

/* 반응형 - 작은화면 */
@media (max-width: 1490px) {

    /* 프로그램 탭 */
    .imgbox {
        height: 40vw;
    }

    .imgbox h4 {
        line-height: 40vw;
    }

    .program-box h3 {
        font-size: clamp(14px, 1.5vw, 20px);
    }

    .program-box p {
        font-size: clamp(12px, 1.2vw, 18px);
    }

    /* 메인 배너 */
    .bn-swiper img {
        width: 2000px;
    }

    /* 타이틀 폰트 사이즈 조정 */
    .contents1 h1,
    .contents2 h1 {
        font-size: 3.5vw;
    }

    /* 영화비평 */
    .textSwiper {
        width: 100%;
    }

    .textbox {
        width: 40%;
    }

    .review-text {
        display: block;
    }

    .review-text h2 {
        margin-top: 20px;
        font-size: clamp(20px, 2vw, 24px);
    }

    .review-text p {
        font-size: clamp(12px, 1.2vw, 18px);
    }

    .button {
        opacity: 0;
    }

    .imgSwiper {
        position: absolute;
        height: 350px;
        width: 50%;
        right: 0;
    }

    /* 메뉴 4개 */
    .menu-in {
        width: 90%;
    }

    .menu-in li a {
        padding: 30px;
        font-size: 18px;
    }

    .menu-in li>a>img {
        width: 30%;
    }

    /* 푸터 */
    .in_left {
        display: none;
    }

    .logo-footer {
        display: block;
        margin-top: auto;
    }

    .in_right {
        width: 100%;
    }
}

/* 반응형 - 태블릿 가로 */
@media (max-width: 1320px) {

    /* 헤더 */
    .header_in>ul {
        display: none;
    }

    .logo {
        position: absolute;
        left: 30px;
        top: 30px;
        z-index: 999;
    }

    /* 모바일 내비 */
    .m_nav {
        display: block;
    }

    /* 뉴스레터 */
    .contents-newsletter {
        display: none;
    }

    /* 공지사항 */
    .contents-notice {
        width: 100%;
    }

    .contents-notice h3 span {
        display: none;
    }

    .contents-notice ul li a {
        padding: 20px 30px;
        display: block;
    }

    .contents-notice h3 {
        font-size: clamp(18px, 1.5vw, 24px);
    }

    .contents-notice p {
        color: #666;
        font-size: clamp(14px, 1.2vw, 18px);
    }

    /* 메뉴 4개 */
    .menu-box {
        padding: 20px 0;
    }

    .menu-in li {
        width: 48%;
        height: 48vw;
    }

    .menu-mg {
        margin-bottom: 15px;
    }

    .menu-in li a {
        font-size: clamp(16px, 1.5vw, 20px);
    }
}

/* 반응형 - 모바일 */
@media (max-width: 900px) {
    /* 메인 배너 */
    .main-bn {
        height: 100vh;
    }

    .bn-swiper {
        height: 100vh;
    }

    .bn-swiper img {
        width: 2500px;
        margin-left: -1000px;
    }

    .main-bn h3 {
        font-size: clamp(14px, 3vw, 20px);
        margin-top: 10px;
    }

    .scroll {
        bottom: 50px;
    }

    /* 프로그램 탭 내용 */
    .program-desktop {
        display: none;
    }

    .program-mobile {
        display: block;
        overflow: hidden;
        text-align: center;
    }

    .mobile-wrap {
        margin-left: 20px;
    }

    .program-mobile>h1 {
        margin: 100px auto 0;
        padding-bottom: 10px;
        width: 40%;
        border-bottom: 3px solid #eee;
    }

    .program-mobile h3 {
        font-size: clamp(16px, 4.5vw, 20px);
    }

    .program-mobile h5 {
        font-size: clamp(14px, 3.5vw, 18px);
        font-weight: 500;
        color: #999;
    }

    .mySwiper {
        width: 200%;
    }

    .imgbox {
        height: 80vw;
    }

    .imgbox h4 {
        line-height: 80vw;
        font-size: 20px;
    }

    /* 영화비평 */
    .contents-review {
        margin-top: 100px;
    }

    .contents-review h1 {
        font-size: clamp(16px, 8.5vw, 30px);
    }

    .review-desktop {
        display: none;
    }

    .review-mobile {
        display: block;
    }

    .mobile-img {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .mobile-img img {
        width: 100%;
        mask-image: linear-gradient(rgba(50, 50, 50, 1) 60%, transparent);
    }

    .textbox {
        width: 100%;
        position: absolute;
        bottom: 15px;
        left: 15px;
    }

    .title-sub {
        width: 120px;
        height: 35px;
        font-size: 14px;
        line-height: 35px;
    }

    .review-mobile h2 {
        font-size: clamp(18px, 6vw, 24px);
        font-weight: 600;
        margin-top: 5px;
    }

    .list-img {
        width: 100px;
        height: 100px;
        overflow: hidden;
        transform-origin: center;
    }

    .list-img img {
        width: 200%;
    }

    .review-list li a {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 20px;
    }

    .list-textbox {
        width: 70%;
        padding-left: 20px;
    }

    .review-list h4 {
        font-size: clamp(14px, 4.5vw, 18px);
    }

    .review-list h6 {
        font-size: clamp(12px, 3.5vw, 16px);
        font-weight: 500;
        color: #999;
        margin-top: 5px;
    }

    /* BUSAN CINEMA CENTER 안보이게 */
    .mask {
        display: none;
    }

    /* 공지사항 & 뉴스레터 */
    .contents-newsletter {
        display: none;
    }

    .contents-notice {
        width: 100%;
        margin-top: 100px;
    }

    .contents-notice ul li a {
        padding: 20px 20px;
        display: block;
    }

    .contents-notice h1 {
        font-size: clamp(14px, 8.5vw, 30px);
    }

    .contents-notice h3 {
        font-size: clamp(14px, 4.5vw, 18px);
    }

    .contents-notice p {
        color: #666;
        font-size: clamp(16px, 4.5vw, 18px);
    }

    /* 메뉴 4개 */
    .menu-in li a {
        padding: 15px;
    }

    /* 푸터 위 로고 안보이게 */
    .logo-scroller {
        display: none;
    }

    /* 푸터 */
    footer {
        height: 300px;
    }

    .right-list,
    .bt_top {
        display: none;
    }

    .in_right {
        margin: 0;
    }

    .logo-footer {
        width: 40%;
    }

    .logo-footer img {
        width: 100%;
    }
}