* {
  font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
body{
    margin: 0;
    padding: 0;
}
ul,ol,li{
    margin: 0;
    padding: 0
}

/* ÆË¾÷ */
.popup_body{
    position: absolute;
    top: 0;
    left: 0;
}
/* ¹è³ÊÁ¸ */
.organ_logo>ul>li>a>img{
    width: 120px;
}

/* TOP */

#su_main_top_section{
    width: 100%;
    height: 45px;
    background: #f3f3f3;
    border-bottom: 1px solid #e0e0e0;
}
.su_main_top_div{
    width: 1620px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.su_top_home{
    display: flex;
    align-items: center;
    img{
        margin-right: 5px;
    }
}

.su_log{

    a{
        text-decoration: none;
        color: #000;
        position: relative;
        padding-right: 10px;
        padding-left: 10px;
    }

    
}

.su_log_border::after{
    content: "";
    height: 60%;
    width: 1px;
    position: absolute;
    background: #ccc;
    top: 30%;
    right: 0;
}


/* NENU */


#su_main_menu_section {
    height: 90px;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.su_main_menu_div {
    width: 1620px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo_icon_box {
    width: 240px;
    display: flex;
    align-items: center;
    height: 100%;
}

.su_main_menu_div2 {
    width: 1100px;
    height: 100%;
}

.su_main_menu_ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    position: relative;
}

.su_main_menu_ul>li{
    width: 150px;
    display: flex;
    justify-content: center;
}

.su_main_menu_ul > li > a {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.su_sub_menu_div {
    display: none;
    overflow: hidden;
    max-height: 0; 
    transition: max-height 0.5s ease-out; 
    position: absolute; 
    top: 100%; 
    z-index: 10; 
}

.su_sub_menu_ul {
    list-style: none;
    margin: 0; 
    padding: 10px 0;
     height: 450px;
    width: 200px;
    background: #fff;
    border: 1px solid #eee;
}

.su_sub_menu_ul li {
    height: 45px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.su_sub_menu_ul li:last-child {
    margin-bottom: 0; 
}


.su_sub_menu_ul > li > a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30px;
}

.su_sub_menu_ul > li:hover {
    background-color: #0069b6; 
    transition: 0.3s; 
    cursor: pointer;
}

.su_sub_menu_ul > li:hover > a {
    color: #fff; 
    font-weight: bold;
    transition: color 0.3s ease; 
}
/* movil menu */

.su_main_movil_icon{
    display: none; 
    position: absolute;
    top: 80px;
    right: 20px;
    z-index: 990;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.su_main_movil_meunu{
    position: fixed;
    width: 50%;
    background-color: #fff;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 999;
    border: 1px solid #ddd;
    padding: 40px 20px;
    box-sizing: border-box;
    transform: translateX(100%); 
    visibility: hidden; 
    transition: transform 0.3s ease-out, visibility 0.3s ease-out;  
    overflow-y: auto; 
}

/* ¸Þ´º°¡ ¿­·ÈÀ» ¶§ÀÇ »óÅÂ */
.su_main_movil_meunu.is-open {
    transform: translateX(0); 
    visibility: visible;
}

.su_main_menu_ul_movil{
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.back_icon{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 22px;
    height: 22px;
}

.su_main_menu_ul_movil>li{
    margin-bottom: 20px;
}

.su_main_menu_ul_movil>li>a{
    color: #000;
    text-decoration: none;
    font-size: 1.3em;
    display: block;
}

.su_sub_menu_div_movil{
    overflow: hidden;
    max-height: 0; /* ÃÊ±â ´ÝÈû ³ôÀÌ */
    transition: max-height 0.3s ease-out; /* ¼­ºê ¸Þ´º ½½¶óÀÌµå ¾Ö´Ï¸ÞÀÌ¼Ç */
    padding-top: 10px;
}

.su_sub_menu_ul_movil{
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-left: 25px;
}

.su_sub_menu_ul_movil>li{
    margin:5px 0;
}

.su_sub_menu_ul_movil>li>a{
    text-decoration: none;
    color: #000;
    font-size: 1.1em;
    display: block;
    padding: 5px 0;
}

.su_sub_menu_ul_movil>li>a:hover{
    color: #0069b6;
    transition: 0.2s;
    font-weight: bold;
}

@media (max-width: 768px) {
     .su_main_movil_icon {
         display: block;
     }
}

@media (min-width: 769px) {
    .su_main_movil_icon {
        display: none;
    }
    .su_main_movil_meunu {
         transform: translateX(100%);
         visibility: hidden;
    }
}



/* ¸ÞÀÎ ºñÁê¾ó ½½¶óÀÌµå */

#su_main_visual_slide{
    width: 100%;
    height: 460px;
    margin-top: 45px;
}

.su_main_visual_div{
    width: 1620px;
    height: 100%;
    margin: 0 auto;
    display: flex;
   
}

/* swiper */

.su_main_swiper {
    width: 90%; 
    height: 450px; 
    position: relative; 
    overflow: hidden; 
    border-radius: 25px 25px 0 25px;
}

.su_main_swiper .swiper {
    width: 100%;
    height: 100%;
}


.su_main_swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.su_main_swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.su_main_swiper .swiper-controls {
    background-color: #fff;
    display: flex; 
    align-items: center;
    gap: 10px;
    border-radius: 18px 0 0 0px;
    width: 160px;
    padding:18px 20px
}

.su_main_swiper .swiper-button-prev:after,
.su_main_swiper .swiper-button-next:after {
    content: ''; 
}


.su_main_swiper .swiper-button-prev,
.su_main_swiper .swiper-button-next {
     position: static; 
     width: 30px; 
     height: 30px;
     color: white;
     border-radius: 50%; 
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     font-size: 1em; 
     font-weight: bold;
     padding-top: 15px;
}

.swiper-pagination-current{
    color: #0069b6;
}

.swiper-pagination-total{
    color: #aaa;
}

.su_main_swiper .swiper-pagination {
    position: static; 
    width: auto; 
    text-align: center;
    font-size: 1.1em;
    color: #aaa;
    font-weight: bold;
}




.su_main_swiper .swiper-autoplay-toggle {
    padding: 5px 10px;
    background-color: #aaaaaa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}


.su_main_swiper .swiper-controls {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.radius_but{
    width: 14px;
    height: 11px;
    position: absolute;
    z-index: 50;
    right: 0px;
    bottom: 61px;
    background-image: url(../img/round_icon.png);
    background-position: center;
    background-size: cover;
}

.radius_but2{
    width: 14px;
    height: 11px;
    position: absolute;
    z-index: 50;
    right: 197px;
    bottom: 0px;
    background-image: url(../img/round_icon.png);
    background-position: center;
    background-size: cover;
}

.su_main_swiper .swiper-autoplay-toggle-img {
    width: 10px;
    height: 16px;
    cursor: pointer; 
    vertical-align: middle; 
}

.quick_menu{
    width: 10%;
}

.quick_menu_ul{
    list-style: none;
    margin-top: 10px;
}

.quick_menu_ul>li{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quick_menu_ul>li>a{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
}

.quick_menu_ul>li>a>img{
    margin-bottom: 10px;
    width: 70%;
}

.quick_menu_ul>li>a>p{
    margin: 0;
    font-size: 17px;
    color: #000;
}


/* ÄÁÅÙÃ÷ ¹Ú½º1 */

#su_main_content_box1{
    width: 100%;
    height: 310px;
}

.su_main_content_box1_div{
    width: 1620px;
    height: 100%;
    margin: 0 auto;
    display: flex;
}
.content_list_box{
    margin-right: 20px;
}

.content_list_box:nth-child(1){
    width: 42%;
}
.content_list_box:nth-child(2){
    width: 34%;
}
.content_list_box:nth-child(3){
    width: 19%;
    margin: 0;
}

.content_title_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content_title{
margin: 20px 0;
}

.link_box>a{
    text-decoration: none;
    color: #000;

}

.popup{
    color: #000;
    text-decoration: none;
    display: inline-block;
}

.post_list{
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post_text{
    color: #000 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 82%;
    

}
.post_text>a{
    color: #000;
    text-decoration: none;
    font-size: 1.1em;
}

.post_list>span{
    color: #666;
    white-space: nowrap;
}

.event_box{
    width: 100%;
    height: 220px;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 10px 20px;
    overflow: hidden;
}

.post_box{
    height: 240px;
}


.event_box_list{
    list-style: none;
}

.event_list_box{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.event_list_box:nth-last-of-type(1){
    margin: 0;
}

.event_info{
    background-color: #003058;
    border-radius: 10px;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.event_info>h4{
    color: #fff;
    font-weight: bold;
    box-sizing: border-box;
   margin: 0;
   text-align: center;
   font-size: 18px;
   
}

.event_info>span{
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 11px;
}

.event_list_box>p{
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* ÄÁÅÙÃ÷ ¹Ú½º2 */

#su_main_content_box2{
    width: 100%;
    height: 670px;
    position: relative;
}




.su_main_content_box2_div{
    width: 1620px;
    height: 470px;
    margin: 0 auto;
    display: flex;
}

.cont_box2_list{
    width: 500px;
    margin-right: 40px;
    margin-top: 15px;
    box-sizing: border-box;
}

.movie_link_box{
    text-decoration: none;
}

.movie_link_box:hover{
    opacity: 0.8;
    transition: 0.3s;
}

.cont_box2_list_imgbox{
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
   
}

#imgbox_move2 {
    position: absolute;
    bottom: 85px;
    right: 60px;
    z-index: 1;
}

#imgbox_move {
    position: absolute;
    bottom: 70px;
    right: 45px;
    width: 110px;
    height: 110px;
    background: #0d348f;
    opacity: 0.7;
    border-radius: 50%;
}
.movie_img_no{
    height: 330px;
    width: 500px;
    box-shadow: 6px 7px 3px #bcbbbb;
}
.cont_box2_list_imgbox>img{
    border-radius: 15px;

}

.movie_title{
    display: flex;
    justify-content:space-between;
    align-items: center;
}

#movie_title_box{
    display: flex;
    align-items: center;
}

#movie_title_box>img{
    margin-right: 10px;
}

#movie_title_box>h2{
    color: #000;
}


#movie_link_box{
    display: flex;
    align-items: center;
}

#movie_link_box>a{
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    img{
        margin-left: 5px;
    }
}

.cont_box2_list2{
    width: 1080px;
    position: relative;
    overflow: hidden;
    margin-right: 30px;
    padding-top: 20px;
    box-sizing: border-box;
}

.poto_title_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

.poto_title{
    display: flex;
    align-items: center;
}
.poto_title>img{
    margin-right: 10px;
}

.poto_title>h2{
    font-size: 28px;
}

.poto_move{
    display: flex;
}

.poto_left{
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
}

.poto_right{
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
}

.poto_link{
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poto_list{
    display: flex;
    justify-content:space-around;
    width: 100%;
    position: absolute;
    flex-wrap: nowrap; /* ½½¶óÀÌµå Ç×¸ñÀÌ ÁÙ¹Ù²ÞµÇÁö ¾Êµµ·Ï ¼³Á¤ */
    transition: transform 0.5s ease-in-out; /* transform º¯È­ ½Ã 0.5ÃÊ°£ ºÎµå·´°Ô ¿òÁ÷ÀÓ */
}

.poto_list_box{
    margin-right: 25px;
    width: 31%;
    flex-shrink: 0; 
}

.poto_list_link_box{
    text-decoration: none;
    color: #000;
}

.poto_list_link_box>img{
    border-radius: 20px;
    width: 340px;
    height: 235px;
    
    display: block; /* ÀÌ¹ÌÁö ÇÏ´Ü ¿©¹é Á¦°Å */
}
.poto_list_link_box>h3{
    font-size: 1.2em;
    margin-top: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.organ_logo{
    width: 1620px;
    height: 80px;
    background: #fff;
    border: 20px;
    margin: 50px auto 0;
    border-radius: 15px;
}


/* ÄÁÅÙÃ÷2 µÞ¹è°æ */


.cont2_background{
    width: 100%;
    height: 560px;
    background: #eff3f8;
    position: absolute;
    top: 110px;
    z-index: -1;
}
.organ_logo{
    display: flex;
    justify-content: center;
}
.organ_logo>ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
}

.organ_logo>ul>li>a{
    display: flex;
    justify-content: center;
}



/* ÇªÅÍ */


#su_main_footer{
    border-top: 1px solid #e0e0e0;
    width: 100%;
    height: 280px;
    
}

.su_main_fot_box{
    width: 1620px;
    margin: 20px auto 0;
   
}

.fot_top_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.fot_link_box>ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
    
}

