@font-face {
  font-family: "GMarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff")
    format("woff");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "GMarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff")
    format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "GMarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff")
    format("woff");
  font-weight: 700;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

.m {
  display: none !important;
}
/* footer */
.foot {
  display: flex;
  align-items: center;
}

.foot-copy {
  width: auto;
  margin: 0 auto;
}

.foot-btn1,
.foot-btn2 {
  margin-left: 10px;
}

/* --------------------------
* 
* contents
*
*--------------------------*/
.text-center {
  text-align: center;
}

/*------- visual  */
.visual {
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* .visual::before {
  content: "";
  position: fixed;
  top: 0%;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/2020_3rd/images/bg.jpg) no-repeat center;
  background-size: cover;
  opacity: 0.8;
} */
#mainVideo {
  position: relative;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
}
.visual-con {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 53%;
  margin: auto;
  text-align: center;
}

/* visual-con-box1 */
.visual-con-box-txt {
  text-transform: uppercase;
  font-size: 4.333rem;
  font-weight: 900;
  color: #fff;
  /* font-family: Noto Sans KR; */

  font-family: "GMarketSans";
  display: inline-block;
  opacity: 0;
  margin-right: 1.2%;
}

.ko {
  font-size: 3.2rem;
  font-weight: 400;
  text-transform: capitalize;
}

.last {
  text-transform: none;
  margin-right: 0.3rem;
  font-size: 4rem;
  font-weight: 300;
}

.visual-con-box-txt.ko {
  /* background: #9c9c9c; */
  /* width: 60%; */
  width: 100%;
  padding: 7px 0;
  border-radius: 100px;
  margin-top: 1.5rem;
  position: relative;
  /* color: #111; */
  color: #fff;
  font-weight: 300;
  font-family: Noto Sans KR;
  font-family: "GMarketSans";
  font-size: 2.3rem;
  /* font-weight: 700; */
  letter-spacing: -1px;
}
.visual-con-box-txt.ko span {
  display: none;
}

/* .visual-con-box-txt.ko::before {
  content: "";
  position: absolute;
  top: -20%;
  right: 10%;
  z-index: -1;
  background: #9c9c9c;
  width: 20px;
  height: 50px;
  border-radius: 0 50px 0 0px;
  transform: skewX(25deg);
} */

/* visual-con-box2 - video */
.visual-con-box2 {
  border: solid 2px #999;
  box-sizing: border-box;
  margin: 3% auto 0;
  /* max-width:900px;
    height:370px; */
  position: relative;
}

.visual-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 30%;
}

.modal.modal-video {
  max-height: 100%;
  width: 80%;
  background: none;
  box-shadow: none;
  overflow-y: inherit;
}

.modal-video .modal-content {
  padding: 0;
}

