@charset "utf-8";
/* page_top_btn */
.page_top_btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0047ff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}
.page_top_btn:hover {
  background-color: #03ff98;
  transition: 0.3s;
}
.page_top_btn > img {
  width: 20px;
}

/* stay_tuned */
article.stay_tuned {
  background-image: url(https://smw.seoulmetaweek.com/images/box_bg3.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
article.stay_tuned > div {
  width: 100%;
  padding: 80px 4%;
  background-color: rgba(30, 30, 30, 0.9);
}
article.stay_tuned .center_inner {
  display: flex;
  align-items: center;
}
article.stay_tuned .center_inner > div {
  width: 50%;
  color: #fff;
}

article.stay_tuned .text_wrap > div:nth-child(1) {
  margin-bottom: 20px;
  font-size: 36px;
  font-family: "NanumSquareNeo-Variable-900";
}
article.stay_tuned .text_wrap > div:nth-child(2) {
  font-size: 14px;
  line-height: 1.4;
}

article.stay_tuned .input_wrap > label {
  display: flex;
  justify-content: flex-end;
}
article.stay_tuned .input_wrap > label > div {
  width: 70%;
  max-width: 500px;
}
article.stay_tuned .input_wrap > label > div > div input {
  width: 100%;
  height: 56px;
  border-radius: 10px;
}
article.stay_tuned .input_wrap > label > div > div:nth-child(1) > input {
  width: 49%;
  margin-bottom: 10px;
}
article.stay_tuned .input_wrap > label > div > div:nth-child(2) > input {
  width: 100%;
}

article.stay_tuned .input_wrap > label > button {
  width: 30%;
  max-width: 150px;
  height: 122px;
  margin-left: 20px;
  padding: 5px 10px;
  border-radius: 10px;
  color: #ffffff;
  background-color: #0047ff;
}

article.stay_tuned a {
  display: inline-block;
  margin-left: 10px;
  color: #fff;
}

/* 20240221 add */
article.stay_tuned .input_box > div:not(:last-child) {
  margin-bottom: 10px;
}

article.stay_tuned .chk_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size:13px;
}

article.stay_tuned .input_wrap > label > div > div label input {
  width: auto;
  height: auto;
}
/* // 20240221 add */

/*############ main_page ############*/
/* main_visual */
article.main_visual .center_inner {
  padding: 50px 0;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

article.main_visual .center_inner .flex_box {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative;
}

article.main_visual .center_inner .img_wrap {
  width: 65%;
  display: flex;
  justify-content: center;

}

article.main_visual .center_inner .img_wrap img {
width: 100%;
max-width: 720px;
transition: 0.5s;

}

article.main_visual .center_inner .text_wrap {
  position: absolute;
  top: 34%;
text-align: center;
width: 100%;
}

article.main_visual .center_inner .text_wrap img {
width: 75%;
margin-bottom: 10px;
min-width: 700px;
}

article.main_visual .center_inner .text_wrap p {
font-size: 24px;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-family: "NanumSquareNeo-Variable-800";
line-height: 1.5;
}

article.main_visual .center_inner .btn_wrap {
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
margin-top: 8%;
}

article.main_visual .center_inner .btn_wrap a {
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 90px;
  width: 25%;
  max-width: 250px;
  min-width: 200px;
  font-size: 24px;
  font-family: "NanumSquareNeo-Variable-900";
  font-weight: bold;
  border-radius: 20px;
  position: relative;
  z-index: 1;
 
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff), 
    linear-gradient(180deg, #00CC7E, #18B4CA, #AE22CA); 
  background-origin: border-box;
  background-clip: padding-box, border-box;
}


article.main_visual .center_inner .btn_wrap a:hover {
  color: #0047ff;
  transform: scale(0.95);
  transition: 0.3s;
}

@media all and (max-width:1200px) {
  article.main_visual .center_inner .btn_wrap a {
    font-size: 20px;
  }
  article.main_visual .center_inner .text_wrap p {
    font-size: 20px;
  }
}

@media all and (max-width: 900px) {
  article.main_visual .center_inner .btn_wrap {
    display: flex;
    flex-wrap: wrap; /* 버튼들을 다음 줄로 넘김 */
    gap: 16px;
    margin: 150px 0px 40px 0px;
    justify-content: center;
  }

  article.main_visual .center_inner .btn_wrap a {
    width: 45%; /* 2열 종대가 되도록 설정 */
    min-width: auto;
    height: 50px;
    font-size: 12px;
  }

  article.main_visual .center_inner .img_wrap {
    width: 50%;
  }

  article.main_visual .center_inner .text_wrap img {
    min-width: 300px;
  }

 article.main_visual .center_inner .text_wrap p {
    font-size: 12px;
  }
}

@media all and (max-width:800px) {
  article.main_visual .center_inner .text_wrap {
    top: 40%;
    height: 100%;
  }
  article.main_visual .center_inner .text_wrap p {
    margin-top: 18%;
  }
}
@media all and (max-width:600px) {
  article.main_visual .center_inner .text_wrap {
    top: 42%;
  }
  article.main_visual .center_inner .text_wrap p {
    margin-top: 19%;
  }
}
@media all and (max-width:500px) {
  article.main_visual .center_inner .text_wrap p {
    margin-top: 0;
  }
}
/*
article.main_visual .center_inner > img:hover {
  transform: translate3d(-10px, -10px, 10px);
  transition: 0.5s;
}
*/


/* link_card */
article.link_card {
  padding: 60px 0;
}
article.link_card .center_inner {
  display: flex;
  justify-content: space-between;
}
article.link_card .center_inner > div {
  width: 48%;
}

article.link_card .content_box_A .title_wrap {
  margin-bottom: 85px;
}

article.link_card .bg_box {
  background-image: url(https://smw.seoulmetaweek.com/images/box_bg1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
article.link_card .bg_box > div {
  background-color: rgba(0, 0, 0, 0.7);
}

/* metaweek */
article.metaweek_event {
  padding: 60px 0 0 0;
}
article.metaweek_event .center_inner {
  display: flex;
}
article.metaweek_event .center_inner > div {
  width: 50%;
  position: relative;
}

article.metaweek_event .text .title > p {
  margin-bottom: 20px;
  /* color: #FFCA00; */
  background: linear-gradient(90deg, #00FFA2 0%, #AF25FF 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
  font-size: 55px;
  line-height: 1.2;
  font-family: "NanumSquareNeo-Variable-900";
  width: fit-content;
}
article.metaweek_event .text > div:nth-child(2) {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 40px;
  font-family: "NanumSquareNeo-Variable-800";
}
article.metaweek_event .text > div:nth-child(3) {
  margin-bottom: 50px;
  line-height: 1.5;
}

article.metaweek_event .btn_wrap {
  /* display: flex; */
  margin-top: 50px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

article.metaweek_event .btn_wrap .btn_style_C {
  background-color: #fff;
  border-radius: 45px;
  padding: 36px 60px;
  font-size: 24px;
}
article.metaweek_event .btn_wrap .btn_style_A.style_2025 {
  /* margin-right: 15px; */
  width: 80%;

}

/* news_list */
article.news_list {
  padding: 60px 0;
}
article.news_list .center_inner {
  display: flex;
  justify-content: space-between;
}
article.news_list .center_inner > div {
  width: 32%;
}

article.news_list .content_box_A .link_wrap {
  display: flex;
  align-items: center;
}
article.news_list .content_box_A .link_wrap > a {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.news_list .content_box_A .link_wrap > a > img {
  width: 18px;
  display: block;
}
article.news_list .content_box_A .link_wrap > a > img:nth-child(1) {
  display: block;
}
article.news_list .content_box_A .link_wrap > a > img:nth-child(2) {
  display: none;
}
article.news_list .content_box_A .link_wrap > a:hover {
  transform: scale(0.9);
  transition: 0.3s;
}
article.news_list .content_box_A .link_wrap > a:hover > img:nth-child(1) {
  display: none;
}
article.news_list .content_box_A .link_wrap > a:hover > img:nth-child(2) {
  display: block;
}

article.news_list .content_box_A .content_list > li {
  font-size: 14px;
  margin: 25px 0;
  display: flex;
}
article.news_list .content_box_A .content_list > li:last-child {
  margin: 25px 0 0 0;
}
article.news_list .content_box_A .content_list > li > div {
  width: 50px;
  min-width: 50px;
  color: #c0c0c0;
}
article.news_list .content_box_A .content_list > li > a {
  width: 100%;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
article.news_list .content_box_A .content_list > li > a:hover {
  text-decoration: underline;
}

article.news_list .bg_box {
  background-image: url(https://smw.seoulmetaweek.com/images/box_bg2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
article.news_list .bg_box > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(0, 71, 255, 0.8);
}

article.news_list .bg_box .text_wrap .m_title {
  margin-bottom: 10px;
}
article.news_list .bg_box .text_wrap .text1 {
  margin-bottom: 20px;
  font-size: 14px;
  line-height:1.6;
}
article.news_list .bg_box .text_wrap .text2 {
  font-size: 14px;
  line-height: 1.4;
}

/* partner_list */
article.partner_list {
  padding: 60px 0;
}
article.partner_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
article.partner_list ul > li {
  padding: 20px;
}
article.partner_list ul > li > img {
  width: 100%;
  display: block;
  margin: 20px 0px;
}

article.partner_list .title_wrap {
  font-size: 40px;
  font-family: "NanumSquareNeo-Variable-900";
}

article.partner_list .main_partner_list {
  margin: 50px 0;
}
article.partner_list .main_partner_list > li {
  width: 20%;
}
article.partner_list .sub_partner_list > li {
  width: 16.6%;
}

article.partner_list.styleB .title_wrap {
  text-align: center;
}

/* partner_list_B */
article.partner_list_B {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #444444;
}

article.partner_list_B .list_wrap {
  padding: 64px 130px;
  border-radius: 16px;
  background-color: #ffffff;
}
article.partner_list_B .list_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
article.partner_list_B .list_wrap ul > li {
  width: 20%;
}
article.partner_list_B .list_wrap ul > li > a {
  padding: 30px 30px;
  display: block;
}
article.partner_list_B .list_wrap ul > li > a > img {
  width: 100%;
  display: block;
}

article.partner_list_B .list_wrap .s_title {
  margin: 64px 0;
  color: #0047ff;
  font-size: 24px;
  text-align: center;
  font-family: "NanumSquareNeo-Variable-800";
}

/* silde_text */
article.silde_text {
  font-family: "Noto Sans";
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 30px 0;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
article.silde_text .text {
  color: #ffffff;
  margin-bottom: 10px;
  position: absolute;
  top: 18px;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 60s linear infinite;
}
article.silde_text .text > span {
  margin: 0 30px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*############ sub_page ############*/
/* sub_title_box */
.sub_title_box {
  padding: 50px 0;
  background-image: url(https://smw.seoulmetaweek.com/images/sub_titke_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sub_title_box.newstyle_2025 {
  padding: 15px 0;
  background: linear-gradient(to right, #0047FF, #D333FD);
}
.sub_title_box > .center_inner > div {
  text-align: center;
  line-height: 1.4;
}
.sub_title_box .title {
  margin-bottom: 10px;
  font-size: 36px;
  font-family: "NanumSquareNeo-Variable-900";
}
.sub_title_box .s_title {
  font-size: 20px;
  font-family: "NanumSquareNeo-Variable-700";
}

/* event_title_box */
.event_title_box {
  padding: 60px 0;
}

.event_title_box .text_wrap {
  text-align: center;
  line-height: 1.5;
}
.event_title_box .text_wrap .title {
  margin-bottom: 5px;
  font-size: 48px;
  font-family: "NanumSquareNeo-Variable-900";
}
.event_title_box .text_wrap .title > span {
  color: transparent;
  -webkit-background-clip: text;
  background-image: linear-gradient(79.01deg, #00ff99 0%, #00ffff 61.28%, #ff0ff9 112.83%);
}
.event_title_box .text_wrap .date {
  margin-bottom: 80px;
  font-size: 14px;
}
.event_title_box .text_wrap .text1 {
  margin-bottom: 10px;
  font-size: 36px;
  font-family: "NanumSquareNeo-Variable-900";
}
.event_title_box .text_wrap .text2 {
  font-size: 24px;
  font-family: "NanumSquareNeo-Variable-700";
}
.event_title_box .text_wrap .text3 {
  font-size: 18px;
  font-family: "NanumSquareNeo-Variable-700";
}

.event_title_box .btn_wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* page_tab_box */
.page_tab_box {
  width: 100%;
  margin: 20px 0;
}
.page_tab_box > ul {
  display: flex;
  flex-wrap: wrap;
}
.page_tab_box > ul > li > a {
  margin: 0 10px 10px 0;
  padding: 15px 35px;
  border-radius: 5px;
  font-size: 14px;
  background-color: #f8f8f8;
  color: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page_tab_box > ul > li > a > img {
  width: 20px;
  margin-right: 5px;
}
.page_tab_box > ul > li > a:hover {
  background-color: #0047ff;
  color: #ffffff;
  transition: 0.3s;
}
.page_tab_box > ul > li.on > a {
  background-color: #0047ff;
  color: #ffffff;
}

.page_tab_box.styleB {
  margin: 35px 0;
}
.page_tab_box.styleB > ul {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.page_tab_box.styleB > ul > li {
  width: 49%;
}
.page_tab_box.styleB > ul > li > a {
  margin: 0;
}

/* page_tab_box_B */
.page_tab_box_B {
  width: 100%;
  margin: 40px 0;
  background-color: #f7f7f7;
  display: flex;
}
.page_tab_box_B > a {
  width: 25%;
  padding: 20px 5px;
  border: 1px solid #d7d7d7;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page_tab_box_B > a > span:nth-child(1) {
  margin-bottom: 5px;
  font-size: 20px;
  font-family: "NanumSquareNeo-Variable-800";
}
.page_tab_box_B > a > span:nth-child(2) {
  font-size: 14px;
}

.page_tab_box_B > a.on {
  background-color: #001935;
  color: #ffffff;
  position: relative;
}
.page_tab_box_B > a.on::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #001935;
  position: absolute;
  bottom: -7px;
  transform: rotate(45deg);
}

/* page_number_box */
.page_number_box {
  width: 100%;
  margin: 20px 0;
}
.page_number_box > ul {
  display: flex;
  justify-content: center;
}
.page_number_box > ul > li > a {
  margin: 0 5px;
  padding: 10px;
  color: #c0c0c0;
  font-size: 15px;
  font-family: "NanumSquareNeo-Variable-700";
  display: block;
}
.page_number_box > ul > li.on > a {
  color: #0047ff;
}
.page_number_box > ul > li > a:hover {
  color: #0047ff;
  transition: 0.3s;
}

/* ------------------------------ */
/* sub_contents_A */
article.sub_contents_A {
  padding: 100px 0;
}
article.sub_contents_A .center_inner {
  display: flex;
}
article.sub_contents_A.newstyle_2025 .center_inner {
  display: flex;
  position: relative;
  z-index: 10;
}
article.sub_contents_A .center_inner > div {
  width: 50%;
}
article.sub_contents_A.newstyle_2025 .center_inner > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
article.sub_contents_A.bg1 {
  background-image: url(https://smw.seoulmetaweek.com/images/box_bg4.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
article.sub_contents_A.bg2 {
 /* background-image: url(https://smw.seoulmetaweek.com/images/smw2025_sponsorship_bg.jpeg); */
      background-image: url(https://smw.seoulmetaweek.com/images/apply_sponsorship_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
article.sub_contents_A.bg3 {
/*  background-image: url(https://smw.seoulmetaweek.com/images/smw2025_exhibition_bg.jpeg); */
      background-image: url(https://smw.seoulmetaweek.com/images/exhibition_new_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
article.sub_contents_A.bg4 {
  background-image: url(https://smw.seoulmetaweek.com/images/box_bg7.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
/* article.sub_contents_A.bg2 .background_color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

article.sub_contents_A.bg3 .background_color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
} */

article.sub_contents_A .info_wrap {
  padding-right: 30px;
}
article.sub_contents_A.newstyle_2025 .info_wrap {
  padding: 0px;
}
article.sub_contents_A .info_wrap .text_wrap {
  margin-bottom: 50px;
  color: #dbdbdb;
}
article.sub_contents_A.newstyle_2025 .info_wrap .text_wrap {
  color: #dbdbdb;
  width: 45%;
  margin: 0px;
  padding-top: 36px;
}
article.sub_contents_A.newstyle_2025 .info_wrap .text_wrap .title {
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 34px;
  width: 120%;
}
article.sub_contents_A.newstyle_2025 .info_wrap .text_wrap .text {
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}
article.sub_contents_A .info_wrap .text_wrap .title {
  margin-bottom: 30px;
  font-size: 36px;
  color: #ffffff;
  font-family: "NanumSquareNeo-Variable-900";
}
article.sub_contents_A .info_wrap .text_wrap .s_title {
  margin-top: 30px;
  font-size: 24px;
  font-family: "NanumSquareNeo-Variable-800";
  color: #ffffff;
}
article.sub_contents_A .info_wrap .text_wrap .s_title.newstyle_2025 {
  background-image: linear-gradient(to right, #00ff69, #00fee1, #fc07f8);
  -webkit-background-clip: text; 
  color: transparent; 
  width: fit-content;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
article.sub_contents_A .info_wrap .text_wrap .text {
  font-size: 14px;
  line-height: 1.5;
}
article.sub_contents_A .info_wrap .text_wrap .text span.newstyle_2025 {
  color: #01FF9E;
} 
article.sub_contents_A .info_wrap .text_wrap .list_set {
  margin: 25px 0;
  font-size: 14px;
  line-height: 1.6;
}
article.sub_contents_A.newstyle_2025 .info_wrap .text_wrap .list_set {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}
article.sub_contents_A .info_wrap .text_wrap .list_set > div {
  margin-bottom: 15px;
}
article.sub_contents_A .info_wrap .text_wrap .list_set > ul {
  list-style: disc;
  padding-left: 14px;
}
article.sub_contents_A .info_wrap .text_wrap .italic {
  font-style: italic;
  font-size: 13px;
  color: #ffffff;
}
article.sub_contents_A .info_wrap .text_wrap .bottom_info {
  margin-top: 40px;
  padding-top: 20px;
  font-size: 18px;
  border-top: 2px dotted #dbdbdb;
  font-family: "NanumSquareNeo-Variable-700";
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap {
  width: 45%;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 36px 34px;
  border-radius: 20px;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .form_title {
 margin-bottom: 23px;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .form_title > p {
  font-size: 30px;
  font-style: normal;
  color: #FFF;
font-family: "NanumSquareNeo-Variable-900";
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .form_title > span {
  font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 20px;
} 
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box > p {
  width: 49%;
  margin-bottom: 5%;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box > p.big_input_box {
  width: 100%;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box > p label {
  font-size: 13px;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box .user_info_input input {
  background-color: #868484;
  border-radius: 10px;
  padding: 20px 5px;
  overflow: scroll;
  width: 100%;
  margin-top: 2%;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box > p.big_input_box textarea {
  background-color: #868484;
  border-radius: 6px;
  padding: 10px 5px;
  overflow: scroll;
  width: 100%;
  margin-top: 2%;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box .bottom_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box .checkbox_input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box .checkbox_input label {
  display: flex;
  align-items: center;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box .checkbox_input input {
  margin-right: 5px;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box .checkbox_input a {
  display: inline-block;
    margin-left: 10px;
    color: #fff;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box .btn_input {
  display: flex;
  justify-content: flex-end;
  width: 30%;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box .btn_input input {
  background-color: #01FF9E;
  color: #000;
  width: 50%;
  display: flex;
  justify-content: center;
  padding: 4% 0px;
  border-radius: 6px;
}
article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .sub_text {
  font-size: 13px;
font-style: normal;
font-weight: 700;
  text-align: end;
  margin-top: 22px;
}
article.sub_contents_A .info_wrap .btn_wrap {
  margin-bottom: 45px;
  display: flex;
}
article.sub_contents_A .info_wrap .btn_wrap > a {
  margin-right: 10px;
}

article.sub_contents_A .info_wrap .logo_wrap {
  display: flex;
  align-items: center;
}
article.sub_contents_A .info_wrap .logo_wrap > div {
  width: 165px;
  min-width: 165px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
article.sub_contents_A .info_wrap .logo_wrap > div::after {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #ffffff;
}
article.sub_contents_A .info_wrap .logo_wrap > ul {
  width: 100%;
  display: flex;
}
article.sub_contents_A .info_wrap .logo_wrap > ul > li {
  width: 33%;
  max-width: 175px;
}
article.sub_contents_A .info_wrap .logo_wrap > ul > li > a {
  padding: 10px;
  display: block;
}
article.sub_contents_A .info_wrap .logo_wrap > ul > li > a > img {
  width: 100%;
}

article.sub_contents_A .image_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
article.sub_contents_A .image_wrap > img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* sub_contents_B */
article.sub_contents_B {
  padding: 100px 0;
  background-color: #212121;
}
article.sub_contents_B a {
  display: flex;
  color: #ffffff;
}

article.sub_contents_B a > .image_wrap {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.sub_contents_B a > .image_wrap > div {
  border-radius: 15px;
  overflow: hidden;
}
article.sub_contents_B a > .image_wrap > div > img {
  width: 100%;
  max-width: 1000px;
}

article.sub_contents_B a > .text_wrap {
  width: 30%;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
}
article.sub_contents_B a > .text_wrap .title {
  margin-bottom: 20px;
  font-size: 36px;
  color: #ffffff;
  font-family: "NanumSquareNeo-Variable-800";
}
article.sub_contents_B a > .text_wrap .date {
  margin-bottom: 20px;
  color: #c0c0c0;
}
article.sub_contents_B a > .text_wrap .content {
  color: #dbdbdb;
}

/* ------------------------------ */
/* image_board */
article.image_board {
  padding: 60px 0;
  color: #444444;
  background-color: #ffffff;
}

article.image_board .list_wrap {
  display: flex;
  flex-wrap: wrap;
}
article.image_board .list_wrap > li {
  width: 33.3%;
}
article.image_board .list_wrap > li > a {
  width: 100%;
  padding: 20px 15px;
  color: #444444;
  display: block;
}
article.image_board .list_wrap > li > a:hover {
  color: #000000;
  transition: 0.3s;
}

article.image_board .list_wrap > li > a .img_wrap {
  width: 100%;
  height: 0;
  margin-bottom: 15px;
  padding-bottom: 70%;
  border-radius: 10px;
  background-color: #d9d9d9;
  overflow: hidden;
  position: relative;
}
article.image_board .list_wrap > li > a .img_wrap > img {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    height: 350px;
    object-fit: cover;
    object-position: center center;
  
}

article.image_board .list_wrap > li > a .text_wrap .title {
  max-height: 54px;
  margin-bottom: 8px;
  font-family: "NanumSquareNeo-Variable-700";
  color: #0047ff;
  font-size: 18px;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
article.image_board .list_wrap > li > a .text_wrap .date {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #c0c0c0;
}
article.image_board .list_wrap > li > a .text_wrap .content {
  max-height: 63px;
  font-size: 14px;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

article.image_board .list_wrap.styleB > li {
  width: 25%;
}
article.image_board .list_wrap.styleB > li > a {
  padding: 20px 10px;
}
article.image_board .list_wrap.styleB > li > a .img_wrap {
  padding-bottom: 100%;
}

article.image_board .more_btn_wrap {
  display: flex;
  justify-content: center;
}

/* board_view */
article.board_view {
  color: #444444;
  background-color: #ffffff;
}
article.board_view .center_inner {
  max-width: 800px;
}

article.board_view .content_view_wrap {
  padding: 80px 0;
  line-height: 1.5;
}

article.board_view .content_view_wrap .link_wrap {
  margin-bottom: 10px;
  font-size: 14px;
}
article.board_view .content_view_wrap .link_wrap a {
  margin-right: 10px;
}

article.board_view .content_view_wrap .title_wrap {
  padding: 30px 0;
  border-top: 8px solid #444444;
  border-bottom: 1px solid #444444;
}
article.board_view .content_view_wrap .title_wrap .tit {
  font-size: 36px;
  font-family: "NanumSquareNeo-Variable-800";
  margin-bottom: 20px;
}
article.board_view .content_view_wrap .title_wrap .date_set {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
article.board_view .content_view_wrap .title_wrap .date_set .date {
  margin-right: 15px;
  font-size: 13px;
  color: #c0c0c0;
}
article.board_view .content_view_wrap .title_wrap .date_set .sns {
  display: flex;
}
article.board_view .content_view_wrap .title_wrap .date_set .sns > a {
  width: 32px;
  height: 32px;
  margin: 0 3px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #c0c0c0;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.board_view .content_view_wrap .title_wrap .date_set .sns > a:hover {
  background-color: #0047ff;
  transition: 0.3s;
}
article.board_view .content_view_wrap .title_wrap .date_set .sns > a > img {
  width: 16px;
}

article.board_view .content_view_wrap .content_wrap {
  padding: 20px 0;
  font-size: 18px;
  line-height: 1.6;
  border-bottom:  1px solid #444444  ; 
  margin-bottom:20px;
}
article.board_view .content_view_wrap .content_wrap .content_image {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
article.board_view .content_view_wrap .content_wrap .content_image > img {
  width: 100%;
}

article.board_view .content_view_wrap .share_wrap {
  padding: 10px 0;
  border-top: 1px solid #d0d0d9;
  display: flex;
  align-items: center;
}
article.board_view .content_view_wrap .share_wrap .text {
  font-size: 14px;
  margin-right: 15px;
}
article.board_view .content_view_wrap .share_wrap .sns {
  display: flex;
}
article.board_view .content_view_wrap .share_wrap .sns > a {
  width: 32px;
  height: 32px;
  margin: 0 3px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #c0c0c0;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.board_view .content_view_wrap .share_wrap .sns > a:hover {
  background-color: #0047ff;
  transition: 0.3s;
}
article.board_view .content_view_wrap .share_wrap .sns > a > img {
  width: 16px;
}

article.board_view .next_wrap {
  border-bottom: 1px solid #d0d0d9;
  background-color: #f8f8f8;
}
article.board_view .next_wrap .center_inner {
  display: flex;
  padding: 40px 0;
}
article.board_view .next_wrap .center_inner > a {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
article.board_view .next_wrap .center_inner > a .icon > img {
  width: 14px;
}
article.board_view .next_wrap .center_inner > a .text {
  width: 80%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
article.board_view .next_wrap .center_inner > a .text > div:nth-child(1) {
  margin-bottom: 5px;
  font-size: 18px;
  color: #0047ff;
  font-family: "NanumSquareNeo-Variable-700";
}
article.board_view .next_wrap .center_inner > a .text > div:nth-child(2) {
  max-width: 100%;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

article.board_view .next_wrap .center_inner > a:nth-child(1) {
  border-right: 1px solid #d0d0d9;
}
article.board_view .next_wrap .center_inner > a:nth-child(2) .icon > img {
  transform: rotate(-180deg);
}
article.board_view .next_wrap .center_inner > a:nth-child(2) .text {
  align-items: flex-end;
  text-align: right;
}

article.board_view .more_list_wrap {
  padding: 50px 0;
  background-color: #f8f8f8;
}

article.board_view .more_list_wrap .box_title {
  margin-bottom: 30px;
  font-size: 24px;
  font-family: "NanumSquareNeo-Variable-900";
}

article.board_view .more_list_wrap ul > li > a {
  display: flex;
  margin-bottom: 20px;
}
article.board_view .more_list_wrap ul > li > a .img_wrap {
  width: 20%;
}
article.board_view .more_list_wrap ul > li > a .img_wrap > div {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
article.board_view .more_list_wrap ul > li > a .img_wrap > div > img {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

article.board_view .more_list_wrap ul > li > a .text_wrap {
  width: 80%;
  padding: 5px 0 5px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
article.board_view .more_list_wrap ul > li > a .text_wrap .title_set .title {
  max-width: 100%;
  margin-bottom: 15px;
  font-size: 18px;
  color: #0047ff;
  font-family: "NanumSquareNeo-Variable-700";
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
article.board_view .more_list_wrap ul > li > a .text_wrap .title_set .text {
  max-height: 42px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #444444;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
article.board_view .more_list_wrap ul > li > a .text_wrap .date {
  font-size: 13px;
  color: #c0c0c0;
}

/* ------------------------------ */
/* program_list */
article.program_list {
  padding: 60px 0;
  background-color: #ffffff;
  color: #444444;
}

article.program_list .box_title {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  font-family: "NanumSquareNeo-Variable-800";
}

article.program_list .download_btn {
  display: flex;
  justify-content: flex-end;
}
article.program_list .download_btn > a {
  color: #0047ff;
  font-size: 14px;
}
article.program_list .download_btn > a > img {
  width: 14px;
  margin-left: 10px;
  transform: rotate(90deg);
}

article.program_list .date_set {
  display: flex;
  justify-content: flex-end;
  color: #0047ff;
  font-size: 14px;
  font-family: "NanumSquareNeo-Variable-800";
}

article.program_list .s_title {
  margin-bottom: 20px;
  color: #0047ff;
  font-size: 24px;
  font-family: "NanumSquareNeo-Variable-800";
}

article.program_list .s_title_B {
  padding: 10px 0;
  border-bottom: 4px solid #001935;
  font-family: "NanumSquareNeo-Variable-800";
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
article.program_list .s_title_B .s_text {
  font-size: 0.8em;
}
article.program_list .s_title_B > div:nth-child(1) {
  font-size: 24px;
}
article.program_list .s_title_B > div:nth-child(2) {
  font-size: 14px;
}

article.program_list .program_list_wrap {
  border-top: 2px solid #dbdbdb;
}
article.program_list .program_list_wrap > li {
  padding: 30px;
  display: flex;
  border-bottom: 2px solid #dbdbdb;
}
article.program_list .program_list_wrap > li > div:nth-child(1) {
  width: 200px;
  font-size: 18px;
  font-family: "NanumSquareNeo-Variable-700";
  text-align: center;
  display: flex;
  align-items: center;
}
article.program_list .program_list_wrap > li > div:nth-child(2) {
  width: 80%;
  align-items: center;
}
article.program_list .program_list_wrap > li.bg1 {
  background-color: #f8f8f8;
}

article.program_list .program_list_wrap > li .text1 {
  margin-bottom: 8px;
  font-size: 14px;
}
article.program_list .program_list_wrap > li .text2 {
  font-size: 18px;
  font-family: "NanumSquareNeo-Variable-700";
}
article.program_list .program_list_wrap > li .text3 {
  margin-top: 12px;
  font-size: 13px;
}

.complogo{width:160px; }
.complogo img{height: 35px; }

article.program_list .program_list_wrap .speaker_list_box {
  margin: 10px 0;
}
article.program_list .program_list_wrap .speaker_list_box > li {
  height: 48px;
  margin: 16px 0;
  display: flex;
  align-items: center;
}

article.program_list .program_list_wrap .speaker_list_box .tit_wrap {
  width: 110px;
  margin-right: 15px;
}
article.program_list .program_list_wrap .speaker_list_box .tit_wrap > div {
  height: 30px;
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

article.program_list .program_list_wrap .speaker_list_box .info_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
article.program_list .program_list_wrap .speaker_list_box .info_wrap .text_set {
  display: flex;
  align-items: center;
  cursor: pointer;
}
article.program_list .program_list_wrap .speaker_list_box .info_wrap .text_set .image {
  width: 48px;
  height: 48px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: #000000;
  overflow: hidden;
  position: relative;
}
article.program_list .program_list_wrap .speaker_list_box .info_wrap .text_set .image > img {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
article.program_list .program_list_wrap .speaker_list_box .info_wrap .text_set .name_set {
  display: flex;
  align-items: center;
}
article.program_list .program_list_wrap .speaker_list_box .info_wrap .text_set .name {
  margin-right: 8px;
  font-size: 18px;
  font-family: "NanumSquareNeo-Variable-700";
}
article.program_list .program_list_wrap .speaker_list_box .info_wrap .text_set .company {
  font-size: 14px;
}

article.program_list .program_list_wrap .speaker_list_box .info_wrap .logo_set > a {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.program_list .program_list_wrap .speaker_list_box .info_wrap .logo_set > a > img {
  width: auto;
  height: 100%;
}

article.program_list .bottom_info {
  margin-top: 50px;
  font-size: 14px;
  text-align: center;
  line-height: 1.7;
}

/* speaker_list */
article.speaker_list {
  padding: 80px 0;
}

article.speaker_list .box_title {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  font-family: "NanumSquareNeo-Variable-800";
}

article.speaker_list ul {
  display: flex;
  flex-wrap: wrap;
}
article.speaker_list ul > li {
  width: 25%;
  padding: 30px;
  cursor: pointer;
}
article.speaker_list ul > li .image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(79.01deg, #00ff99 0%, #00ffff 61.28%, #ff0ff9 112.83%);
  background-color:#000;
}
article.speaker_list ul > li .image > img {
  z-index: 1;
  width: 96%;
  height: 96%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color:#000;
}
article.speaker_list ul > li .text {
  margin: 16px 0 16px 0;
  text-align: center;
}
article.speaker_list ul > li .text > div:nth-child(1) {
  margin-bottom: 16px;
  font-size: 18px;
  font-family: "NanumSquareNeo-Variable-700";
}
article.speaker_list ul > li .text > div:nth-child(2) {
  font-size: 14px;
  color: #c0c0c0;
  line-height: 1.5;
}
article.speaker_list ul > li .logo {

  max-height:40px;
  max-width:304px;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.speaker_list ul > li .logo > img {
  max-width:304px;
  max-height:40px;
  width: auto;
  height: 100%;
}

/* speaker_list_B */
article.speaker_list_B {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #444444;
}

article.speaker_list_B ul {
  max-height: 550px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
article.speaker_list_B ul.open {
  height: auto;
  max-height: none;
}

article.speaker_list_B ul > li {
  width: 25%;
  padding: 30px;
  cursor: pointer;
}
article.speaker_list_B ul > li .image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
  background-color: #d0d0d9;
}
article.speaker_list_B ul > li .image > img {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
article.speaker_list_B ul > li .image::after {
  z-index: 2;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border: 20px solid transparent;
  border-right: 20px solid #00ff99;
  border-bottom: 20px solid #00ff99;
  display: block;
}
article.speaker_list_B ul > li .image:hover > img {
  width: 105%;
  transition: 0.3s;
}
article.speaker_list_B ul > li .text {
  margin-top: 20px;
  line-height: 1.5;
  text-align: center;
  font-family: "NanumSquareNeo-Variable-700";
}
article.speaker_list_B ul > li .text > div:nth-child(1) {
  margin-bottom: 8px;
  color: #0047ff;
  font-size: 18px;
}
article.speaker_list_B ul > li .text > div:nth-child(2) {
  font-size: 14px;
}

article.speaker_list_B .btn_wrap {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

/* speaker_view_modal */
.speaker_view_modal {
  width: 1200px;
  padding: 30px;
  border-radius: 10px;
  background-color: #ffffff;
  color: #444444;
}
.speaker_view_modal .close_btn {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
}
.speaker_view_modal .close_btn > img {
  width: 24px;
  display: block;
  cursor: pointer;
}

.speaker_view_modal .content_wrap {
  display: flex;
}

.speaker_view_modal .content_wrap .image_set {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.speaker_view_modal .content_wrap .image_set .image {
  width: 100%;
  max-width: 235px;
}
.speaker_view_modal .content_wrap .image_set .image > div {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(79.01deg, #00ff99 0%, #00ffff 61.28%, #ff0ff9 112.83%);
}
.speaker_view_modal .content_wrap .image_set .image > div > img {
  z-index: 1;
  width: 95%;
  height: 95%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.speaker_view_modal .content_wrap .image_set .text {
  margin: 16px 0 16px 0;
  text-align: center;
}
.speaker_view_modal .content_wrap .image_set .text > div:nth-child(1) {
  margin-bottom: 16px;
  font-size: 18px;
  font-family: "NanumSquareNeo-Variable-700";
}
.speaker_view_modal .content_wrap .image_set .text > div:nth-child(2) {
  font-size: 14px;
  color: #c0c0c0;
  line-height: 1.5;
}
.speaker_view_modal .content_wrap .image_set .logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.speaker_view_modal .content_wrap .image_set .logo > img {
  width: auto;
  height: 100%;
}

.speaker_view_modal .content_wrap .text_set {
  width: 70%;
  padding-left: 20px;
  line-height: 1.5;
  font-size: 14px;
}

.speaker_view_modal.styleB {
  border-radius: 0;
}
.speaker_view_modal.styleB .content_wrap .image_set .image > div > img {
  width: 100%;
  height: 100%;
}
.speaker_view_modal.styleB .content_wrap .text_set {
  position: relative;
}
.speaker_view_modal.styleB .content_wrap .text_set::after {
  z-index: 2;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border: 20px solid transparent;
  border-right: 20px solid #00ff99;
  border-bottom: 20px solid #00ff99;
  display: block;
}

/* photo_list */
article.photo_list {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #444444;
}

article.photo_list ul {
  display: flex;
  flex-wrap: wrap;
}
article.photo_list ul > li {
  width: 25%;
  padding: 10px;
}
article.photo_list ul > li .image {
  width: 100%;
  height: 0;
  padding-bottom: 74%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
article.photo_list ul > li .image > img {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
article.photo_list ul > li .image::after {
  z-index: 2;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
  display: block;
}
article.photo_list ul > li .image:hover:after {
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}

/* ------------------------------ */
/* news_subscription */
article.news_subscription {
  padding: 48px 0;
  background: linear-gradient(79.01deg, #00ff99 0%, #00ffff 61.28%, #ff0ff9 112.83%);
}
article.news_subscription > .center_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

article.news_subscription .text {
  font-size: 24px;
  color: #444444;
  font-family: "NanumSquareNeo-Variable-800";
  line-height: 1.5;
}

/* previous_magazine */
article.previous_magazine {
  padding: 80px 0;
  background-color: #f8f8f8;
}
article.previous_magazine .center_inner {
  display: flex;
}

article.previous_magazine .left_text_wrap {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
article.previous_magazine .left_text_wrap .text {
  color: #0047ff;
  font-size: 24px;
  font-family: "NanumSquareNeo-Variable-800";
  line-height: 1.6;
}
article.previous_magazine .left_text_wrap .btn {
  width: fit-content;
  padding: 10px 16px;
  background-color: #0047ff;
  color: #ffffff;
  display: flex;
  align-items: center;
}
article.previous_magazine .left_text_wrap .btn > img {
  width: 14px;
  margin-left: 15px;
}

article.previous_magazine .magazine_slide_wrap {
  width: 70%;
  position: relative;
}
article.previous_magazine .magazine_slide_wrap .magazine_slide {
  overflow: hidden;
}

article.previous_magazine .magazine_slide_wrap ul {
  display: flex;
}
article.previous_magazine .magazine_slide_wrap ul > li {
  padding: 0 10px;
}
article.previous_magazine .magazine_slide_wrap ul > li > a {
  display: block;
}
article.previous_magazine .magazine_slide_wrap ul > li .img_wrap {
  width: 100%;
  height: 0;
  margin-bottom: 10px;
  padding-bottom: 130%;
  border-radius: 10px;
  background-color: #f8f8f8;
  overflow: hidden;
  position: relative;
}
article.previous_magazine .magazine_slide_wrap ul > li .img_wrap > img {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
article.previous_magazine .magazine_slide_wrap ul > li .text_wrap {
  color: #0047ff;
  font-family: "NanumSquareNeo-Variable-800";
}

article.previous_magazine .magazine_slide_wrap .btn > div {
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #00ff99;
  position: absolute;
  top: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.previous_magazine .magazine_slide_wrap .btn > div > img {
  width: 20px;
}
article.previous_magazine .magazine_slide_wrap .btn .magazine-button-prev {
  left: -10px;
  transform: translate(0, -50%);
}
article.previous_magazine .magazine_slide_wrap .btn .magazine-button-prev > img {
  transform: rotate(180deg);
}
article.previous_magazine .magazine_slide_wrap .btn .magazine-button-next {
  right: -10px;
  transform: translate(0, -50%);
}

/* agenda */
article.agenda {
  padding: 48px 0;
  background-color: #212121;
}
article.agenda .box_title {
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
  font-family: "NanumSquareNeo-Variable-800";
}

article.agenda ul {
  display: flex;
}
article.agenda ul > li {
  width: 25%;
  padding: 30px 30px;
}
article.agenda ul > li .title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 20px;
  text-align: center;
  color: #00ff99;
  border-bottom: 2px solid #00ff99;
}
article.agenda ul > li .content > div {
  margin: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
}
article.agenda ul > li .content > div::before {
  content: "+";
  margin-right: 5px;
}

/* agenda_B */
article.agenda_B {
  padding: 90px 0;
  background-color: #f8f8f8;
  color: #444444;
}

article.agenda_B .btn_wrap {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

article.agenda_B .content_wrap {
  display: flex;
  justify-content: center;
}
article.agenda_B .content_wrap > div {
  width: 49%;
  max-width: 500px;
  margin: 0 15px;
  background-color: transparent;
  background-image: linear-gradient(180deg, #cff9fc 0%, #f6fef2 100%);
  overflow: hidden;
}
article.agenda_B .content_wrap > div .title {
  padding: 100px 40px;
  position: relative;
}
article.agenda_B .content_wrap > div .title > div:nth-child(1) {
  z-index: 1;
  color: #ffffff;
  font-size: 200px;
  position: absolute;
  top: 0;
  right: 0;
  font-family: "NanumSquareNeo-Variable-900";
}
article.agenda_B .content_wrap > div .title > div:nth-child(2) {
  z-index: 2;
  color: #0047ff;
  font-size: 24px;
  line-height: 1.5;
  font-family: "NanumSquareNeo-Variable-800";
  position: relative;
}
article.agenda_B .content_wrap > div ul {
  padding: 0 40px 60px 40px;
  font-size: 14px;
  line-height: 1.5;
  list-style: disc;
}

/* FAQ_list */
article.FAQ_list {
  padding: 80px 0;
  background-color: #ffffff;
  color: #444444;
  font-size: 14px;
  line-height: 1.5;
}
article.FAQ_list > .center_inner {
  max-width: 800px;
}

article.FAQ_list ul > li {
  margin: 20px 0;
}
article.FAQ_list ul > li .question_wrap {
  padding: 15px;
  border-radius: 10px;
  background-color: #f8f8f8;
  font-family: "NanumSquareNeo-Variable-800";
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
article.FAQ_list ul > li .answer_wrap {
  padding: 15px;
  border: 1px solid #f8f8f8;
  display: none;
}

article.FAQ_list ul > li.open .question_wrap {
  background-color: #0047ff;
  color: #ffffff;
}
article.FAQ_list ul > li.open .answer_wrap {
  display: block;
}

/* overview */
article.overview {
  padding: 80px 0;
  background-color: #ffffff;
  color: #444444;
}

article.overview .overview_list {
  max-width: 700px;
  margin: 0 auto;
}
article.overview .overview_list > li {
  margin: 20px 0;
  display: flex;
}
article.overview .overview_list > li > div:nth-child(1) {
  width: 20%;
  text-align: center;
}
article.overview .overview_list > li > div:nth-child(1) > span {
  padding: 10px 0;
  display: block;
  font-family: "NanumSquareNeo-Variable-700";
}
article.overview .overview_list > li > div:nth-child(1)::before {
  content: "";
  width: 100%;
  height: 5px;
  display: block;
  background: linear-gradient(79.01deg, #00ff99 0%, #00ffff 61.28%, #ff0ff9 112.83%);
}
article.overview .overview_list > li > div:nth-child(2) {
  width: 80%;
  padding: 5px 0 0 20px;
  display: flex;
  align-items: center;
  line-height: 1.5;
}

/* feedback */
article.feedback {
  padding: 60px 0;
  background-color: #ffffff;
  color: #444444;
}

article.feedback .feedback_slide_wrap {
  margin-top: 50px;
}
article.feedback .feedback_slide {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}
article.feedback .feedback_slide ul > li {
  border-radius: 10px;
  overflow: hidden;
}
article.feedback .feedback_slide ul > li img {
  width: 100%;
}

/* speakers_link */
article.speakers_link {
  padding: 60px 0;
  background-color: #ffffff;
  color: #444444;
}
article.speakers_link .btn_wrap {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

/* photo_video_set */
article.photo_video_set {
  padding: 90px 0;
  background-color: #f8f8f8;
  color: #444444;
}
article.photo_video_set .center_inner {
  display: flex;
  justify-content: center;
}
article.photo_video_set .center_inner > div {
  width: 49%;
  max-width: 500px;
  margin: 0 15px;
}

article.photo_video_set .btn_wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* comingsoon */
article.comingsoon {
  padding: 60px 0;
}

article.comingsoon .image {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.comingsoon .image > img {
  width: 60%;
  max-width: 300px;
}
article.comingsoon .text {
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  font-family: "NanumSquareNeo-Variable-800";
}

/* ticket_buy */
article.ticket_buy {
  padding: 80px 0;
  background-color: #f8f8f8;
  color: #444444;
}

article.ticket_buy .content_wrap {
  margin-bottom: 50px;
  display: flex;
  line-height: 1.5;
}
article.ticket_buy .content_wrap > div:nth-child(1) {
  width: 30%;
  font-size: 24px;
  font-family: "NanumSquareNeo-Variable-800";
}
article.ticket_buy .content_wrap > ul {
  width: 70%;
  font-size: 14px;
  list-style: disc;
}
article.ticket_buy .content_wrap > ul > li {
  margin: 8px 0;
}

/*############ about_seoul ############*/
article.about_seoul {
  padding: 90px 0;
}

article.about_seoul .box_title {
  margin-bottom: 20px;
  font-size: 24px;
  color: #0047ff;
  text-align: center;
  font-family: "NanumSquareNeo-Variable-800";
}

article.about_seoul .more_btn_wrap {
  display: flex;
  justify-content: flex-end;
}
article.about_seoul .more_btn_wrap > a {
  padding: 8px 16px;
  border: 1px solid #0047ff;
  color: #0047ff;
  background-color: #ffffff;
}
article.about_seoul .more_btn_wrap > a > img {
  width: 15px;
}

/* photo */
article.about_seoul.photo .photo_silde_wrap {
  position: relative;
}
article.about_seoul.photo .photo_silde {
  overflow: hidden;
}

article.about_seoul.photo .photo_silde_wrap ul {
  display: flex;
}
article.about_seoul.photo .photo_silde_wrap ul > li {
  padding: 0 1px;
}
article.about_seoul.photo .photo_silde_wrap ul > li .photo {
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  overflow: hidden;
  position: relative;
}
article.about_seoul.photo .photo_silde_wrap ul > li .photo > img {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

article.about_seoul.photo .photo_silde_wrap .btn > div {
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #00ff99;
  position: absolute;
  top: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.about_seoul.photo .photo_silde_wrap .btn > div > img {
  width: 20px;
}
article.about_seoul.photo .photo_silde_wrap .btn .photo-button-prev {
  left: -10px;
  transform: translate(0, -50%);
}
article.about_seoul.photo .photo_silde_wrap .btn .photo-button-prev > img {
  transform: rotate(180deg);
}
article.about_seoul.photo .photo_silde_wrap .btn .photo-button-next {
  right: -10px;
  transform: translate(0, -50%);
}

/* video */
article.about_seoul.video {
  background-color: #f8f8f8;
  color: #444444;
}
article.about_seoul.video .video_view {
  display: flex;
  margin-top: 30px;
}

article.about_seoul.video .video_view .video_list {
  width: 35%;
}
article.about_seoul.video .video_view .video_list .s_title {
  padding: 20px 10px;
  border-bottom: 1px solid #d0d0d9;
  color: #000000;
  font-family: "NanumSquareNeo-Variable-700";
}
article.about_seoul.video .video_view .video_list .s_text {
  padding: 0 10px;
  color: #c0c0c0;
  font-size: 13px;
  text-align: right;
}

article.about_seoul.video .video_view .video_list > ul > li {
  padding: 15px 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
article.about_seoul.video .video_view .video_list > ul > li.on {
  background-color: #d9d9d9;
}
article.about_seoul.video .video_view .video_list > ul > li .image {
  width: 75px;
  margin-right: 5px;
}
article.about_seoul.video .video_view .video_list > ul > li .image > img {
  width: 100%;
}
article.about_seoul.video .video_view .video_list > ul > li .time {
  margin-left: auto;
  font-size: 12px;
}

article.about_seoul.video .video_view .video_box_wrap {
  width: 65%;
}

/* link */
article.about_seoul.link {
  background-color: #ffffff;
  color: #444444;
}
article.about_seoul.link ul {
  display: flex;
  justify-content: center;
}
article.about_seoul.link ul > li {
  width: 33.3%;
  max-width: 300px;
}
article.about_seoul.link ul > li > a {
  padding: 20px;
  display: block;
}
article.about_seoul.link ul > li > a > div {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
article.about_seoul.link ul > li > a > div:hover {
  background-color: #f8f8f8;
  transition: 0.3s;
}
article.about_seoul.link ul > li > a > div > img {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.copyUrl {
  margin-right: 20px;
  padding: 10px 20px;
  background-color: #ddd;
  border: 1px solid #999;
  border-radius: 10px;
}

/*############ pre_reg_2025 ############*/
article.pre_reg_2025 {
  background-image: url(https://smw.seoulmetaweek.com/images/Pre_Reg_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
}

article.pre_reg_2025 .info_wrap {
  background-image: url(https://smw.seoulmetaweek.com/images/pre_reg_ticket_bg.png);
  background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

article.pre_reg_2025 .info_wrap .img_wrap {
  color: #fff;
  text-align: center;
  position: relative;
  display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 50px;
}

article.pre_reg_2025 .info_wrap .img_wrap img {
  width: 600px;
    padding-left: 50px;
}

article.pre_reg_2025 .info_wrap .img_wrap .text {
  position: absolute;
}

article.pre_reg_2025 .info_wrap .img_wrap .text p:nth-child(1) {
  font-size: 48px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "NanumSquareNeo-Variable-800";
  margin-bottom: 10px;
  line-height: 1.2;
}

article.pre_reg_2025 .info_wrap .img_wrap .text p:nth-child(2) {
  font-size: 20px;
}

article.pre_reg_2025 .info_wrap .text_wrap {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  font-family: "NanumSquareNeo-Variable-700";
}



/* 레이아웃 컨테이너 */
article.pre_reg_2025 .input_wrap {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 60px auto;
  gap: 20px;
  padding: 0 10px;
}

/* 각 그룹(fieldset) 공통 */
article.pre_reg_2025 .input_wrap fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
    justify-content: center;
  border: none;
  padding: 0;
  margin: 0;
}

/* 사용자 정보 입력부 */
article.pre_reg_2025 .user_info_wrap {
  display: flex;
  flex: 1 1 100%;
  gap: 10px;
}
article.pre_reg_2025 .user_info_wrap input {
 
  padding: 20px 16px;
  border-radius: 30px;
  font-family: "NanumSquareNeo-Variable-700";
  font-size: 16px;
  border: 1px solid #ddd;
  color: #333;
}

article.pre_reg_2025 .user_info_wrap input:nth-child(1) {width:200px;}
article.pre_reg_2025 .user_info_wrap input:nth-child(2) {width:200px;}
article.pre_reg_2025 .user_info_wrap input:nth-child(3) {width:100%;}

/* CODE 입력부 */
article.pre_reg_2025 .code_wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
article.pre_reg_2025 .code_wrap .code_label {
  white-space: nowrap;
  font-weight: bold;
  font-size: 16px;
}
article.pre_reg_2025 .code_wrap input[type="text"] {
  
  padding: 20px 16px;
  border-radius: 30px;
  font-size: 16px;
  border: 1px solid #ddd;
    width:200px;
}

/* 버튼 래퍼 */
article.pre_reg_2025 .submit_btn_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.subscribe-button {
  background: #00ff85;
  color: #000;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 24px;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.3s ease, color 0.3s ease;
}
.subscribe-button:hover {
  background: #00e676;
  color: #fff;
  transform: translateY(-2px);
}
.subscribe-button:active {
  transform: scale(0.95);
}

/* 반응형: 좁은 화면에서는 세로 정렬 */
@media (max-width: 600px) {
  article.pre_reg_2025 .input_wrap fieldset {
    flex-direction: column;
    align-items: stretch;
  }
  .user_info_wrap,
  .code_wrap {
    flex-direction: column;
  }
  .user_info_wrap input,
  .code_wrap input[type="text"],
  .subscribe-button {
    width: 100%;
  }
}





article.pre_reg_2025 .notice_wrap {

  padding: 50px 5%;
  margin-top: 100px;
  /* position: absolute;
  left: 0;
  right: 0; */
  width: 100%;
  background-color: #EAEAEA;

}

article.pre_reg_2025 .notice_wrap > div:nth-child(2) {

  display: flex;
  justify-content: center;
}

article.pre_reg_2025 .notice_wrap .title {
  font-size: 28px;
  font-family: "NanumSquareNeo-Variable-800";
  text-align: center;
  color: #000;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}


article.pre_reg_2025 .notice_wrap .title::before,
article.pre_reg_2025 .notice_wrap .title::after {
  content: "";
  flex-grow: 1;
  background-color: #000;
  height: 1px;
  font-size: 0px;
  line-height: 0px;
  margin: 0px 30px;
}

article.pre_reg_2025 .notice_wrap .text_wrap {
  display: flex;
  justify-content: center;
  color: #000;
  font-size: 20px;
  line-height: 1.5;

}

article.pre_reg_2025 .notice_wrap .text_wrap > div {
  max-width: 1480px;
  width: 100%;
}

@media all and (max-width: 1380px) {
  /* stay_tuned */
  article.stay_tuned > div {
    padding: 40px 0;
  }
  article.stay_tuned .text_wrap {
    margin-bottom: 20px;
  }

  article.stay_tuned .input_wrap > label {
    justify-content: center;
  }

  /*############ main_page ############*/
  /* main_visual */
  article.main_visual .center_inner > img {
    width: 90%;
  }

  /* link_card */
  article.link_card {
    padding: 120px 0;
  }

  /* metaweek */
  article.metaweek_event {
    padding: 120px 0 0 0;
  }
  article.metaweek_event .center_inner {
  align-items: flex-start;
  }

  /* article.metaweek_event .info_wrap {
    margin-bottom: 40px;
  } */

  article.metaweek_event .text > div:nth-child(1) {
    font-size: 35px;
  }
  article.metaweek_event .text > div:nth-child(2) {
    font-size: 20px;
  }
  article.metaweek_event .text > div:nth-child(3) {
    margin-bottom: 35px;
  }

  /* news_list */
  article.news_list {
    padding: 120px 0;
  }
  article.news_list .center_inner {
    flex-direction: column;
    justify-content: center;
  }
  article.news_list .center_inner > div {
    width: 100%;
    margin-bottom: 15px;
  }

  article.news_list .bg_box .text_wrap {
    margin-bottom: 20px;
  }

  /* partner_list */
  article.partner_list {
    padding: 120px 0;
  }

  /* partner_list_B */
  article.partner_list_B {
    padding: 100px 0;
  }
  article.partner_list_B .list_wrap {
    padding: 40px 30px;
  }

  /* silde_text */
  article.silde_text {
    padding: 26px 0;
    font-size: 25px;
  }
  article.silde_text .text {
    top: 14px;
  }

  /*############ sub_page ############*/
  /* sub_title_box */
  .sub_title_box .title {
    font-size: 32px;
  }
  .sub_title_box .s_title {
    font-size: 18px;
  }

  /* event_title_box */
  .event_title_box .text_wrap .title {
    font-size: 38px;
  }
  .event_title_box .text_wrap .text1 {
    font-size: 32px;
  }
  .event_title_box .text_wrap .text2 {
    font-size: 22px;
  }

  /* ------------------------------ */
  /* sub_contents_A */
  article.sub_contents_A .center_inner {
    flex-direction: column-reverse;
  }
  article.sub_contents_A .center_inner > div {
    width: 100%;
  }

  article.sub_contents_A .info_wrap {
    padding-right: 0;
  }
  article.sub_contents_A .info_wrap .text_wrap .title {
    font-size: 32px;
  }
  article.sub_contents_A .info_wrap .text_wrap .s_title {
    font-size: 22px;
  }
  article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .form_title > p {
    font-size: 25px;
  }
  article.sub_contents_A .image_wrap {
    margin-bottom: 30px;
  }

  /* sub_contents_B */
  article.sub_contents_B a {
    flex-direction: column;
    align-items: center;
  }

  article.sub_contents_B a > .image_wrap {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
  }

  article.sub_contents_B a > .text_wrap {
    width: 100%;
    padding-left: 0;
  }
  article.sub_contents_B a > .text_wrap .title {
    font-size: 32px;
  }

  /* ------------------------------ */
  /* image_board */
  article.image_board .list_wrap > li {
    width: 50%;
  }
  article.image_board .list_wrap.styleB > li {
    width: 33.3%;
  }

  /* board_view */
  article.board_view .content_view_wrap .title_wrap .tit {
    font-size: 30px;
  }

  /* ------------------------------ */
  /* program_list */
  article.program_list .program_list_wrap > li {
    flex-direction: column;
  }
  article.program_list .program_list_wrap > li > div:nth-child(1) {
    width: 100%;
    font-size: 15px;
    margin-bottom: 20px;
  }
  article.program_list .program_list_wrap > li > div:nth-child(2) {
    width: 100%;
  }

  article.program_list .program_list_wrap .speaker_list_box > li {
    height: auto;
    margin: 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  article.program_list .program_list_wrap .speaker_list_box .tit_wrap {
    margin: 0 0 8px 0;
  }
  article.program_list .program_list_wrap .speaker_list_box .info_wrap .text_set .name_set {
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
  }
  article.program_list .program_list_wrap .speaker_list_box .info_wrap .text_set .name {
    margin-bottom: 5px;
    font-size: 15px;
  }

  /* speaker_list */
  article.speaker_list ul > li {
    width: 33.3%;
  }

  /* speaker_list_B */
  article.speaker_list_B {
    padding: 100px 0;
  }

  article.speaker_list_B ul > li {
    padding: 20px;
  }

  /* photo_list */
  article.photo_list {
    padding: 100px 0;
  }
  article.photo_list ul > li {
    width: 33.3%;
  }

  /* ------------------------------ */
  /* news_subscription */
  article.news_subscription > .center_inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  article.news_subscription .text {
    margin-bottom: 20px;
    font-size: 20px;
  }

  /* agenda */
  article.agenda ul {
    flex-wrap: wrap;
  }
  article.agenda ul > li {
    width: 50%;
  }

  /* feedback */
  article.feedback {
    padding: 100px 0;
  }

  /* 20240221 add */
  article.stay_tuned .center_inner > div {
    width: 100%;
  }

  article.stay_tuned .input_wrap > label {
    flex-direction: column;
  }

  article.stay_tuned .input_wrap > label > div {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }

  article.stay_tuned .input_wrap > label > div > div input {
    height: 46px;
  }
  article.stay_tuned .input_wrap > label > div > div:nth-child(1) > input {
    width: 100%;
  }

  article.stay_tuned .input_wrap > label > button {
    width: 100%;
    max-width: 100%;
    height: 46px;
    margin-left: 0;
  }

  /* article.metaweek_event .text .title {
    margin-bottom: 50px;
  } */
  article.metaweek_event .btn_wrap {
    position: static;
  }
  /* article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box > p {
    width: 100%;
  } */
  /* article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container {
    padding: 8%;
  } */
  /* // 20240221 add */

  article.pre_reg_2025 .input_wrap fieldset {
    width: 80%;
  }
}

@media all and (max-width: 1200px) {
  article.sub_contents_A.newstyle_2025 .center_inner > div {
    display: block;
  }
  article.sub_contents_A.newstyle_2025 .info_wrap .text_wrap {
    width: 100%;
  }
  article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap {
    width: 100%;
    margin-top: 4%;
  }
  article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container {
    padding: 2%;
  }
  article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box > p {
    width: 49%;
  }
  article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box .btn_input input {
    padding: 2% 0px;
  }
  article.metaweek_event .center_inner {
    flex-direction: column;
}
article.metaweek_event .center_inner > div {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
article.metaweek_event .text .title {
  display: flex;
  justify-content: center;
}
article.metaweek_event .btn_wrap {
  display: flex;
  justify-content: center;
}

article.pre_reg_2025 .input_wrap input {
  padding: 20px 30px;
  border-radius: 24px;
}
}
@media all and (max-width: 900px) {
.complogo {
    margin-top:10px;
      width: 100%;         
      display: flex;
      justify-content: flex-end; 
      align-items: center;     
}

.complogo img {
  height: auto;
  width: 100px;        
}
  article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box > p {
    width: 49%;
  }
  article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container {
    padding: 4% 3%;
  }
  article.pre_reg_2025 .info_wrap .img_wrap {
    margin-bottom: 30px;
  }
  article.pre_reg_2025 .info_wrap .img_wrap img {
    width: 500px;
  }
  article.pre_reg_2025 .info_wrap .img_wrap .text p:nth-child(1) {
    font-size: 40px;
  }
  article.pre_reg_2025 .info_wrap .img_wrap .text p:nth-child(2) {
    font-size: 20px;
  }
  article.pre_reg_2025 .info_wrap .text_wrap {
    font-size: 20px;
  }
  article.pre_reg_2025 .input_wrap fieldset {
    display: block;
  }
 
    
  
article.pre_reg_2025 .input_wrap .user_info_wrap {
  display:block;
  width: 100%;
  
}

article.pre_reg_2025 .input_wrap .user_info_wrap input:nth-child(1) {
  width: 100%;margin-top: 10px;
}

article.pre_reg_2025 .input_wrap .user_info_wrap input:nth-child(2) {
   width: 100%;margin-top: 10px;
}
article.pre_reg_2025 .input_wrap .user_info_wrap input:nth-child(3) {
  width: 100%;margin-top: 10px;
}

  article.pre_reg_2025 .input_wrap .submit_btn_wrap {
    width: 97%;
    margin-top: 20px;
  }
    
  article.metaweek_event .text .title > p {
    font-size: 35px;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 820px) {
  article.stay_tuned .center_inner {
    flex-direction: column;
    text-align: center;
  }
  article.stay_tuned .text_wrap > div:nth-child(1) {
    font-size: 28px;
  }

  /*############ main_page ############*/
  /* link_card */
  article.link_card {
    padding: 90px 0;
  }
  article.link_card .center_inner {
    flex-direction: column;
    justify-content: center;
  }
  article.link_card .center_inner > div {
    width: 100%;
    margin-bottom: 15px;
  }

  article.link_card .content_box_A .title_wrap {
    margin-bottom: 60px;
  }

  /* metaweek */
  article.metaweek_event {
    padding: 90px 0 0 0;
  }

  /* news_list */
  article.news_list {
    padding: 90px 0;
  }

  /* partner_list */
  article.partner_list {
    padding: 90px 0;
  }
  article.partner_list ul > li {
    padding: 20px;
  }

  article.partner_list .title_wrap {
    font-size: 21px;
  }

  /* partner_list_B */
  article.partner_list_B {
    padding: 60px 0;
  }

  article.partner_list_B .list_wrap ul > li {
    width: 25%;
  }
  article.partner_list_B .list_wrap ul > li > a {
    padding: 20px;
  }

  /*############ sub_page ############*/
  /* sub_title_box */
  .sub_title_box .title {
    font-size: 28px;
  }
  .sub_title_box .s_title {
    font-size: 15px;
  }

  /* event_title_box */
  .event_title_box {
    padding: 80px 0;
  }

  .event_title_box .text_wrap .title {
    font-size: 35px;
  }
  .event_title_box .text_wrap .date {
    margin-bottom: 65px;
  }
  .event_title_box .text_wrap .text1 {
    font-size: 26px;
  }
  .event_title_box .text_wrap .text2 {
    font-size: 18px;
  }
  .event_title_box .text_wrap .text3 {
    font-size: 16px;
  }

  /* page_tab_box */
  .page_tab_box {
    margin: 10px 0;
  }
  .page_tab_box > ul > li > a {
    padding: 12px 20px;
  }

  /* page_tab_box_B */
  .page_tab_box_B > a > span:nth-child(1) {
    font-size: 16px;
  }
  .page_tab_box_B > a > span:nth-child(2) {
    font-size: 12px;
  }

  /* ------------------------------ */
  /* sub_contents_A */
  article.sub_contents_A {
    padding: 60px 0;
  }

  article.sub_contents_A .info_wrap .text_wrap .title {
    font-size: 25px;
  }
  article.sub_contents_A .info_wrap .text_wrap .s_title {
    font-size: 20px;
  }

  article.sub_contents_A .info_wrap .logo_wrap {
    flex-direction: column;
    justify-content: center;
  }
  article.sub_contents_A .info_wrap .logo_wrap > div {
    width: auto;
    min-width: auto;
    margin-bottom: 20px;
    text-align: center;
  }
  article.sub_contents_A .info_wrap .logo_wrap > div::after {
    display: none;
  }
  article.sub_contents_A .info_wrap .logo_wrap > ul {
    justify-content: center;
  }

  /* sub_contents_B */
  article.sub_contents_B {
    padding: 60px 0;
  }
  article.sub_contents_B a > .text_wrap .title {
    font-size: 25px;
  }

  /* ------------------------------ */
  /* image_board */
  article.image_board .list_wrap.styleB > li {
    width: 50%;
  }

  /* board_view */
  article.board_view .content_view_wrap {
    padding: 50px 0;
  }

  article.board_view .content_view_wrap .title_wrap .tit {
    font-size: 22px;
  }

  article.board_view .content_view_wrap .content_wrap {
    font-size: 16px;
  }

  article.board_view .more_list_wrap .box_title {
    font-size: 20px;
  }

  /* ------------------------------ */
  /* program_list */
  article.program_list .box_title {
    font-size: 20px;
  }

  article.program_list .s_title {
    font-size: 18px;
  }

  article.program_list .s_title_B {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  article.program_list .program_list_wrap > li {
    padding: 20px 10px;
  }
article.program_list .program_list_wrap > li .text1 {
  margin-bottom: 8px;
  font-size: 13px;
}
    
  article.program_list .program_list_wrap > li .text2 {
    font-size: 12px;
    line-height:1.6;
  }
    
    

    
  article.program_list .program_list_wrap .speaker_list_box .info_wrap .logo_set > a {
    height: 20px;
  }

  /* speaker_list */
  article.speaker_list .box_title {
    font-size: 20px;
  }

  article.speaker_list ul > li {
    width: 50%;
  }
  article.speaker_list ul > li .text > div:nth-child(1) {
    font-size: 15px;
  }
  article.speaker_list ul > li .logo {
    height: 30px;
  }

  /* speaker_list_B */
  article.speaker_list_B {
    padding: 80px 0;
  }
  article.speaker_list_B ul > li {
    width: 33.3%;
  }

  /* speaker_view_modal */
  .speaker_view_modal .content_wrap {
    flex-direction: column;
  }

  .speaker_view_modal .content_wrap .image_set {
    width: 100%;
    margin-bottom: 20px;
  }
  .speaker_view_modal .content_wrap .text_set {
    width: 100%;
    padding: 0;
  }

  /* photo_list */
  article.photo_list {
    padding: 80px 0;
  }

  article.photo_list ul > li {
    width: 50%;
  }

  /* ------------------------------ */
  /* news_subscription */
  article.news_subscription {
    padding: 30px 0;
  }

  /* previous_magazine */
  article.previous_magazine {
    padding: 50px 0;
  }
  article.previous_magazine .center_inner {
    flex-direction: column;
  }

  article.previous_magazine .left_text_wrap {
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
    flex-direction: row;
  }
  article.previous_magazine .left_text_wrap .text {
    font-size: 20px;
  }

  article.previous_magazine .magazine_slide_wrap {
    width: 100%;
  }

  /* agenda */
  article.agenda .box_title {
    font-size: 20px;
  }
  article.agenda ul > li {
    width: 100%;
  }

  /* agenda_B */
  article.agenda_B {
    padding: 50px 0;
  }

  article.agenda_B .content_wrap {
    flex-direction: column;
    align-items: center;
  }
  article.agenda_B .content_wrap > div {
    width: 100%;
    margin: 15px 0;
  }

  /* FAQ_list */
  article.FAQ_list {
    padding: 50px 0;
  }

  /* overview */
  article.overview {
    padding: 30px 0;
  }

  /* feedback */
  article.feedback {
    padding: 50px 0;
  }

  /* speakers_link */
  article.speakers_link {
    padding: 50px 0;
  }

  /* photo_video_set */
  article.photo_video_set {
    padding: 50px 0;
  }

  article.photo_video_set .center_inner {
    flex-direction: column;
    align-items: center;
  }
  article.photo_video_set .center_inner > div {
    width: 100%;
    margin: 20px 0;
  }

  /* comingsoon */
  article.comingsoon {
    padding: 80px 0;
  }

  article.comingsoon .text {
    font-size: 20px;
  }

  /* ticket_buy */
  article.ticket_buy {
    padding: 50px 0;
  }

  article.ticket_buy .content_wrap {
    flex-direction: column;
  }
  article.ticket_buy .content_wrap > div:nth-child(1) {
    width: 100%;
    margin-bottom: 15px;
    font-size: 20px;
  }
  article.ticket_buy .content_wrap > ul {
    width: 100%;
    padding: 0 15px;
  }

  /*############ about_seoul ############*/
  article.about_seoul {
    padding: 50px 0;
  }

  /* video */
  article.about_seoul.video .video_view {
    flex-direction: column;
  }
  article.about_seoul.video .video_view .video_list {
    width: 100%;
    margin-bottom: 15px;
  }
  article.about_seoul.video .video_view .video_box_wrap {
    width: 100%;
  }
}

@media all and (max-width: 680px) {
  /*############ main_page ############*/
  /* partner_list */
  article.partner_list .main_partner_list > li {
    width: 50%;
  }
  article.partner_list .sub_partner_list > li {
    width: 25%;
  }

  /* partner_list_B */
  article.partner_list_B .list_wrap ul > li > a {
    padding: 15px;
  }

  /*############ sub_page ############*/
  /* page_tab_box */
  .page_tab_box > ul {
    justify-content: center;
  }

  /* page_tab_box_B */
  .page_tab_box_B > a > span:nth-child(1) {
    font-size: 14px;
  }
  .page_tab_box_B > a > span:nth-child(2) {
    font-size: 10px;
  }

  /* page_number_box */
  .page_number_box {
    margin: 10px 0;
  }
  .page_number_box > ul > li > a {
    padding: 8px 8px;
    font-size: 13px;
  }

  /* ------------------------------ */
  /* image_board */
  article.image_board {
    padding: 40px 0;
  }
  article.image_board .list_wrap > li {
    width: 100%;
  }
  article.image_board .list_wrap > li > a {
    padding: 15px 5px;
  }

  article.image_board .list_wrap > li > a .text_wrap .title {
    font-size: 16px;
  }
  article.image_board .list_wrap > li > a .text_wrap .date {
    font-size: 12px;
  }

  article.image_board .list_wrap.styleB > li {
    width: 100%;
  }

  /* board_view */
  article.board_view .next_wrap .center_inner {
    flex-direction: column;
  }
  article.board_view .next_wrap .center_inner > a {
    width: 100%;
  }
  article.board_view .next_wrap .center_inner > a .icon {
    display: none;
  }
  article.board_view .next_wrap .center_inner > a .text {
    width: 100%;
  }
  article.board_view .next_wrap .center_inner > a .text > div:nth-child(1) {
    font-size: 16px;
  }

  article.board_view .next_wrap .center_inner > a:nth-child(1) {
    margin-bottom: 20px;
    border-right: none;
  }
  article.board_view .next_wrap .center_inner > a:nth-child(2) .text {
    align-items: flex-start;
    text-align: left;
  }

  article.board_view .more_list_wrap .box_title {
    font-size: 18px;
  }

  article.board_view .more_list_wrap ul > li > a .img_wrap {
    width: 30%;
  }

  article.board_view .more_list_wrap ul > li > a .text_wrap {
    width: 70%;
  }
  article.board_view .more_list_wrap ul > li > a .text_wrap .title_set .title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  article.board_view .more_list_wrap ul > li > a .text_wrap .title_set .text {
    font-size: 12px;
  }
  article.board_view .more_list_wrap ul > li > a .text_wrap .date {
    font-size: 12px;
  }

  /* ------------------------------ */
  /* speaker_list */
  article.speaker_list ul > li {
    padding: 20px;
  }

  /* speaker_list_B */
  article.speaker_list_B ul > li {
    width: 50%;
  }

  /* ------------------------------ */
  /* previous_magazine */
  article.previous_magazine .magazine_slide_wrap .btn > div {
    width: 30px;
    height: 30px;
  }
  article.previous_magazine .magazine_slide_wrap .btn > div > img {
    width: 14px;
  }

  /* agenda */
  article.agenda ul > li .title {
    font-size: 17px;
  }

  /*############ about_seoul ############*/
  article.about_seoul .box_title {
    font-size: 20px;
  }
  article.pre_reg_2025 .input_wrap fieldset {
    width: 100%;
  }
}
@media all and (max-width: 600px) {
  article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container {
    padding: 8% 6%;
  }
  article.sub_contents_A.newstyle_2025 .info_wrap .input_wrap .box_container .flex_box > p {
    width: 100%;
  }
  article.pre_reg_2025 .info_wrap .img_wrap img {
    width: 400px;
  }
  article.pre_reg_2025 .info_wrap .img_wrap .text p:nth-child(1) {
    font-size: 30px;
  }
  article.pre_reg_2025 .info_wrap .img_wrap .text p:nth-child(2) {
    font-size: 15px;
}
article.pre_reg_2025 .info_wrap .text_wrap {
  font-size: 16px;
}
 
}
@media all and (max-width: 480px) {
  article.program_list .program_list_wrap .speaker_list_box .info_wrap .text_set .company {
    font-size: 12px;width:150px;
  }
  article.stay_tuned .text_wrap > div:nth-child(1) {
    margin-bottom: 15px;
    font-size: 22px;
  }

  article.stay_tuned .input_wrap > label {
    flex-direction: column;
  }
  article.stay_tuned .input_wrap > label > div {
    width: 100%;
    max-width: 100%;
  }
  article.stay_tuned .input_wrap > label > div > div input {
    height: 45px;
  }

  article.stay_tuned .input_wrap > label > button {
    width: 80%;
    max-width: 180px;
    height: 50px;
    margin: 10px auto 0 auto;
  }

  /*############ main_page ############*/
  /* link_card */
  article.link_card {
    padding: 50px 0;
  }

  /* metaweek */
  article.metaweek_event .text > div:nth-child(1) {
    font-size: 35px;
  }
  article.metaweek_event .text > div:nth-child(2) {
    font-size: 18px;
  }

  /* news_list */
  article.news_list {
    padding: 50px 0;
  }

  article.news_list .content_box_A .content_list > li {
    font-size: 13px;
  }

  /* partner_list */
  article.partner_list .title_wrap {
    font-size: 20px;
  }

  article.partner_list ul > li {
    padding: 10px;
  }

  article.partner_list .main_partner_list {
    margin: 30px 0;
  }
  article.partner_list .main_partner_list > li {
    width: 50%;
  }
  article.partner_list .sub_partner_list > li {
    width: 33%;
  }

  /* partner_list_B */
  article.partner_list_B .list_wrap ul > li {
    width: 33%;
  }
  article.partner_list_B .list_wrap ul > li > a {
    padding: 10px;
  }

  /* silde_text */
  article.silde_text {
    padding: 20px 0;
    font-size: 16px;
  }
  article.silde_text .text {
    top: 12px;
  }

  /*############ sub_page ############*/
  /* sub_title_box */
  .sub_title_box {
    padding: 30px 0;
  }

  .sub_title_box .title {
    font-size: 22px;
  }
  .sub_title_box .s_title {
    font-size: 13px;
  }

  /* event_title_box */
  .event_title_box .text_wrap .title {
    font-size: 32px;
  }
  .event_title_box .text_wrap .date {
    margin-bottom: 50px;
  }
  .event_title_box .text_wrap .text1 {
    font-size: 22px;
  }
  .event_title_box .text_wrap .text2 {
    font-size: 16px;
  }

  /* page_tab_box_B */
  .page_tab_box_B > a > span:nth-child(1) {
    font-size: 12px;
  }
  .page_tab_box_B > a > span:nth-child(2) {
    font-size: 10px;
  }

  /* ------------------------------ */
  /* board_view */
  article.board_view .content_view_wrap .title_wrap {
    padding: 20px 0;
  }
  article.board_view .content_view_wrap .title_wrap .tit {
    font-size: 18px;
  }
  article.board_view .content_view_wrap .title_wrap .date_set {
    flex-direction: column;
    align-items: flex-end;
  }
  article.board_view .content_view_wrap .title_wrap .date_set .date {
    margin-bottom: 10px;
  }

  article.board_view .content_view_wrap .content_wrap {
    font-size: 14px;
  }

  /* ------------------------------ */
  /* speaker_list */
  article.speaker_list ul > li {
    width: 100%;
  }

  /* speaker_list_B */
  article.speaker_list_B ul > li {
    width: 100%;
  }

  /* speaker_view_modal */
  .speaker_view_modal {
    padding: 20px;
  }

  /* photo_list */
  article.photo_list ul > li {
    width: 100%;
  }

  /* ------------------------------ */
  /* news_subscription */
  article.news_subscription .text {
    font-size: 18px;
  }

  /* previous_magazine */
  article.previous_magazine .left_text_wrap .text {
    font-size: 18px;
  }

  /* agenda_B */
  article.agenda_B .content_wrap > div .title {
    padding: 60px 30px;
  }
  article.agenda_B .content_wrap > div .title > div:nth-child(2) {
    font-size: 20px;
  }
  article.agenda_B .content_wrap > div ul {
    padding: 0 30px 40px 30px;
  }

  /*############ about_seoul ############*/
  /* link */
  article.about_seoul.link ul {
    flex-direction: column;
    align-items: center;
  }
  article.about_seoul.link ul > li {
    width: 80%;
  }
}