.fot_link_box>ul>li>a{
    text-decoration: none;
    color: #000;
}
.fot_text_col>a{
    color: #4175a2 !important;
    font-weight: bold;
}
.fot_link_box>ul>li{
    margin-right: 10px;
    margin-left: 10px;
}

.fot_li_st{
    position: relative;
   
}
.fot_li_st::after{
    content: "";
    position: absolute;
    top: 29%;
    width: 1px;
    height: 15px;
    background: #ddd;
    margin-left: 10px;
}

.title_dino{
    display: none;
}
.movie_img_bl{
 display: none;
}
.fot_bot_text>p{
    margin: 10px 0;
}
.event_list_box>a{
    white-space: nowrap;
}

/* 1650px */

@media (max-width:1649px){
    .su_main_top_div{
        width: 100%;
        padding: 10px 20px;
        box-sizing: border-box;
    }
    .su_main_menu_div{
        width: 100%;
        padding: 0 0px;
        box-sizing: border-box;
    }
    .su_main_menu_ul{
        padding: 0;
    }
    .su_main_visual_div{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .su_main_content_box1_div{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .su_main_content_box2_div{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .su_main_fot_box{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .organ_logo{
        width: 99%;
    }
    .organ_logo>ul>li{
        width: 16%;
    }

    .poto_list_link_box>img {
        width: 100%;
    }

    .poto_list_link_box>h3 {
        font-size: 1.2em;
    }
    .poto_title>h2 {
        font-size: 24px;
    }
    #movie_title_box>h2{
        font-size: 24px;
    }
    .cont_box2_list {
        width: 35%;
    }
    .cont_box2_list2 {
        width: 65%;
        margin-right: 20px;
    }
    .fot_top_box {
        padding:0 0px 20px 0px;
    }

    .fot_bot_text{
        padding: 20px 0;
    }
  
    .poto_list_box{
        width: 48%;
    }
    .su_main_swiper .swiper-slide img {
        object-fit: inherit;
    }
 

}

/* 1500px */

@media (max-width:1500px){
    .text_fot{
        white-space: wrap !important;
    }
}

/* 1400px */

@media (max-width:1399px){
    .su_main_swiper {
        width: 100%;
    }
    .quick_menu {
        width: 10%;
        position: absolute;
        z-index: 1;
        background: #fff;
        border-radius: 10px;
        right: 20px;
        opacity: 0.8;
        top: 180px;
    }
    .quick_menu_ul>li>a>img {
        margin-bottom: 10px;
    }

.quick_menu_ul {
    margin-top: 5px;
}
.quick_menu_ul>li>a {
    margin-bottom: 5px;
}
.quick_menu_ul>li>a>p {
    font-size: 0.9em;
}

    #su_main_content_box2 {
        width: 100%;
        height: 1200px;
    }
    .su_main_content_box2_div {
        flex-direction: column;
    }
    .cont_box2_list {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 30px;
    }
    .cont_box2_list2 {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }
    .su_main_content_box2_div {
        height: 900px;
    }
    .poto_list_box {
        width: 32%;
        margin-right: 25px;
    }
    #movie_title_box>h2 {
        font-size: 1.8em;
    }
    .poto_title>h2 {
        font-size: 1.8em;
    }
    .mo_ti_no{
        display: none;
    }
    .title_dino{
        display: flex !important;
    }
    .movie_img_no{
        display: none;
    }
    .movie_img_bl{
        display: inline-block;
        height: 300px;
        width: 100%;
    }
    #imgbox_move2 {
        bottom: 30px;
    }
    #imgbox_move {
        bottom: 15px;
    }
    .cont2_background {
        height: 1170px;
        top: 30px;
    }
    .quick_menu_ul>li>a {
        margin-bottom: 7px;
    }
    .poto_list_link_box>img {
        height: 220px;
    }
    .poto_list_link_box>h3 {
        margin-top: 10px;
    }
}

