.popup_btn{
    display: inline-block;
    padding: 0px 6px;
    border-radius: 99px;
    border: 1px solid #1F1F1F;
    color: #1F1F1F;
    cursor: pointer;
    line-height: 1.3em;
    font-size: 12px;
    margin-top: 20px;
    background-color: #fff;
}

.popup_btn:hover{
    background-color: #1F1F1F;
    color: #FF7B00;
    border: 1px solid #FF7B00;
}

.popup{
    position: fixed;
    left: 0px;
    top:0px;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0,0,0,0.8); 
    z-index: 999;
}

.popup_inner{
    position: absolute;
    left: 0px;
    top:0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_content{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 20px;
    top:20px;
    bottom:20px;
    right:20px;
    margin: auto;
    padding: 0px;
    background-color: #fff;
}

.popup_close{
    position: absolute;
    top:30px;
    right:30px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 10000;
}

.popup_close::before{
    content:"";
    position: absolute;
    top:0px;
    right:0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform: rotate(-45deg);
}

.popup_close::after{
    content:"";
    position: absolute;
    top:0px;
    right:0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform: rotate(45deg);
}

.popup_close:hover{
    filter: drop-shadow(0 0 8px #FF7B00);
}

.o_text{
    color: #FF7B00;
}

.sticky{
    position: sticky;
    top:0px;
}
.close_btn{
    position: fixed;
    top:40px;
    right:74px;
    width: 64px;
    height: 64px;
    cursor: pointer;
    border-radius: 100% 100%;
}

.close_btn:hover{
    filter: drop-shadow(0 0 8px #FF7B00);
}

.close_btn::before{
    content:"";
    position: absolute;
    top:0px;
    right:0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    width: 50px;
    height: 50px;
    border:3px solid #1F1F1F;
    border-radius: 100% 100%;
    box-sizing: border-box;
}

.close_btn .line1{
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #1F1F1F;
    top:0px;
    right:0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    transform: rotate(-45deg);
}

.close_btn .line2{
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #1F1F1F;
    top:0px;
    right:0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    transform: rotate(45deg);
}

.background_video{
	-webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.body_archive .background_video{
    opacity: 0;
}

.body_about .background_video{
    opacity: 0;
}

.body_detail .background_video{
    opacity: 0;
}

.logo{
	-webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s, filter 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s, filter 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    position: fixed;
    right:0%;
    left: 0%;
    margin: auto;
    height: 250px;
    top:50%;
    margin-top: -125px;
}

.body_archive .logo{
    top:0%;
    margin-top: 28px;
}

.body_about .logo{
    top:0%;
    margin-top: 28px;
}

.body_detail .logo{
    top:0%;
    margin-top: 28px;
}

.hover_home.body_about .logo, .hover_home.body_archive .logo{
    filter: drop-shadow(0 0 8px #FF7B00);
}


.body_home .archive_content_wrapper, .body_home .about_content_wrapper, .archive_content_wrapper, .about_content_wrapper{
    top:-200%;
}

.loadfinish.body_archive .archive_content_wrapper{
    top:0%;
    opacity: 1;
}

.loadfinish.body_about .archive_content_wrapper, .loadfinish.body_detail .archive_content_wrapper{
    top:0%;
    opacity: 1;
}

.loadfinish.body_about .about_content_wrapper{
    top:0%;
    opacity: 1;
}

.loadfinish.body_archive .about_content_wrapper, .loadfinish.body_detail .about_content_wrapper{
    top:0%;
    opacity: 1;
}

.archive_first .archive_content_wrapper{
    z-index: 5;
}

.about_first .about_content_wrapper{
    z-index: 5;
}

.archive_first .scroll_btn_archive{
    display: block;
}

.about_first .scroll_btn_about{
    display: block;
}

.tab_head{
	-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    position: absolute;
    bottom: 100%;
    background-color: #1F1F1F;
    color:#FAF9F6;
    height: 50px;
    line-height: 50px;
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    transform: translateY(1px);
}

.tab_head::before{
	-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
}

.body_about .archive_content_inwrapper:hover .tab_head{
    padding-top:4px !important;
    padding-bottom: 4px !important;
    transform: translateY(0px);
    color:#FF7B00;
}

.body_archive .about_content_inwrapper:hover .tab_head{
    padding-top:4px !important;
    padding-bottom: 4px !important;
    transform: translateY(0px);
    color:#FF7B00;
}



.body_about .archive_content_inwrapper:hover .tab_head::before {
  border-width: 62px 0 0 25px;
}

.body_archive .about_content_inwrapper:hover .tab_head::before {
  border-width: 0 0 62px 25px;
}

.archive_content_inwrapper, .about_content_inwrapper{
	-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transform: translateY(0px);
    transform-origin: 50% 100%;
}

.body_about .archive_content_inwrapper{
    transform: translateY(0px);
}

.body_about .archive_content_inwrapper:hover{
    transform: translateY(-40px);
    filter: drop-shadow(0 0 16px #FF7B00);
}

.body_archive.hover_about .archive_content_inwrapper{
    transform: translateY(180px) rotate(-3deg);
}

.body_archive.hover_about .archive_content_inwrapper .archive_content{
    opacity: 0.5;
}

.body_archive .about_content_inwrapper{
    transform: translateY(0px);
}


.body_archive .about_content_inwrapper:hover{
    transform: translateY(-40px);
    filter: drop-shadow(0 0 16px #FF7B00);
}

.body_about.hover_archive .about_content_inwrapper{
    transform: translateY(180px) rotate(3deg);
}

.body_about.hover_archive .about_content_inwrapper .about_content{
    opacity: 0.5;
}

.body_about.hover_archive .archive_content_inwrapper .archive_content{
    opacity: 1;
}

.tab_overlay{
    position: absolute;
    left: 0px;
    top:0px;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

.body_about .about_content_inwrapper .tab_overlay{
    display: none;
}

.body_archive .archive_content_inwrapper .tab_overlay{
    display: none;
}

/* .about_content_inwrapper{
    left: 30px;
}

.body_about .about_content_inwrapper{
    left: 0px;
}

.archive_content_inwrapper{
    left: -30px;
}

.body_archive .archive_content_inwrapper{
    left: 0px;
} */

/* home */

.home_btn{
    position: fixed;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    display: block;
}

.body_home .home_btn{
    pointer-events: none;
}

.scroll_btn{
	-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    position: fixed;
    left:0px;
    right: 0px;
    margin: auto;
    width: 20px;
    height: 20px;
    border:1px solid #FAF9F6;
    border-radius: 100%;
    bottom: 96px;
    display: none;
}

.scroll_btn .arrow{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    animation: scroll_btn 2s ease 0s infinite;
}

.scroll_btn:hover{
    filter: drop-shadow(0 0 3px #FF7B00);
}

@keyframes scroll_btn {
  0%   {
    transform: translateY(3px);
  }
  25%  {
    transform: translateY(-3px);
  }
  50%  {
    transform: translateY(3px);
  }
  75%  {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(3px);
  }
}

.scroll_btn .arrow::before{
    content:"";
    width: 13px;
    height: 13px;
    top:0%;
    right: 0%;
    bottom: 35%;
    left: 0%;
    margin: auto;
    transform: rotate(45deg);
    border-bottom:1px solid #FAF9F6;
    border-right:1px solid #FAF9F6;
    display: block;
    position: absolute;
}

.scroll_btn .arrow::after{
    content:"";
    height: 20px;
    left: 0px;
    right: 0px;
    bottom: 25%;
    margin: auto;
    width: 1px;
    background-color: #FAF9F6;
    position: absolute;
}


/* about */



.about_content_wrapper{
	-webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s, z-index 0s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s, z-index 0s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    position: absolute;
    top:-200%;
    left: 0%;
    right: 0%;
    z-index: 3;
    margin: auto;
    padding-left: 70px;
    pointer-events: none;
    opacity: 0;
}


.about_content_wrapper .tab_head{
    right: 0%;
    padding:8px 96px 8px 16px;
}


.about_content_wrapper .tab_head::before{
    content:"";
    position: absolute;
    right: 100%;
    top:0px;
    bottom: 0px;
    margin: auto;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 70px 25px;
    border-color: transparent transparent #1F1F1F transparent;
    transform: rotate(0deg);
}

.about_content_inwrapper{
    background-color: #1F1F1F;
    margin-top: 150px;
    margin-left: auto;
    max-width: 1024px;
    filter: drop-shadow(0 0 8px #FF7B00);
    color:#FAF9F6;
    padding: 0px 70px;
    position: relative;
    pointer-events: auto;
}

.about_content_inwrapper a{
    color:#FAF9F6;
}

.about_content{
    display: flex;
    flex-direction: column;
    padding: 32px 0px;
    gap: 24px;
	font-variation-settings: "wght" 300;
	-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
}

.body_about .about_content{
}

.about_row{
    display: flex;
    gap: 72px;
}

.about_col1{
    width: 164px;
    flex:0 0 164px;
}

.about_sns{
	font-variation-settings: "wght" 300;
}

.about_sns a{
    color: #727272;
    padding-top: 8px;
    padding-bottom: 8px;
    display: inline-block;
}

.about_sns a:hover{
text-shadow: 0 0 10px #FAF9F6;
}

.logo_group + .logo_group{
    margin-top: 40px;
}

.logo_group img{
    width: 164px;
}

.logo_group img + img{
    margin-top: 24px;
}

.logo_group .logo_group_title{
    margin-bottom: 8px;
	font-variation-settings: "wght" 300;
    color: #727272;
}

/* archive */


.archive_content_wrapper{
	-webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s, z-index 0s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s, z-index 0s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    position: absolute;
    top:-200%;
    left: 0%;
    right: 0%;
    z-index: 4;
    margin: auto;
    pointer-events: none;
    opacity: 0;
}



.archive_content_wrapper .tab_head{
    left: 0%;
    padding: 8px 16px 8px 96px;
    background-color: #FAF9F6;
    color:#1F1F1F;
}


.archive_content_wrapper .tab_head::before{
    content:"";
    position: absolute;
    left: 100%;
    top:0px;
    bottom: 0px;
    margin: auto;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 70px 0 0 25px;
    border-color: transparent transparent transparent #FAF9F6;
    transform: rotate(0deg);
}

.archive_content_inwrapper{
    background-color: #FAF9F6;
    margin-top: 150px;
    margin-right: 48px;
    position: relative;
    filter: drop-shadow(0 0 8px #FF7B00);
    pointer-events: auto;
}


.archive_content{
    padding: 96px;
    padding-right: 48px;
    padding-top: 0px;
}

.archive_content{
	-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    opacity: 0.5;
    pointer-events: none;
    /* opacity: 0;
    transform: translateY(100px); */
}

.body_archive .archive_content, .body_detail .archive_content{
    opacity: 1;
    pointer-events: auto;
    /* opacity: 1;
    transform: translateY(0px); */
}

.archive_item_wrapper{
    margin-left: -4px;
    margin-right: -4px;
}

.grid{
    width: 100%;
}

.archive_item{ 
    margin-bottom: 6px; 
}

.grid-item{  
    width: 20%;
}

.grid-item2{
    width: 40%;
}

.archive_item .tag_wrapper {
    display: flex;
    gap: 6px;
    background-color: #1F1F1F;
    padding: 4px;
    flex-wrap: wrap;
}

.archive_item .tag_wrapper  a{
    display: inline-block;
    padding: 0px 6px;
    border-radius: 99px;
    border:1px solid #FAF9F6;
    color: #FAF9F6;
    line-height: 1.3em;
}

.archive_item .tag_wrapper  a:hover{
    background-color: #FF7B00;
    color: #1F1F1F;
    border:1px solid #FF7B00;
}

.archive_item .spacing{
    padding: 0px 4px;
}

.archive_item .img_wrapper{
    display: block;
}

.archive_item .archive_item_hover{
	-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
}

.archive_item:hover .archive_item_hover{
    box-shadow: 0 0 16px #FF7B00;
}

.archive_item .img_wrapper:first-child{
    margin-top: auto;
}

.archive_item img{
    width: 100%;
    height: auto;
    display: block;
}

.archive_item .text_wrapper{
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
}

.archive_item .text_wrapper > *{
    color:#727272;
	font-variation-settings: "wght" 300;
}

.archive_item:hover .text_wrapper > *{
    color:#FF7B00;
}

.filter_menu{
    padding: 32px 0px 32px 0px;
    display: flex;
    flex-wrap: wrap;
      gap: 4px;
}

.filter_menu_group{
    display: flex;
    gap: 8px;
}

.filter_menu_group .group_title{
    color:#727272;
	font-variation-settings: "wght" 300;
}

.filter_menu_group1{
    width: 40%;
    align-items: start;
}

.filter_menu_group2{
    width: calc(60% - 6px);
    align-items: start;
}

.filter_menu ul{
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-content: center;
}

.filter_menu ul a.hash-link{
    display: inline-block;
    padding: 0px 6px;
    border-radius: 99px;
    border:1px solid #1F1F1F;
    color:#1F1F1F;
    cursor: pointer;
    line-height: 1.3em;
}

.filter_menu ul a.hash-link.active, .filter_menu ul a.hash-link:hover{
    background-color: #1F1F1F;
    color: #FF7B00;
}


/* art */
.load_content_wrapper{
    height: 100%;
}



.load_content{
    min-height: 100%;
}

.content_spacing{
    padding: 96px;
    margin: auto;
}

.art_detail_wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap:8px;
    pointer-events: auto;
    position: relative;
}

.art_detail_wrapper .close_btn{
	-webkit-transition: opacity 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s, transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: opacity 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s, transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    position: absolute;
    top:0px;
    right: 0px;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
}

.finish_load_ajax .art_detail_wrapper .close_btn{
    opacity: 1;
    transform: scale(1);
}

.art_image_wrapper{
	-webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    flex:6;
    position: relative;
    opacity: 0;
    transform: translateY(100px);
}

.art_text_wrapper{
	-webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0s; 
    flex:4;
    position: relative;
    opacity: 0;
    transform: translateY(100px);
}

.finish_load_ajax .art_image_wrapper{
    opacity: 1;
    transform: translateY(0px);
}

.finish_load_ajax .art_text_wrapper{
    opacity: 1;
    transform: translateY(0px);
}

.art_image_wrapper img{
    width: 100%;
    height: auto;
    box-shadow: 0 0 50px 3px rgba(255, 123, 0, 0.40);
}

.art_image_wrapper .v_image{
    width: 66.66%;
    height: auto;
}


.art_image_wrapper li+ li{
    margin-top: 24px;
}

.art_title, .art_date{
    font-family: "Noto Sans TC", "arial", sans-serif;
}

.art_title{
    padding-top: 90px;
}

.art_title .tag_wrapper  {
    font-family: "ouma-latin-variable", "Noto Sans TC", "arial", sans-serif;
    float: right;
    margin-left: 24px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.art_title .tag_wrapper.left_tag_wrapper{
    float: none;
    margin-left: 0px;
}

.art_title .tag_wrapper  a{
    display: inline-block;
    padding: 0px 6px;
    border-radius: 99px;
    border:1px solid #1F1F1F;
    color: #FAF9F6;
    line-height: 1.3em;
    background-color: #1F1F1F;
}

.art_title .tag_wrapper  a:hover{
    background-color: #FAF9F6;
    color: #1F1F1F;
    border:1px solid #1F1F1F;
}

.art_description{
    margin-top: 24px;
}

.art_description .en_description, .art_description .tc_description{
    margin-top: 24px;
}

.art_description .en_description:first-child, .art_description .tc_description:first-child{
    margin-top: auto;
}

.art_sound{
    margin-top: 24px;
}

.ply_wrapper_wrapper{
    position: relative;
}

.ply_wrapper{
    padding-bottom: 56.25%;
    position: relative;
}

.v_ply_wrapper_wrapper{
    width: 66.66%;
    width: 100%;
    /* box-shadow: 0 0 50px 3px rgba(255, 123, 0, 0.40); */
    cursor: move;
}

.v_ply_wrapper_wrapper .ply_wrapper{
    padding-bottom: 100%;
}
.vertical_ply_wrapper_wrapper{
    width: 66.66%;
}

.vertical_ply_wrapper_wrapper .ply_wrapper{
    padding-bottom: 150%;
}


.ply_wrapper canvas{
    position: absolute;
    left: 0px;
    top:0px;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
}


.ply_wrapper dialog {
  width: 100%;
  text-align: center;
  max-width: 20em;
  color: white;
  background-color: #000;
  border: none;
  position: relative;
  transform: translate(-50%, -50%);
}

.ply_wrapper .progress-container {
  position: absolute;
  top: 50%;
  left: 50%;
}

.ply_wrapper progress {
  width: 100%;
  height: 1em;
  border: none;
  background-color: #fff;
  color: #eee;
}

.ply_wrapper progress::-webkit-progress-bar {
  background-color: #333;
}

.ply_wrapper progress::-webkit-progress-value {
  background-color: #eee;
}

.ply_wrapper progress::-moz-progress-bar {
  background-color: #eee;
}

.video_wrapper_wrapper{
    width: 66.66%;
    box-shadow: 0 0 50px 3px rgba(255, 123, 0, 0.40);
    cursor: pointer;
}

.video_wrapper_wrapper .play_btn{
    position: absolute;
    top:0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 30px 0 30px 50px;
    border-color: transparent transparent transparent #fff;
    transform: rotate(0deg);
}

@media screen and (max-width: 1280px) { 


    .grid-item {
        width: 33.33%;
    }

    .grid-item2 {
        width: 66.66%;
    }
}

@media screen and (max-width: 1023px) { 

}


@media screen and (max-width: 640px) { 

    .logo {
        height: 150px;
    }


    .body_about .archive_content_inwrapper:hover .tab_head{
        padding-top:8px !important;
        padding-bottom: 8px !important;
    }

    .body_archive .about_content_inwrapper:hover .tab_head{
        padding-top:8px !important;
        padding-bottom: 8px !important;
    }



    .body_about .archive_content_inwrapper:hover .tab_head::before {
    border-width: 70px 0 0 25px;
    }

    .body_archive .about_content_inwrapper:hover .tab_head::before {
    border-width: 0 0 70px 25px;
    }


    .body_about .archive_content_inwrapper{
        transform: translateY(0px);
    }

    .body_about .archive_content_inwrapper:hover{
        transform: translateY(0px);
        filter: drop-shadow(0 0 16px #FF7B00);
    }

    .body_archive.hover_about .archive_content_inwrapper{
        transform: translateY(0px) rotate(0deg);
    }

    .body_archive.hover_about .archive_content_inwrapper .archive_content{
        opacity: 1;
    }

    .body_archive .about_content_inwrapper{
        transform: translateY(0px);
    }


    .body_archive .about_content_inwrapper:hover{
        transform: translateY(0px);
        filter: drop-shadow(0 0 16px #FF7B00);
    }

    .body_about.hover_archive .about_content_inwrapper{
        transform: translateY(0px) rotate(0deg);
    }

    .body_about.hover_archive .about_content_inwrapper .about_content{
        opacity: 1;
    }

    .body_about.hover_archive .archive_content_inwrapper .archive_content{
        opacity: 1;
    }




    .filter_menu_group1, .filter_menu_group2{
        width: auto;
    }

    .archive_content_inwrapper {
        margin-right: 24px;
    }

    .archive_content_wrapper .tab_head {
        padding: 8px 16px 8px 20px;
    }

    .archive_content {
        padding: 96px;
        padding-right: 12px;
        padding-left: 24px;
        padding-top: 0px;
    }

    .grid-item {
        width: 50%;
    }

    .grid-item2 {
        width: 100%;
    }

    .about_content_wrapper .tab_head {
    padding: 8px 20px 8px 16px;
    }

    .about_content_wrapper{
        padding-left: 24px;
    }

    .about_content_inwrapper {
    margin-top: 150px;
    padding: 0px 24px;
    }

    .about_row {
    gap: 24px;
    flex-direction: column;
    }

    .about_col1 {
    width: auto;
    flex: auto;
    }

    .logo_group img{
      display: block;
    }

    .content_spacing {
    padding: 24px;
    }

    .art_detail_wrapper {
        flex-direction: column-reverse;
    }

    .close_btn {
    width: 32px;
    height: 32px;
    }
    .close_btn::before {
    width: 25px;
    height: 25px;
    border: 2px solid #1F1F1F;
    }
    .close_btn .line1 {
    height: 2px;
    }
    .close_btn .line2 {
    height: 2px;
    }

    .art_image_wrapper{
        margin-top: 24px;
    }

    .v_ply_wrapper_wrapper, .art_image_wrapper .v_image{
        width: 100%;
    }
}


@media screen and (max-width: 480px) { 
}