.modal-video iframe,
.modal-video video {
  width: 75%;
  /* height:650px; */
  height: 60vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.modal-close {
  position: absolute;
  top: -40px;
}

.modal-close-right {
  right: -20px;
}

.modal-close-left {
  left: -20px;
}

.modal-close-center {
  right: 0;
  left: 0;
  margin: auto;
}

.modal-close i {
  font-size: 3rem;
}

.modal-footer {
  display: none;
}

/*----------- sub-visual */
.subpage-visual {
  width: 100%;
  min-height: 170px;
  background: url(/2020_3rd/images/subbg.jpg) no-repeat;
  background-position: center 5%;
  background-size: cover;
}

.subpage-visual .section-title {
  margin-top: 22.5%;
  color: #fff;
}

/**** animation  *****/
.move {
  transition: all 0.2s;
  animation: textAni 1.2s normal;
  -webkit-animation: textAni 1.2s normal;
  -moz-animation: textAni 1.2s normal;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: forwards;
}

.visual-con-box-txt.move {
  animation-delay: 0;
}

span:nth-child(2).visual-con-box-txt.move {
  animation-delay: 0.3s;
}

span:nth-child(3).visual-con-box-txt.move {
  animation-delay: 0.6s;
}

span:nth-child(4).visual-con-box-txt.move {
  animation-delay: 0.9s;
}

p.visual-con-box-txt.move {
  animation-delay: 1.2s;
}

@keyframes textAni {
  from {
    opacity: 0;
    transform: translateY(200px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes textAni {
  from {
    opacity: 0;
    transform: translateY(200px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*------- apply  */
.section-main {
  background: #f5f5f5 url(/2020_3rd/images/bg2.jpg) no-repeat center;
  background-size: cover;
}

.section-target {
  padding-top: 5%;
  display: block !important;
}

.box-con-txt {
  width: 100%;
  min-height: 450px;
  padding: 8% 5% 5%;
  margin-top: 2%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  font-size: 1.2rem;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: column;
}

.box-con-txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border: 2px solid #d9dee1;
  background: #fff;
}

.box-con-txt p {
  margin-bottom: 5%;
  letter-spacing: -0.05em;
}

.box-con-txt div {
  margin-top: auto;
}

.section-con-btn {
  display: block;
  text-align: center;
}

.section-con-btn .btn-style2 {
  display: block;
  font-weight: 400;
}

.section-title span {
  display: inline-block;
}

/*------- ticket  */
.ticket-box {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  padding: 4% 5%;
  box-sizing: border-box;
  border: 2px solid #d9dee1;
  position: relative;
  /* cursor: default;
    pointer-events: none; */
}

.ticket-box:not(:last-child) {
  margin-bottom: 2%;
}

/* .ticket-box:hover {
    border-color: #ff4d4e;
    transform: translateY(-12%);
    transition: transform .3s;
} */

/* .ticket-box:hover:after {
    content: '등록하기';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5%;
    margin: auto;
    width: 10%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ff4d4e;
    border: 2px solid #ff4d4e;
    box-sizing: border-box;
} */

.ticket-day {
  width: 40%;
  margin: auto 0;
  font-size: 2rem;
}

.ticket-pay {
  width: 45%;
  text-align: right;
  font-size: 1.333rem;
  font-weight: 300;
  margin: auto 0;
}

.ticket-pay strong {
  display: inline-block;
  font-family: Montserrat;
  font-size: 2.8rem;
  margin-left: 10%;
  font-weight: 900;
}

.ticket-alert {
  text-align: right;
  margin-top: 1%;
}

/*------ agency */
.section-agency .section-title {
  width: 100%;
}

.section-agency .section-con-title {
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 3%;
}

.section-agency .section-con-box {
  display: inline-block;
  width: 47%;
  vertical-align: top;
  margin-bottom: 3%;
}

.section-agency .section-con-box:nth-child(2) {
  margin-right: 5%;
}

.section-agency .section-con-box img {
  width: 100%;
}

.sess-bar {
  margin: 2% 0 10%;
  text-align: center;
  display: none !important;
}

.agency-btn {
  text-align: center;
}

.agency-btn a {
  width: 40%;
  font-weight: 400;
  padding: 21px 45px;
}

/*------ contactUs */
.section-contactus .section-con-txt {
  border: solid 1px #c7cbce;
  text-align: center;
}

.section-con-txt-left,
.section-con-txt-right {
  display: inline-block;
  width: 49%;
  text-align: center;
  font-size: 1.45rem;
  color: #676e73;
  position: relative;
  padding: 7% 0;
}

.section-con-txt-left:after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: #c7cbce;
}

.mailto {
  display: block;
  font-size: 1.4rem;
  font-weight: 100;
  margin-bottom: 10px;
}

.btn-down {
  padding: 2% 5%;
  width: auto;
  font-size: 1.3rem;
  font-weight: 400;
  color: #676e73;
  border-color: #676e73;
}

.btn-down:last-child {
  margin-left: 10px;
}

/*------ gallery */
.section-gallery .section-title {
  text-transform: capitalize;
}

.gallery-box {
  width: auto;
}

.swiper-container-horizontal > .swiper-scrollbar {
  width: 50%;
  margin: auto;
  left: 0;
  right: 0;
}

.swiper-scrollbar-drag {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-button-prev,
.swiper-button-next {
  background-image: none;
  top: 35%;
}

.swiper-button-prev {
  left: 20%;
}

.swiper-button-next {
  right: 25%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: "Material Icons";
  font-size: 10rem;
  vertical-align: middle;
  color: #fff;
  visibility: visible;
  cursor: pointer;
}

.swiper-button-prev:after {
  content: "navigate_before";
}

.swiper-button-next:after {
  content: "navigate_next";
}

/*------ promotion */
/*-- award banner */
.link-banner {
  background: #ff4d4e;
}

.link-banner .container {
  padding: 4% 0;
  line-height: 1.63;
  width: 62%;
  position: relative;
}

.link-banner .container:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(/2020_3rd/images/icon_08.png) no-repeat;
  background-position: 0 100%;
  background-size: 100%;
  width: 180px;
  height: 220px;
}

.link-banner-txt {
  text-align: center;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 900;
}

.link-banner-btn {
  text-align: center;
}

.link-banner-btn a.btn-style2 {
  color: #fff;
  border-color: #fff;
}

/*-- promotion -------------*/
.section-main {
  background: url(/2020_3rd/images/bg2_fin.jpg) no-repeat center 0;
}

.section-main article:first-child {
  padding: 5% 0 6%;
}

.section-promotion .box {
  width: 49%;
  height: 290px;
  margin: auto;
  margin-bottom: 2.5%;
  margin-left: 0;
  background: url(/2020_3rd/images/box.png) no-repeat 0 center;
  background-size: 400%;
}

.section-promotion .box:nth-child(2n) {
  margin-right: 0;
}

.box.pro-mobi-int {
  background-position-x: 33.4%;
}

.box.pro-mobi-aca {
  background-position-x: 66.67%;
}

.box.pro-mobi-con {
  background-position-x: 100.1%;
}

.section-promotion .box .box-con {
  padding: 2% 13% 4%;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  color: #454545;
}

.section-promotion h5 {
  font-size: 1.5rem;
  line-height: 2.03;
  font-weight: bold;
}

.section-promotion p {
  font-size: 1.2rem;
}

.section-promotion p span {
  margin-left: 10px;
}

.section-promotion div {
  margin: auto;
  margin-bottom: 0;
  line-height: 1.55;
}

.section-promotion .btn-style2-black {
  border-color: #777;
  border-width: 1px;
  font-size: 1.2rem;
  color: #777;
}

.count-box {
  background: #111;
  color: #ddd;
  font-size: 1.6rem;
  padding: 3% 0;
  text-align: center;
  font-weight: 400;
}

.count-box strong {
  font-weight: bold;
  color: #f6f6f6;
}

/*-------- services */
.services .family-logo img {
  width: 37%;
}
.sponsored-con-box {
  width: calc(100% / 6);
  text-align: center;
  /* margin-left: auto; */
  /* margin-bottom: 3%; */
  margin-right: 0;
  margin-bottom: 0;
  background-color: #fff;
  border: 2px solid #eee;
}
/* .sponsored-con-box:nth-of-type(1),
.sponsored-con-box:nth-of-type(2),
.sponsored-con-box:nth-of-type(3),
.sponsored-con-box:nth-of-type(4) {
  margin-right: 2%;
} */

/* 모비인사이드 */
.services .sponsored-con-box:nth-child(2) .family-logo img {
  width: 47%;
}

/* 코코다이브 */
.services .sponsored-con-box:nth-child(3) .family-logo img {
  width: 100%;
  max-width: 150px;
}

/* 그로스쿨 */
.services .sponsored-con-box:nth-child(5) .family-logo img {
  width: 25%;
}

/* ai */
.services .sponsored-con-box:nth-child(6) .family-logo img {
  width: 100%;
}

/* 모비커넥트 */
.services .sponsored-con-box:nth-child(7) .family-logo img {
  width: 80%;
}

/* 모비인터치 */
.services .sponsored-con-box:nth-child(8) .family-logo img {
  width: 37%;
}

/* 모비원 */
.services .sponsored-con-box:nth-child(9) .family-logo img {
  width: 60%;
}

.family-link {
  /* padding: 3% 0; */
  padding-top: 3%;
  margin-top: 5%;
  text-transform: lowercase;
  font-size: 1rem;
  font-weight: 400;
}

.family-link a {
  width: 100%;
  padding: 4% 6%;
  display: inline-block;
  text-align: center;
  background-color: #2d2d2d;
  color: #fff;
}

/* .family-link a:first-child {
  margin-right: 5px;
} */
/* 
.family-link a:hover {
  color: #fff;
  border-color: transparent;
  background: #ff4d4e;
  transition: transform 0.3s;
  transform: translateY(-5px);
} */

/*------ sponsored  */
.section-family {
  padding: 4% 0;
  background: #fff url(/2020_3rd/images/bg3.png) no-repeat;
  background-size: cover;
}
.sponsored {
  padding: 5% 0;
}
.section-family .section-con-btn .btn-style2 {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.family-logo {
  margin-top: 1rem;
  padding: 4rem 0 2rem;
  /* height: 80px; */
  position: relative;
}

.family-logo img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 80px;
}

.sponsored-con-box:first-child .family-logo img {
  max-width: 95px;
}

.sponsored .section-con-btn {
  padding-top: 3%;
}
.sponsored .section-con-btn a {
  display: inline-block;
}
/*------ faq */
.faq-box {
  font-size: 1.5rem;
  padding: 2% 0;
  word-break: keep-all;
  font-weight: 400;
  position: relative;
  border-bottom: 2px solid #d9dee1;
  position: relative;
}

.faq-box .faq-box-title:after {
  font-family: "Material Icons";
  content: "keyboard_arrow_down";
  position: absolute;
  top: 20px;
  bottom: 0;
  right: 0;
  font-size: 3rem;
  color: #d9dee1;
}

.faq-box.active .faq-box-title:after {
  content: "keyboard_arrow_up";
}

.faq-box:first-child {
  border-top: 2px solid #d9dee1;
}

.faq-box-text span {
  display: inline-block;
  vertical-align: top;
  width: 7%;
}

.faq-box-text .small {
  font-size: 1.2rem;
}

.faq-box-text span.full {
  width: 92%;
  font-size: 1.125rem;
  vertical-align: top;
}

.faq-box-text a {
  text-decoration-line: underline;
  color: #4285f4;
}

/* material custom */
.collapsible {
  border: none;
  box-shadow: none;
  margin: 0;
}

.collapsible-header {
  width: 100%;
}

.collapsible-header,
.collapsible-body {
  border: none;
  font-family: SpoqaHanSans;
}

.collapsible-body {
  padding: 1rem;
}

.collapsible.popout > li {
  box-shadow: none;
}

.collapsible.popout > li.active {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  margin: 0;
  border: none;
}

/* 스폰서 */
/* .sponsored-con-box:first-child .family-logo img{display: none;}
.sponsored-con-box:first-child .family-logo{position: relative;}
.sponsored-con-box:first-child .family-logo:after{
    content: 'TOBI';
    position: absolute;
    top: 0;left:0;right: 0;bottom: 0;
    margin: auto;
    width: 100%;height: 10px;
    text-align: center;
    font-weight: bold;
} */

/* 2020-08-18:: modal */
.modal-info {
  background: none;
  width: 35%;
  max-height: 75%;
  border-radius: 3px;
  overflow: hidden;
  /* 210312 추가*/
  max-width: 600px;
}

.modal.modal-info,
.modal-overlay {
  width: 80%;
  display: none !important;
}

body {
  overflow-y: scroll !important;
}

.modal-info .modal-content {
  background: #fff;
  padding: 5px;
  box-sizing: border-box;
}

.modal-imgBox {
}

.modal-imgBox img {
  width: 100%;
  height: auto;
}

.modal-info .modal-footer {
  display: block;
  padding: 0;
  height: auto;
}

.modal-info .modal-close {
  position: relative;
  top: 0;
  /* 210312 추가*/
  margin: 0 0 10px !important;
  height: auto;
  line-height: 1.2;
}

/* 하단 배너 */

.banner {
  position: fixed;
  bottom: 0;
  z-index: 3;
  width: 100%;
  background: #ff4d4e;
  padding: 22px 0;
}
.banner.stop {
  position: absolute;
}
.banner > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1500px;
  margin: 0 auto;
}
.banner p {
  font-weight: 500;
  color: #fff;
  font-size: 28px;
}
.banner a {
  width: 160px;
  margin-left: 50px;
  padding: 10px 0;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

/* --------------------------
* 
* media query
*
--------------------------*/
/*------- pc  */
@media screen and (max-width: 1399px) {
  /* visual */
  .visual-con-box-txt {
    font-size: 4rem;
  }

  .visual-con-box-txt.ko {
    font-size: 2rem;
  }

  .visual-con-box-txt.ko img {
    width: 45px;
  }

  .visual-con-box2 {
    max-height: 300px;
    width: 70%;
  }

  .visual-video {
    height: 40%;
  }

  /* apply */
  .box-con-txt {
    height: auto;
    font-size: 1rem;
  }

  /* ticket */
  .ticket-box {
    padding: 3% 5%;
  }

  .ticket-day {
    font-size: 1.6rem;
  }

  .ticket-pay {
    font-size: 1rem;
  }

  .ticket-pay strong {
    font-size: 2rem;
  }

  .ticket-alert {
    font-size: 0.9rem;
  }

  /* location */
  .section-con-address {
    font-size: 1.2rem;
    letter-spacing: -0.05em;
  }
  .banner {
    padding: 22px 0;
  }
  .banner > div {
    max-width: 1000px;
    width: 90%;
  }
  .banner p {
    font-size: 24px;
  }
  .banner a {
    width: 120px;
    padding: 8px 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 1280px) {
  /* apply */
  .box-title-img {
    width: 43%;
  }

  .box-title-img + :after {
    left: 18%;
    width: 200px;
    height: 300px;
  }

  .section-con-btn .btn-style2 {
    font-size: 1.2rem;
    padding: 1.3rem 0;
  }

  /* promotion */
  .section-promotion .box {
    height: 260px;
  }

  .section-promotion p,
  .section-promotion .btn-style2-black {
    font-size: 1rem;
  }

  /* 2020-08-18:: modal */
  .modal.modal-info {
    width: 50%;
  }
}

@media screen and (max-width: 1140px) {
  /* visual */
  .visual-con-box-txt.move.ko {
    font-size: 2rem;
  }

  .visual-con-box-txt.move.ko img {
    width: 40px;
  }

  /* ticket */
  .ticket-day {
    font-size: 1.333rem;
  }

  .ticket-pay {
    font-size: 1.125rem;
  }

  /* agency */
  .agency-btn a {
    width: 60%;
  }

  /* location */
  .row .col.s10 {
    padding: 0;
  }

  .section-con-address {
    font-size: 1.25rem;
  }

  /* promotion */
  .section-promotion .box {
    height: 176px;
  }

  .section-promotion h5 {
    font-size: 1.25rem;
  }

  .section-promotion p {
    font-size: 0.9rem;
    letter-spacing: -0.08em;
  }

  .section-promotion .btn-style2-black {
    font-size: 0.9rem;
  }

  .count-box {
    font-size: 1.3rem;
  }

  /* faq */
  .faq-box {
    font-size: 1.333rem;
  }
}

@media screen and (max-width: 970px) {
  /* visual */
  .visual-con-box-txt {
    font-size: 4.6rem;
  }

  /* apply */
  .box-con-txt {
    height: auto;
  }

  /* sponsored */
  .family-logo img {
    max-width: 90px;
  }

  .sponsored-con-box:first-child .family-logo img {
    max-width: 85px;
  }

  /* faq */
  .faq-box-text span {
    width: 5%;
  }

  .faq-box-text span.full {
    width: 95%;
    letter-spacing: -0.1em;
  }

  /* 2020-08-18:: modal */
  .modal.modal-info {
    width: 70%;
  }
  .section.section-contactus {
    padding-bottom: 12% !important;
  }
}

@media screen and (max-width: 799px) {
  /* visual */
  .visual-con-box2 {
    height: 350px;
  }

  /* apply */
  .section-con-box.col.s6 {
    width: 100%;
    padding: 0;
  }

  .box-con-txt {
    height: auto;
    margin-bottom: 5%;
  }

  .box-con-txt p {
    font-size: 1.1rem;
  }

  /* ticket */
  .ticket-day {
    font-size: 1.12rem;
    line-height: 1.4;
  }

  .ticket-pay strong {
    font-size: 2rem;
  }

  .ticket-box:hover:after {
    width: 14%;
    right: 2%;
  }

  .ticket br.mobile {
    display: block !important;
  }

  /* agency */
  .section-agency .section-con-box {
    width: 100%;
  }

  .agency-btn a {
    width: 100%;
  }

  /* contactus */
  .section-con-txt-left,
  .section-con-txt-right {
    display: block;
    width: 100%;
    font-size: 1rem;
  }

  .section-con-txt-left:after {
    width: 80%;
    height: 1px;
    top: inherit;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }

  .mailto {
    font-size: 1rem;
  }

  /* promotion */
  .link-banner .container {
    width: 90%;
  }

  .link-banner .container:after {
    width: 115px;
  }

  .section-promotion .box {
    height: 130px;
  }

  .section-promotion h5 {
    font-size: 1rem;
  }

  .section-promotion p {
    font-size: 0.7rem;
    letter-spacing: -0.12em;
  }

  .section-promotion .btn-style2-black {
    font-size: 0.7rem;
    padding: 5px 20px;
  }

  .count-box {
    font-size: 1.2rem;
  }

  /* sponsored */
  /* .sponsored-con-box{width:33%;} */
  .family-logo img {
    max-width: 85px;
  }

  .sponsored-con-box:first-child .family-logo img {
    max-width: 75px;
  }

  /* faq */
  .faq-box {
    font-size: 1.1rem;
  }

  .faq-box-text span {
    width: 10%;
  }

  .faq-box-text span.full {
    width: 89%;
  }

  .banner {
    padding: 2rem 0;
  }
  .banner > div {
    flex-wrap: wrap;
    width: 90%;
  }
  .banner p {
    width: 100%;
    margin-bottom: 3vw;
    font-size: 1.3rem;
    text-align: center;
  }
  .banner a {
    width: 50%;
    margin: 0 auto;
    padding: 0.7rem 0;
    font-size: 1rem;
  }
  .section.section-contactus {
    padding-bottom: 30% !important;
  }
}

/*------- mobile */
@media screen and (max-width: 600px) {
  /* visual */
  .mobile,
  .btn-mobile {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
  .m {
    display: block !important;
  }

  .btn-style,
  .btn-style2 {
    border-width: 1px;
  }

  .visual::before {
    background: url(/2020_3rd/images/m-bg.jpg) no-repeat center;
    background-size: cover;
  }

  .visual-con {
    height: 65%;
  }

  .visual-con-box-txt {
    font-size: 3.4rem;
  }

  .visual-con-box-txt.move.ko {
    width: 100%;
    font-size: 1.5rem;
    vertical-align: middle;
    /* margin-top: 1.8rem; */
    margin-top: 0;
    /* text-align: center; */
    text-align: left;
  }

  .visual-con-box-txt.ko img {
    vertical-align: middle;
    width: 40px;
  }

  .visual-con-box1 .visual-con-box {
    text-align: left;
    /* font-size: 1.8rem; */
  }

  .visual-con-box1 .visual-con-box .last {
    display: none;
  }
  .visual-con-box-txt.ko span {
    display: inline-block;
    margin-right: 10px;
    font-size: 2rem;
  }
  .visual-con-box-txt:first-child {
    display: block;
  }

  .visual-con-box2 {
    max-height: 320px;
    height: 40%;
    margin-top: 10%;
    width: 100%;
  }

  .visual-video {
    height: 20%;
  }

  .visual-video img {
    width: 15%;
  }

  .modal.modal-video {
    width: 90%;
  }

  .modal-video iframe {
    height: 250px;
  }

  .modal-video iframe,
  .modal-video video {
    width: 100%;
  }

  .section-family .section-con-txt.box-con-txt {
    width: 90% !important;
    padding: 5% !important;
    margin: 0 auto;
  }
  .section-family .section-con-btn .btn-style2 {
    width: 100%;
  }
  .sponsored .section-con-btn a {
    width: 50%;
  }
  /* apply */
  .section-main .section-con-txt {
    letter-spacing: -0.07em;
  }

  .section-con-txt.box-con-txt {
    /* height:290px; */
    min-height: auto;
    /*375px*/
    margin-bottom: 10%;
  }

  .section-con-btn .btn-style2 {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .section-award .box-title-img + :after {
    left: 18%;
    width: 100px;
    height: 300px;
  }

  /* ticket */
  .ticket-box {
    padding: 3%;
    border-width: 1px;
    /* height: 60px; */
    box-sizing: border-box;
  }

  .ticket-box:after {
    content: "keyboard_arrow_right";
    font-family: "Material Icons";
    font-size: 2rem;
    width: 30px;
    height: 30px;
    border-radius: 45px;
    line-height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 0.3;
  }

  .ticket-box:hover {
    border-color: #ccc;
    transform: translateY(0);
  }

  .ticket-box:hover:after,
  .ticket-box:active:after,
  .ticket-box:focus:after {
    content: "keyboard_arrow_right";
    font-family: "Material Icons";
    font-size: 2rem;
    width: 30px;
    height: 30px;
    border-radius: 45px;
    line-height: 30px;
    border-color: #ccc;
    color: #ccc;
  }

  .ticket-day {
    width: 50%;
    margin-right: 2%;
  }

  .ticket-pay {
    width: 38%;
  }

  .ticket-pay strong {
    margin-left: 0;
  }

  .ticket-alert {
    font-size: 0.85rem;
    margin-top: 3%;
  }

  .ticket-box a {
    /* display: none; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none;
    text-indent: -9999px;
    transition: 10s;
  }

  .ticket-box a:active,
  .ticket-box a:hover {
    background: none !important;
  }

  .ticket-box a div {
    display: none !important;
  }

  /* agency */
  .section-agency .section-con-title {
    font-size: 1.2rem;
  }

  .section-agency h2.section-con-title {
    margin-top: 12%;
  }

  .agency-btn a {
    width: 100%;
    font-size: 1.1rem;
    border-width: 1px;
  }

  /* contactus */
  .section-contactus h2:nth-child(3) {
    margin-top: 10%;
  }

  .share-group {
    text-align: center;
    padding: 4% 0;
  }

  .share-group a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
    vertical-align: middle;
  }

  .share-group a img {
    width: 100%;
    height: auto;
  }

  .share-group a:nth-child(1) {
    margin-right: 7%;
  }

  /* gallery */
  .section-gallery {
    margin-bottom: 0;
    height: 40vh;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 6rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    top: 17vh;
  }

  .swiper-button-prev {
    left: -4%;
  }

  .swiper-button-next {
    right: 12%;
  }

  /* location */
  .section-con-address {
    font-size: 1.125rem;
  }

  /* promotion */
  .link-banner .container {
    width: 90%;
    padding: 6% 0;
  }

  .link-banner .container:after {
    width: 115px;
    right: -7%;
  }

  .link-banner-txt {
    font-size: 1.8rem;
    margin-bottom: 1%;
  }

  .link-banner-btn a.btn-style2 {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .section-promotion h5 {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .section-promotion p {
    font-size: 0.9rem;
    letter-spacing: -0.1em;
  }

  .section-promotion .box .box-con {
    padding: 4% 12% 6%;
  }

  .section-promotion .box {
    height: 170px;
    width: 100%;
  }

  .section-promotion .btn-style2-black {
    font-size: 0.9rem;
    padding: 0.5rem 2rem;
  }

  .count-box {
    font-size: 1rem;
    line-height: 1.4;
  }

  .countTime {
    display: block;
  }

  /* sponsored */
  .sponsored-con-box {
    width: 33%;
  }

  .sponsored .sponsored-con-box {
    /* width: 50%; */
    width: 33.33%;
  }
  .sponsored-con-box:nth-of-type(1),
  .sponsored-con-box:nth-of-type(2),
  .sponsored-con-box:nth-of-type(3),
  .sponsored-con-box:nth-of-type(4) {
    margin-right: 0;
  }
  /* faq */
  .faq-box {
    border-bottom-width: 1px;
  }

  .faq-box:first-child {
    border-top-width: 1px;
  }

  .faq-box-text .small {
    font-size: 0.9375rem;
    margin-top: 2px;
  }

  .faq-box-text span.full {
    font-size: 0.85rem;
    word-break: keep-all;
  }

  .faq-box:after {
    font-size: 2rem;
  }

  .collapsible-header {
    width: 95%;
  }

  /* footer */
  footer div a {
    margin-right: 3px;
  }

  .foot-copy {
    /* text-align: left; */
    font-size: 0.8rem;
    padding: 5px 0 10px;
    /* max-width: 30%; */
  }

  footer div a {
    position: relative;
  }

  .foot-btn1,
  .foot-btn2 {
    font-size: 0.8rem;
    padding: 5px 7px;
    margin-left: 3px;
    margin-right: 0;
  }

  /* footer */
  .foot {
    flex-direction: column;
  }

  .foot-btn,
  .foot-copy {
    width: 100%;
  }

  footer .btn-link i.material-icons {
    font-size: 1.7rem;
  }

  /* 2020-08-18:: modal */
  .modal.modal-info,
  .modal-overlay {
    width: 80%;
    display: none !important;
  }

  body {
    overflow: scroll !important;
  }
}

@media screen and (max-width: 500px) {
  /* visual */
  .visual-con-box-txt {
    font-size: 2.5rem;
    line-height: 1;
  }

  .visual-con-box-txt.ko,
  .visual-con-box-txt.move.ko {
    font-size: 1.2rem;
    letter-spacing: 0;
  }

  .visual-con-box-txt.move.ko img {
    width: 27px;
  }

  .visual-con-box-txt.ko::before {
    height: 30px;
    top: -35%;
  }

  .fin-btn .btn-style2 {
    padding: 1.2rem 4rem;
    font-size: 1rem;
    letter-spacing: -0.09em;
  }

  /* ticket */
  .ticket-day {
    font-size: 0.9rem;
    margin-right: 0;
    line-height: 1.4;
  }

  .ticket-pay {
    font-size: 0.7rem;
    color: gray;
    width: 45%;
  }

  .ticket-pay strong {
    font-size: 1.35rem;
    color: #111;
  }

  .ticket-box:hover:after,
  .ticket-box:active:after,
  .ticket-box:focus:after {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    line-height: 35px;
    right: 1%;
  }

  .faq-box .faq-box-title:after {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
  }

  /* location */
  .section-con-address {
    font-size: 1rem;
    letter-spacing: -0.05em;
  }

  /* faq */
  .faq-box {
    font-size: 1rem;
  }

  .faq-box:after {
    top: -5px;
  }

  .family-link a {
    font-size: 0.8rem;
  }
  .banner {
    padding: 1rem 0;
  }
  .banner p {
    font-size: 1rem;
  }
  .banner a {
    padding: 0.5rem 0;
    font-size: 1rem;
  }
}

/* ios7/8/8+ */
@media screen and (min-width: 374px) and (max-width: 414px) {
  /* visual */
  .visual-con-box-txt {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
  }
}

/* ios5/se */
@media screen and (max-width: 359px) {
  /* visual */
  .visual-con-box-txt {
    font-size: 2.2rem;
  }

  /* location */
  .section-con-address {
    font-size: 0.875rem;
  }

  /* promotion */
  .link-banner-txt {
    font-size: 2rem;
  }

  .section-promotion .box .box-con {
    padding: 7% 12% 9%;
  }

  .section-promotion h5 {
    font-size: 1rem;
  }

  .section-promotion p {
    font-size: 0.8rem;
  }
}

/* --------------------------
* 
* 2022 개최
*
--------------------------*/

.visual-con-box2 {
  width: 900px;
  height: 510px;
  border: none;
  position: relative;
  overflow-y: hidden !important;
}

#myVideo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* border: 2px solid #999; */
  box-sizing: border-box;
  overflow-y: hidden !important;
}

/* 비주얼 내 영상  media query  */
@media screen and (max-width: 1920px) {
  .visual-con {
    height: 65%;
  }

  .visual-con-box2 {
    width: 700px;
    height: 400px;
  }
}

@media screen and (max-width: 1399px) {
  .visual-con-box2 {
    width: 700px;
    height: 400px;
    max-height: 400px;
  }
}

@media screen and (max-width: 1280px) {
  .visual-con-box2 {
    width: 500px;
    height: 320px;
    max-height: 3200px;
  }
}

@media screen and (max-width: 799px) {
  .visual-con-box2 {
    width: 90%;
    height: 50vw;
    overflow-y: hidden;
    border: none;
  }

  #myVideo {
    overflow-y: hidden;
  }

  .share-group {
    text-align: center;
    padding: 4% 0;
  }

  .share-group a {
    display: inline-block;
  }

  .share-group a:nth-child(1) {
    margin-right: 7%;
  }

  .section-contactus h2:nth-child(3) {
    margin-top: 5%;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) and (orientation: landscape) {
  .visual {
    height: 200vh;
  }

  /* 가로모드로 변경했을때  */
}