@media (max-width:1300px){
    #logo_icon_box{
        display: none;
    }
    .su_main_menu_div {
        justify-content: center;
    }
    .su_main_menu_div2 {
        width: 100%;
    }
}

/* 1200px */

@media (max-width:1199px){
  
    .su_main_menu_div2 {
        width: 100%;
    }
    .quick_menu_ul>li>a {
        margin-bottom: 13px;
    }
    .su_sub_menu_ul {
        width: 200px;
    }
    .quick_menu_ul>li>a>p {
        font-size: 0.8em;
    }
    .quick_menu_ul>a>img{
        width: 90%;
    }
    .su_main_content_box1_div {
        flex-wrap: wrap;
    }
    .content_list_box:nth-child(1) {
        width: 46%;
    }
    .content_list_box:nth-child(2) {
        width: 46%;
    }
    .content_list_box:nth-child(3) {
        width: 46%;
    }
    #su_main_content_box1 {
        height: 680px;
    }
    .organ_logo>ul>li>a>img{
        width: 80%;
    }
    .poto_list_box {
        width: 48%;
    }
}

/* 1000px */

@media (max-width:999px){
    .quick_menu_ul>li>a>img {
        width: 65%;
    }
    .quick_menu_ul>li>a>p {
        font-size: 0.7em;
        white-space: nowrap;
    }
    .quick_menu {
        top: 182px;
    }
    .su_sub_menu_ul {
        width: 162px;
    }
    .su_main_menu_ul > li > a {
        font-size: 1em;
    }
    .su_sub_menu_ul > li > a {
        font-size: 0.8em;
    }

    .swiper-controls{
        bottom: -1px !important;
    }
    .radius_but {
        right: -2px;
        bottom: 59px;
    }
    .radius_but2 {
        right: 196px;
        bottom: -2px;
    }
    .quick_menu_ul>li>a {
        margin-bottom: 16px;
    }
  
}

/* 900px */



@media (max-width:899px) {
    .su_sub_menu_ul {
          width: 135px !important;
      }
      .su_main_menu_ul>li>a{
          font-size: 0.8em !important;
      }
      .su_sub_menu_ul > li > a {
          font-size: 0.65em;
      }
  }
  
  
  /* 800 */
  @media (max-width:799px){
    
      .fot_top_box{
          flex-direction: column;
      }
      .fot_img_box{
          margin-bottom: 10px;
      }
  
       
      .su_main_swiper {
          height: 340px;
      }
      .quick_menu_ul>li>a>img {
          width: 80%;
      }
      .quick_menu {
          width: 95%;
          opacity: 1;
          top: 560px;
          border: 1px solid #ddd;
          left: 15px;
      }
  
      .quick_menu_ul {
          display: flex;
           justify-content: flex-start;
           padding: 0;
      }
      .quick_menu_ul>li{
        margin-right: 15px;
      }
      #su_main_visual_slide {
          height: 520px;
      }
  
  }
  
  @media (max-width:770px){
      .su_main_menu_div2 {
          display: none;
      }
      #logo_icon_box {
          display: flex;
      }
  }
  
  
  /* 769px */
  
  @media (max-width:769px){
      .su_sub_menu_ul {
          width: 130px;
      }
    
      .fot_top_box{
          flex-direction: column;
      }
      .fot_img_box{
          margin-bottom: 10px;
      }
      .su_main_menu_div {
        justify-content: start;
    }
    #logo_icon_box {
        margin-left: 10px;
    }

    #su_main_content_box2 {
        height: 1100px;
    }
    .cont2_background {
        height: 1070px;
    }

  }
  
  
  
  
  
  /* 700 */
  @media (max-width:700px){
   
      .su_main_content_box1_div {
          flex-wrap: nowrap;
          flex-direction: column;
      }
      .content_list_box:nth-child(1) {
          width: 100%;
      }
      .content_list_box:nth-child(2) {
          width: 100%;
      }
      .content_list_box:nth-child(3) {
          width: 100%;
      }
      #su_main_content_box1 {
          height: 970px;
      }
      #su_main_content_box2 {
          width: 100%;
          height: 1100px;
      }
      .cont2_background {
          height: 1070px;
          border-radius: 20px;
      }
  
  }
  
  /* 600px */
  
  @media (max-width:600px){
      .su_top_home {
          display: none;
      }
   
      .su_log{
      width: 100%;
      display: flex;
      justify-content: right;
      }
      .su_main_movil_meunu {
          width: 70%;
      }
          #su_main_visual_slide {
          height: 380px;
      }
      .quick_menu {
          width: 92%;
          top: 435px;
      }
      .event_box {
        height: 220px;
    }
      .su_main_swiper {
          height: 230px;
      }
      .poto_left{
          width: 36px;
          height: 36px;
      }
      .poto_right{
          width: 36px;
          height: 36px;
      }
      .poto_link{
          width: 36px;
          height: 36px;
      }
      .poto_list_box {
          width: 47%;
      }
      .poto_list_link_box>img {
          height: 150px;
      }
      .poto_list_link_box>h3 {
          font-size: 0.8em;
      }
      .organ_logo {
          margin: 10px auto 0;
      }
      .su_main_content_box2_div {
        height: 840px;
    }
    .cont2_background {
        top: 0px;
    }
    #imgbox_move {
        bottom: 10px;
        right: 15px;
        width: 80px;
        height: 80px;
    }
    #imgbox_move2 {
        width: 60px;
        bottom: 20px;
        right: 25px;
    }
      #su_main_content_box2 {
          width: 100%;
          height: 1020px;
      }
      .cont2_background {
          height: 1020px;
      }
      .poto_title_box {
          margin-bottom: 20px;
      }
    .fot_bot_text>p{
      font-size: 0.8em;
    }
    .fot_li_st::after {
      top: 20%;
      display: none;
  }
  .fot_link_box>ul>li {
    margin-right: 10px;
    margin-left: 0px;
}
   
    .fot_link_box>ul>li{
      font-size: 0.6em !important;
    }
    .movie_img_no {
      display: block;
      width: 100%;
  }
  .movie_img_bl{
      display: none;
  }
  .content_title{
    font-size: 1.3em;
  }
  #movie_title_box>h2 {
    font-size: 1.3em;
}
.poto_title>h2 {
    font-size: 1.3em;
}

#popupZoneLayerBody {
    width: 390px !important;
    height: 370px !important;
}
.popupZone01 {
    background-position: center !important;
    background-size: cover !important;
}
#popupZoneLayerBody .popupZoneList {
    width: 355px !important;
    height: 226px !important;
}
#popupZoneLayerBody .popupZoneFooter .popupZoneRefusal {
    width: 290px !important;
}
#popupZoneLayer {
    left: 0px !important;
}
    
  }

  @media (max-width:500px){
    .su_main_content_box2_div {
        height: 790px;
    }
    #su_main_content_box2 {
        width: 100%;
        height: 900px;
    }
    .cont2_background {
        height: 841px;
    }
    .su_sub_menu_ul {
        width: 165px !important; 
    }
    .su_main_swiper .swiper-controls {
        width: 90px;
        padding: 5px 10px;
    }
    .su_main_swiper .swiper-pagination {
        display: none;
    }
    .radius_but {
        bottom: 30px;
    }
    .radius_but2 {
        right: 105px;
    }
  }
  
