@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/xeicon@2.3.3/xeicon.min.css'); /*아이콘 불러오는 태그*/
@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Pretendard-Regular';
  font-weight: 100 !important;
}

*::before, *::after {
  box-sizing: border-box;
}

body{  
  background: #050505;
  font-family: 'Pretendard-Regular';
}

ul li {
  list-style: none;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #FFC200;
}
a.active {
  color: #FFC200;
}

section{
  overflow: hidden;
}

.main-logo img{
  width: 100%;
  height: auto;
}

/*메뉴버튼*/

input[type="checkbox"]{
  display: none;
}

#active:checked ~ .wrapper{
  /*left: 0;*/
  right:0;
}

.menu-btn span,
.menu-btn:before,
.menu-btn:after{
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid #000;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-color: #ffc200;
}
.menu-btn:before{
  transform: translateY(-8px);
}
.menu-btn:after{
  transform: translateY(8px);
}

.close {
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background .6s;
}


/* closing animation */
#active:checked + .menu-btn span {
	transform: scaleX(0);
  
}
#active:checked + .menu-btn:before {
	transform: rotate(45deg);
  border-color: #ffc200;
}
#active:checked + .menu-btn:after {
	transform: rotate(-45deg);
  border-color: #ffc200;
}

.wrapper ul{
  position: absolute;
  top: 60%;
  left: 50%;
  height: 90%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.wrapper ul li{
  height: 10%;
  margin: 15px 0;
}
.wrapper ul li a{
  text-decoration: none;
  font-size: 30px;
  padding: 5px 30px;
  color: #fff;
  border-radius: 50px;
  position: absolute;
  line-height: 50px;
  margin: 5px 30px;
  opacity: 0;
  transition: all 0.3s ease;
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wrapper ul li a:after{
  position: absolute;
  content: "";
  /*background: #fff;*/
  /*background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);*/
  /*background: linear-gradient(375deg, #1cc7d0, #2ede98);*/
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50px;
  transform: scaleY(0);
  z-index: -1;
  transition: transform 0.3s ease;
}
.wrapper ul li a:hover:after{
  transform: scaleY(1);
}
.wrapper ul li a:hover{
  color: #FFC200;
  text-shadow: 2px 2px 12px #ffec5d;
}

#active:checked ~ .wrapper ul li a{
  opacity: 1;
}
.wrapper ul li a{
  transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateX(100px);
}
#active:checked ~ .wrapper ul li a{
	transform: none;
	transition-timing-function: ease, cubic-bezier(.1,1.3,.3,1); /* easeOutBackを緩めた感じ */
  transition-delay: .6s;
  transform: translateX(-100px);
}

/*메뉴버튼*/

.logo{
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(20%,-50%);
  display: inline-block;
}

.logo video{
  width: 100%;
}

/*section1*/

#section1{
  width: 100%;
}



/*section1*/



@keyframes logofilter{
  0%{filter: grayscale(1);}
  100%{filter: grayscale(0);}
}


.footer-logo img{
  width: 100%;
  height: auto;
}

.f-list a{
  color: #fffbee;
  text-decoration: none;
}

footer span{
  color: #FFC200;
}

.s-size{
  font-size: 8px;
}

.h-logo{
  width: 100%;
  margin: 30px auto;
  display: block;
  position: relative;
  padding-top: 50px;
  font-size: 12px;
}

.icons{
  position: fixed;
  bottom: 50px;
  right: 50px;
}

.icons li{
  width: 50px;
  height: 50px;
  animation: i-cons 1s infinite ease-in-out;
}

.icons img{
  width: 100%;
}

@keyframes i-cons{
  0%{opacity: 1;}
  50%{opacity: 0.3;}
  100%{opacity: 1;}
}

.swiper-button-next{
  --swiper-theme-color : #999999;
  
}

.swiper-button-prev{
  --swiper-theme-color : #999999;
}

.swiper-pagination-bullet{
  background: var(--swiper-pagination-bullet-inactive-color,#fff) !important;
}

/*=====================================================================================*/

@media all and (min-width:2000px){

  .inner{
    width: calc(100% - 25%);
    margin: 0 auto;
  }

  header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    z-index: 99;
  }

  .menu-btn h4{
    width: 110px;
    transform: translateX(-100%);
  }

  .main-logo{
    position: absolute;
    /*right: 20px;*/
    left: 100px; 
    top: 50px;
    width: 100px;
  }
  
  .menu-btn{
    position: absolute;
    z-index: 2;
    right: 100px;
    /*left: 20px; */
    top: 50px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #ffc200;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
   /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
    transition: all 0.3s ease-in-out;
  }

  .wrapper{
    position: fixed;
    top: 0;
    /*left: -100%;*/
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
    /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
    transition: all 0.6s ease-in-out;
    z-index: 1;
  }
  

  .content01{
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    */
    text-align: center;
    width: 100%;
    color: #fff;
    height: 100vh;
  }

  .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0px auto;
    position: relative;
    margin-top: 0px;
  }

  video {
    min-width: 100%;
    min-height: 100%;
  }

  .text {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-80%,50%);
    display: inline-block;
  }

  .text p {
    text-align: left;
    font-size: 70px;
    color: #ffffff;
    font-style: normal;
    line-height: 100px;
  }
  
  .text p span{
    font-size: 100px;
  }

  .mini_title {
    margin-left: 20%;
    display: inline-block;
    position: relative;
    margin-bottom: 100px;
    margin-top: 200px;
  }

  .mini_title p {
    text-align: left;
    font-size: 70px;
    color: #ffffff;
    font-style: normal;
    line-height: 100px;

  }
  
  .mini_title p span{
    font-size: 100px;
  }
  
  .small-main-text{
    font-size: 22px;
    margin-left: 80px;
    line-height: 26px;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
  }

  #section1{
    margin-top: 200px;
  }

  .pat{
    position: absolute;
    top: -50%; left: -20%;
  }

  .potozon{
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;

  }
  
  .potozon li{
    width: 100%;
    height: 300px;
    background: #050505;
    margin-bottom: 40px;
  }
  
  #pic>div{
    display: inline-block;
  }

  #pic2>div{
    display: inline-block;
  }

  #pic p{

    font-size: 50px;
    line-height: 50px;
    text-align: left;
    font-weight: 600;
  }

  #pic2 p{
    font-size: 50px;
    line-height: 50px;
    text-align: left;
    font-weight: 600;
  }

  .view{
    padding-left: 120px;
  }

  .ans{
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: bold;
    text-align: left;
    margin-left: 140px;
  }
  
  .ans1{
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: bold;
    text-align: left;
    padding-left: 160px;
    position: relative;
    left: 80px;
    position: relative;
    top: 20px;
  }


  
  .potozon li p:nth-child(1){
    padding-top: 100px;
  }

  .potozon li:hover{
    animation: lar 1s forwards;
  }

  .potozon li:nth-child(2){
    background-image: url(../img/main/01.jpg);
    background-position: 0% 80%;
  }
  
  .potozon li:nth-child(3){
    background-image: url(../img/main/02.jpg);
    background-position: 0% 30%;
  }
  

  .bg-img{
    width: 693px;
    height: 500px;
    background-image: url(../img/01.png);
    background-size: cover;
    position: absolute;
    top: -300px; right: 0%;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img1{
    width: 693px;
    height: 500px;
    background-image: url(../img/02.png);
    background-size: cover;
    position: absolute;
    bottom: -200px; left: 0%;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img2{
    width: 500px;
    height: 693px;
    background-image: url(../img/03.png);
    background-size: cover;
    position: absolute;
    bottom: -200px; right: 0%;
    transform: rotate(0deg);
  }
  .bg-img3{
    width: 200px;
    height: 200px;
    background-image: url(../img/04.png);
    background-size: cover;
    position: absolute;
    top: -100px; left: -100px;
    transform: rotate(0deg);
  }
  .bg-img4{
    width: 200px;
    height: 200px;
    background-image: url(../img/05.png);
    background-size: cover;
    position: absolute;
    bottom: 0px; right: -100px;
    transform: rotate(0deg);
  }
  .bg-img5{
    width: 1209px;
    height: 1420px;
    background-image: url(../img/06.png);
    background-size: cover;
    position: absolute;
    top: -500px; right: -300px;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img6{
    width: 1033px;
    height: 1057px;
    background-image: url(../img/07.png);
    background-size: cover;
    position: absolute;
    bottom: -300px; left: -400px;
    transform: rotate(0deg);
  }
  .bg-img7{
    width: 1033px;
    height: 1057px;
    background-image: url(../img/08.png);
    background-size: cover;
    position: absolute;
    top: -200px; left: -600px;
    transform: rotate(0deg);
  }
  .bg-img8{
    width: 1033px;
    height: 1057px;
    background-image: url(../img/09.png);
    background-size: cover;
    position: absolute;
    top: -100px; right: -900px;
    transform: rotate(0deg);
  }
  .bg-img9{
    width: 338px;
    height: 470px;
    background-image: url(../img/10.png);
    background-size: cover;
    position: absolute;
    top: -300px; left: -200px;
    transform: rotate(0deg);
  }
  .bg-img10{
    width: 870px;
    height: 758px;
    background-image: url(../img/11.png);
    background-size: cover;
    position: absolute;
    top: -450px; right:  0;
    transform: rotate(0deg);
  }

  #section2{
    margin-top: 300px;
    width: 100%;
    height: 100vh;
    z-index: 1;
    position: relative;
  }

  #section2 .mini_title{
    width: 377px;
    margin: 0 auto;
    text-align: center;
    display: block;
    padding-left: 100px;
    margin-top: 100px;
  }

  #section2 .pat{
    padding-left: 100px;
  }

  .profile{
    width: 1440px;
    height: 500px;
    text-align: center;
    margin: 0 auto;
    margin-top: 100px;
    position: relative;
    z-index: 0;
  }


  .over-name{
    position: absolute;
    top: 60%;
    left: 20%;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fffbee;

    padding: 20px;
    border-radius: 10px;
    display: none;
  }

  .m-pro{
    display: none;
  }

  .imgList {
    width: 100%;
    display: inline-block;
    justify-content: space-around;
    align-items: center;
  }

  .imgC p {
    text-align: center;
  }

  .imgC{
    width: 14%;
    display: inline-block;
    margin-bottom: 20px;
  }
  
  #img2{
    display: none;
  }
  
  .modal {
    display: none;
    z-index: 999 !important;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -100px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .modal button {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 3rem;
  }
  
  .modalBox {
    position: relative;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    background-color: #ffffff;
    width: 30%;
    height: 30%;
    text-align: center;
  }
  
  .modalBox img {
    width: 100%;
  }
  
  .modalBox p {
    color: #FFC200;
    font-size: 3rem;
    padding: .2rem;
    text-align: left;
    position: absolute;
    top: 30%;
    right: -10%;
    border: 5px solid #FFC200;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.7);
  }

  #section3{
    width: 100%;
    height: 110vh;
  }

  #section3 img{
    width: 100%;
  }

  #section3 .small-main-text{
    padding-left: 50px;
  }

  #section3>.inner{
    position: relative;
  }

  .gallery li{
    display: inline-block;
    width: 30%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .gallery li:nth-child(3n){
    margin-right: 0;
  }

  #section4{
    width: 100%;
  }

  .s-desgine{
    color: #fffbee;

    display: block;
    text-align: right;
    margin-bottom: 120px ;
    position: relative;
  }

  .concert{
    width: 100%;
    text-align: center;
    margin-bottom: 200px;
  }

  .concert li{
    display: inline-block;
    margin-bottom: 50px;
    margin-right: 50px;
    width: 600px;
    height: 450px;
  }

  .concert video{
    width: 100%;
  }

  .concert li:nth-child(3n){
    margin-right: 0;
  }

   .potozon li:nth-child(4){
    background-image: url(../img/main/04.jpg);
    background-position: center
  }

  footer{
    width: 100%;
    color: #fff;

    text-align: center;
    margin-top: 200px;
  }
  
  .footer-logo img{
    width: 100%;
    height: auto;
  }
  
  .f-list{
    display: block;
    margin-bottom: 40px;
  }
  
  .f-list li{
    display: inline-block;
    color: #FFC200;
  }
  
  
  .footer-logo{
    width: 400px;
    display: inline-block;
    margin-bottom: 40px;
  }
  
  .f-list li{
    margin-right: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
  }
  
  
  .f-info{
    color: #fff;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 18px;
    margin: 0 auto;
  }
  
  .f-info li{
    display: inline-block;
    width: 15%;
  }
  
  .adress{
    font-size: 18px;
    color: #fff;
    width: 100%;
    margin: 0 auto;
    display: inline-block;
    margin-bottom: 30px;
  }
 
  
  .s-size{
    font-size: 18px ;
  }

  .h-logo{
    width: 100%;
    margin: 30px auto;
    display: block;
    position: relative;
    padding-top: 50px;
    font-size: 18px;
  }

  .m-footer{
    display: none;
  }

} 

/*========================================================================================*/

/*=====================================================================================*/

@media all and (min-width:1441px) and (max-width:1999px) {

  .inner{
    width: calc(100% - 25%);
    margin: 0 auto;
  }

  header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    z-index: 99;
  }

  .menu-btn h4{
    width: 110px;
    transform: translateX(-100%);
  }

  .main-logo{
    position: absolute;
    /*right: 20px;*/
    left: 100px; 
    top: 50px;
    width: 100px;
  }
  
  .menu-btn{
    position: absolute;
    z-index: 2;
    right: 100px;
    /*left: 20px; */
    top: 50px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #ffc200;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
   /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
    transition: all 0.3s ease-in-out;
  }

  .wrapper{
    position: fixed;
    top: 0;
    /*left: -100%;*/
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
    /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
    transition: all 0.6s ease-in-out;
    z-index: 1;
  }
  

  .content01{
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    */
    text-align: center;
    width: 100%;
    color: #fff;
    height: 100vh;
  }

  .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0px auto;
    position: relative;
    margin-top: 0px;
  }

  video {
    min-width: 100%;
    min-height: 100%;
  }

  .text {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-80%,50%);
    display: inline-block;
  }

  .text p {
    text-align: left;
    font-size: 70px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 100px;
  }
  
  .text p span{
    font-size: 100px;
  }

  .mini_title {
    margin-left: 20%;
    display: inline-block;
    position: relative;
    margin-bottom: 100px;
    margin-top: 200px;
  }

  .mini_title p {
    text-align: left;
    font-size: 70px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 100px;

  }
  
  .mini_title p span{
    font-size: 100px;
  }
  
  .small-main-text{
    font-size: 22px;
    margin-left: 80px;
    font-weight: 400;
    line-height: 26px;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
  }

  .pat{
    position: absolute;
    top: -50%; left: -20%;
  }

  .potozon{
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;

  }
  
  .potozon li{
    width: 100%;
    height: 300px;
    background: #050505;
    margin-bottom: 40px;
  }
  
  #pic>div{
    display: inline-block;
  }

  #pic2>div{
    display: inline-block;
  }

  #pic p{

    font-size: 50px;
    line-height: 50px;
    text-align: left;
    font-weight: 600;
  }

  #pic2 p{

    font-size: 50px;
    line-height: 50px;
    text-align: left;
    font-weight: 600;
  }

  .view{
    padding-left: 120px;
  }


  .ans{
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: bold;
    text-align: left;
    margin-left: 140px;
  }

  .ans1{
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: bold;
    text-align: left;
    padding-left: 160px;
    position: relative;
    left: 80px;
    position: relative;
    top: 20px;
  }

  .potozon li p:nth-child(1){
    padding-top: 100px;
  }

  .potozon li:hover{
    animation: lar 1s forwards;
  }

  .potozon li:nth-child(1){
    background-image: url(../img/main/01.jpg);
    background-position: 0% 80%;
  }
  
  .potozon li:nth-child(2){
    background-image: url(../img/main/02.jpg);
    background-position: 0% 30%;
  }

  .potozon li:nth-child(3){
    background-image: url(../img/main/03.jpg);
    background-position: 0% 30%;
  }
  

  .bg-img{
    width: 693px;
    height: 500px;
    background-image: url(../img/01.png);
    background-size: cover;
    position: absolute;
    top: -300px; right: 0%;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img1{
    width: 693px;
    height: 500px;
    background-image: url(../img/02.png);
    background-size: cover;
    position: absolute;
    bottom: -200px; left: 0%;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img2{
    width: 500px;
    height: 693px;
    background-image: url(../img/03.png);
    background-size: cover;
    position: absolute;
    bottom: -200px; right: 0%;
    transform: rotate(0deg);
  }
  .bg-img3{
    width: 200px;
    height: 200px;
    background-image: url(../img/04.png);
    background-size: cover;
    position: absolute;
    top: -100px; left: -100px;
    transform: rotate(0deg);
  }
  .bg-img4{
    width: 200px;
    height: 200px;
    background-image: url(../img/05.png);
    background-size: cover;
    position: absolute;
    bottom: 0px; right: -100px;
    transform: rotate(0deg);
  }
  .bg-img5{
    width: 1209px;
    height: 1420px;
    background-image: url(../img/06.png);
    background-size: cover;
    position: absolute;
    top: -500px; right: -300px;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img6{
    width: 1033px;
    height: 1057px;
    background-image: url(../img/07.png);
    background-size: cover;
    position: absolute;
    bottom: -300px; left: -400px;
    transform: rotate(0deg);
  }
  .bg-img7{
    width: 1033px;
    height: 1057px;
    background-image: url(../img/08.png);
    background-size: cover;
    position: absolute;
    top: -200px; left: -600px;
    transform: rotate(0deg);
  }
  .bg-img8{
    width: 1033px;
    height: 1057px;
    background-image: url(../img/09.png);
    background-size: cover;
    position: absolute;
    top: -100px; right: -900px;
    transform: rotate(0deg);
  }
  .bg-img9{
    width: 338px;
    height: 470px;
    background-image: url(../img/10.png);
    background-size: cover;
    position: absolute;
    top: -300px; left: -200px;
    transform: rotate(0deg);
  }
  .bg-img10{
    width: 870px;
    height: 758px;
    background-image: url(../img/11.png);
    background-size: cover;
    position: absolute;
    top: -450px; right:  0;
    transform: rotate(0deg);
  }

  #section2{
    margin-top: 300px;
    width: 100%;
    height: 100vh;
    z-index: 1;
    position: relative;
  }

  #section2 .mini_title{
    width: 377px;
    margin: 0 auto;
    text-align: center;
    display: block;
    padding-left: 100px;
    margin-top: 100px;
  }

  #section2 .pat{
    padding-left: 100px;
  }

  .profile{
    width: 1440px;
    height: 500px;
    text-align: center;
    margin: 0 auto;
    margin-top: 100px;
    position: relative;
    z-index: 0;
  }


  .over-name{
    position: absolute;
    top: 60%;
    left: 20%;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fffbee;

    padding: 20px;
    border-radius: 10px;
    display: none;
  }

  .m-pro{
    display: none;
  }

  .imgList {
    width: 100%;
    display: inline-block;
    justify-content: space-around;
    align-items: center;
  }

  .imgC p {
    text-align: center;
  }

  .imgC{
    width: 14%;
    display: inline-block;
    margin-bottom: 20px;
  }
  
  #img2{
    display: none;
  }
  
  .modal {
    display: none;
    position: relative;
    z-index: 999 !important;
    width: 100%;
    height: 120vh;
    position: fixed;
    top: -100px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal button {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 3rem;
  }
  
  .modalBox {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    background-color: #ffffff;
    width: 30%;
    height: 30%;
    text-align: center;
  }
  
  .modalBox img {
    width: 100%;
    z-index: 999;
  }
  
  .modalBox p {
    color: #FFC200;
    font-size: 3rem;
    padding: 1rem 2rem;
    text-align: left;
    position: absolute;
    top: 30%;
    right: -10%;
    border: 5px solid #FFC200;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.7);
  }

  #section3{
    width: 100%;
    height: 110vh;
  }

  #section3 img{
    width: 100%;
  }

  #section3 .small-main-text{
    padding-left: 50px;
  }

  #section3>.inner{
    position: relative;
  }

  .gallery li{
    display: inline-block;
    width: 30%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .gallery li:nth-child(3n){
    margin-right: 0;
  }

  #section4{
    width: 100%;
    margin-top: 200px;
  }

  .s-desgine{
    color: #fffbee;
    font-size: 20px;
    display: block;
    text-align: right;
    margin-bottom: 120px ;
    position: relative;
  }

  .concert{
    width: 100%;
    text-align: center;
    margin-bottom: 200px;
  }

  .concert li{
    display: inline-block;
    margin-bottom: 50px;
    margin-right: 50px;
    width: 430px;
    height: 323px;
  }

  .concert video{
    width: 100%;
  }

  .concert li:nth-child(3n){
    margin-right: 0;
  }

  footer{
    width: 100%;
    color: #fff;

    text-align: center;
    margin-top: 200px;
  }
  
  .footer-logo img{
    width: 100%;
    height: auto;
  }
  
  .f-list{
    display: block;
    margin-bottom: 40px;
  }
  
  .f-list li{
    display: inline-block;
    color: #FFC200;
  }
  
  
  .footer-logo{
    width: 400px;
    display: inline-block;
    margin-bottom: 40px;
  }
  
  .f-list li{
    margin-right: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 14px;
  }
  
  
  .f-info{
    color: #fff;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 18px;
    margin: 0 auto;
  }
  
  .f-info li{
    display: inline-block;
    width: 20%;
  }
  
  .adress{
    font-size: 18px;
    color: #fff;
    width: 100%;
    margin: 0 auto;
    display: inline-block;
    margin-bottom: 30px;
  }
  .potozon li:nth-child(4){
    background-image: url(../img/main/04.jpg);
    background-position: center
  }
  
  .s-size{
    font-size: 18px ;
  }

  .h-logo{
    width: 100%;
    margin: 20px auto;
    display: block;
    position: relative;
    padding-top: 50px;
    font-size: 18px;
  }

  .m-footer{
    display: none;
  }

} 

/*========================================================================================*/



/*=====================================================================================*/

@media all and (min-width:1024px) and (max-width:1440px){

  .inner{
    width: calc(100% - 25%);
    margin: 0 auto;
  }

  header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    z-index: 99;
  }

  .menu-btn h4{
    width: 110px;
    transform: translateX(-100%);
  }

  .main-logo{
    position: absolute;
    /*right: 20px;*/
    left: 100px; 
    top: 50px;
    width: 100px;
  }
  
  .menu-btn{
    position: absolute;
    z-index: 2;
    right: 100px;
    /*left: 20px; */
    top: 50px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #ffc200;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
   /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
    transition: all 0.3s ease-in-out;
  }

  .wrapper{
    position: fixed;
    top: 0;
    /*left: -100%;*/
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
    /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
    transition: all 0.6s ease-in-out;
    z-index: 1;
  }
  

  .content01{
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    */
    text-align: center;
    width: 100%;
    color: #fff;
    height: 100vh;
  }

  .bg {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0px auto;
    position: relative;
    margin-top: 0px;
  }

  video {
    width: 100%;
    height: 100%;
  }

  .text {
    position: absolute;
    width: 50%;
    top: 45%;
    left: 50%;
    transform: translate(-80%,50%);
    display: inline-block;
  }

  .text p {
    text-align: left;
    font-size: 40px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
  }
  
  .text p span{
    font-size: 70px;
  }

  .mini_title {
    margin-left: 20%;
    display: inline-block;
    position: relative;
    margin-bottom: 100px;
    margin-top: 300px;
  }

  .mini_title p {
    text-align: left;
    font-size: 50px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;

  }
  
  .mini_title p span{
    font-size: 100px;
  }
  
  .small-main-text{
    font-size: 18px;
    margin-left: 80px;
    font-weight: 400;
    line-height: 26px;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
  }

  .pat{
    position: absolute;
    top: -100%; left: -20%;
  }

  .potozon{
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;

  }
  
  .potozon li{
    width: 100%;
    height: 300px;
    background: #050505;
    margin-bottom: 40px;
  }
  
  #pic>div{
    display: inline-block;
  }

  #pic2>div{
    display: inline-block;
  }

  #pic p{

    font-size: 40px;
    line-height: 40px;
    text-align: left;
    font-weight: 600;
  }

  #pic2 p{

    font-size: 40px;
    line-height: 40px;
    text-align: left;
    font-weight: 600;
  }

  .view{
    padding-left: 120px;
  }


  .ans{
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: bold;
    text-align: left;
    margin-left: 140px;
  }

  .ans1{
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: bold;
    text-align: left;
    padding-left: 160px;
    position: relative;
    left: 50px;
  }
  
  .potozon li p:nth-child(1){
    padding-top: 100px;
  }

  .potozon li:hover{
    animation: lar 1s forwards;
  }

  .potozon li:nth-child(1){
    background-image: url(../img/main/01.jpg);
    background-position: 0% 80%;
  }
  
  .potozon li:nth-child(2){
    background-image: url(../img/main/02.jpg);
    background-position: 0% 30%;
  }

  .potozon li:nth-child(3){
    background-image: url(../img/main/03.jpg);
    background-position: 50% 40%;
  }
  

  .bg-img{
    width: 693px;
    height: 500px;
    background-image: url(../img/01.png);
    background-size: cover;
    position: absolute;
    top: -300px; right: 0%;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img1{
    width: 693px;
    height: 500px;
    background-image: url(../img/02.png);
    background-size: cover;
    position: absolute;
    bottom: -200px; left: 0%;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img2{
    width: 500px;
    height: 693px;
    background-image: url(../img/03.png);
    background-size: cover;
    position: absolute;
    bottom: -200px; right: 0%;
    transform: rotate(0deg);
  }
  .bg-img3{
    width: 200px;
    height: 200px;
    background-image: url(../img/04.png);
    background-size: cover;
    position: absolute;
    top: -100px; left: -30px;
    transform: rotate(0deg);
  }
  .bg-img4{
    width: 200px;
    height: 200px;
    background-image: url(../img/05.png);
    background-size: cover;
    position: absolute;
    bottom: 100px; right: -30px;
    transform: rotate(0deg);
  }
  .bg-img5{
    width: 1209px;
    height: 1420px;
    background-image: url(../img/06.png);
    background-size: cover;
    position: absolute;
    top: -500px; right: -300px;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img6{
    width: 1033px;
    height: 1057px;
    background-image: url(../img/07.png);
    background-size: cover;
    position: absolute;
    bottom: -300px; left: -400px;
    transform: rotate(0deg);
  }
  .bg-img7{
    width: 1033px;
    height: 1057px;
    background-image: url(../img/08.png);
    background-size: cover;
    position: absolute;
    top: -200px; left: -600px;
    transform: rotate(0deg);
  }
  .bg-img8{
    width: 1033px;
    height: 1057px;
    background-image: url(../img/09.png);
    background-size: cover;
    position: absolute;
    top: -100px; right: -900px;
    transform: rotate(0deg);
  }
  .bg-img9{
    width: 338px;
    height: 470px;
    background-image: url(../img/10.png);
    background-size: cover;
    position: absolute;
    top: -300px; left: -200px;
    transform: rotate(0deg);
  }
  .bg-img10{
    width: 870px;
    height: 758px;
    background-image: url(../img/11.png);
    background-size: cover;
    position: absolute;
    top: -450px; right:  0;
    transform: rotate(0deg);
  }

  #section2{
    margin-top: 200px;
    width: 100%;
    height: 100vh;
    z-index: 1;
    position: relative;
  }

  #section2 .mini_title{
    width: 377px;
    margin: 0 auto;
    text-align: center;
    display: block;
    padding-left: 100px;
    margin-top: 100px;
  }

  #section2 .pat{
    padding-left: 100px;
  }

  .profile{
    width: 1024px;
    height: 700px;
    text-align: center;
    margin: 0 auto;
    margin-top: 100px;
    position: relative;
    z-index: 0;
  }


  .over-name{
    position: absolute;
    top: 60%;
    left: 20%;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fffbee;
    padding: 20px;
    border-radius: 10px;
    display: none;
  }

  .m-pro{
    display: none;
  }

  .imgList {
    width: 100%;
    display: inline-block;
    justify-content: space-around;
    align-items: center;
  }

  .imgC p {
    text-align: center;
  }

  .imgC{
    width: 17%;
    display: inline-block;
    margin-bottom: 20px;
  }
  
  #img2{
    display: none;
  }
  
  .modal {
    display: none;
    z-index: 500;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -100px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .modal button {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 3rem;
  }
  
  .modalBox {
    position: relative;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    background-color: #ffffff;
    width: 30%;
    height: 30%;
    text-align: center;
  }
  
  .modalBox img {
    width: 100%;
  }
  
  .modalBox p {
    color: #FFC200;
    font-size: 3rem;
    padding: .2rem;
    text-align: left;
    position: absolute;
    top: 30%;
    right: -10%;
    border: 5px solid #FFC200;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.7);
  }

  #section3{
    width: 100%;
    height: 110vh;
  }

  #section3 .small-main-text{
    padding-left: 50px;
  }

  #section3>.inner{
    height: 1100px;
    position: relative;
  }

  #section3 .mini_title{
    position: relative;
    left: -15%;
  }

  #section3 img{
    width: 100%;
  }

  .gallery li{
    display: inline-block;
    width: 30%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .gallery li:nth-child(3n){
    margin-right: 0;
  }



  #section4{
    width: 100%;
  }

  .s-desgine{
    color: #fffbee;
    display: block;
    text-align: right;
    margin-bottom: 120px ;
    position: relative;
    font-size: 18px;
  }

  .concert{
    width: 100%;
    text-align: center;
  }

  .concert li{
    display: inline-block;
    margin-bottom: 50px;
    margin-right: 50px;
    width: 25%;
  }

  .concert video{
    width: 100%;
  }

  .concert li:nth-child(3n){
    margin-right: 0;
  }

  footer{
    width: 100%;
    color: #fff;
    text-align: center;
    margin-top: 200px;
  }
  
  .footer-logo img{
    width: 100%;
    height: auto;
  }
  
  .f-list{
    display: block;
    margin-bottom: 40px;
  }
  
  .f-list li{
    display: inline-block;
    color: #FFC200;
  }
  
  
  .footer-logo{
    width: 400px;
    display: inline-block;
    margin-bottom: 40px;
  }
  
  .f-list li{
    margin-right: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
  }
  
  
  .f-info{
    color: #fff;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 14px;
    margin: 0 auto;
  }
  
  .f-info li{
    float: left;
    width: 25%;
  }

  .s-size{
    font-size: 14px;
  }
  

  .adress{
    font-size: 14px;
    color: #fff;
    width: 100%;
    margin: 0 auto;
    display: inline-block;
    margin-bottom: 30px;
  }
  .potozon li:nth-child(4){
    background-image: url(../img/main/04.jpg);
    background-position: center
  }

  .h-logo{
    padding-top: 0;
  }
  
  .m-footer{
    display: none;
  }

} 


/*=====================================================================================*/

@media all and (min-width:626px) and (max-width:1023px){

  .inner{
    width: calc(100% - 20%);
    margin: 0 auto;
  }

  header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    z-index: 99;
  }
  
  .main-logo{
    position: absolute;
    /*right: 20px;*/
    left: 50px; 
    top: 50px;
    width: 75px;
  }

  .menu-btn h4{
    width: 110px;
    transform: translateX(-100%);
    color: #FFC200;

  }
  
  .menu-btn{
    position: absolute;
    z-index: 2;
    right: 50px;
    /*left: 20px; */
    top: 40px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
   /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
    transition: all 0.3s ease-in-out;
  }

  .wrapper{
    position: fixed;
    top: 0;
    /*left: -100%;*/
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
    /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
    transition: all 0.6s ease-in-out;
    z-index: 1;
  }

  .content01{
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    */
    text-align: center;
    width: 100%;
    color: #fff;
    height: 100%;
    padding-top: 100px;
  }

  .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0px auto;
    position: relative;
    margin-top: 0px;
  }

  video {
    width: 100%;
    height: 100%;
  }

  .text {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-80%,50%);
    display: inline-block;
  }

  .text p {
    text-align: left;
    font-size: 32px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
  }
  
  .text p span{
    font-size: 52px;
  }

  .mini_title {
    width: 400px;
    margin: 100px auto 30px;
    text-align: center;
    position: relative;
  }

  .mini_title p {
    text-align: center;
    font-size: 42px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;

  }
  
  .mini_title p span{
    font-size: 62px;
  }
  
  .small-main-text{
    font-size: 10px;
    margin-left: 40px;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
  }

  .mini_title>.small-main-text{
    font-size: 14px;
    margin-left: 0px;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
  }

  .pat{
    position: absolute;
    top: -100%; left: 25%;
    width: 77px;
  }

  .pat img{
    width: 100%;
    transform: rotate(15deg);
  }

  .potozon{
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;

  }
  
  .potozon li{
    width: 100%;
    height: 150px;
    background: #050505;
    margin-bottom: 40px;
  }

  #pic2{
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
  }
  
  #pic>div{
    display: block;
  }

  #pic2>div{
    display: block;
  }

  #pic p{

    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
  }

  #pic2 p{

    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    display: inline-block;

  }

  .ans{
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: normal;
    text-align: center;
    margin-left: 10px;
    margin-top: 20px;
  }

  .ans1{
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: normal;
    text-align: center;
    padding-left: 10px;
    margin-top: 20px;
  }

  .potozon li p:nth-child(1){
    padding-top: 25px;
  }

  .potozon li:hover{
    animation: sm 1s forwards;
  }

  .potozon li:nth-child(1){
    background-image: url(../img/main/01.jpg);
    background-position: 50% 60%;
  }
  
  .potozon li:nth-child(2){
    background-image: url(../img/main/02.jpg);
    background-position: 50% 40%;
  }

  .potozon li:nth-child(3){
    background-image: url(../img/main/04.jpg);
    background-position: 30% 40%;
  }

  .bg-img{
    width: 140px;
    height: 100px;
    background-image: url(../img/01.png);
    background-size: cover;
    position: absolute;
    top: -200px; right: calc(50% - 250px);
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img1{
    width: 140px;
    height: 101px;
    background-image: url(../img/02.png);
    background-size: cover;
    position: absolute;
    bottom: -50px; left: calc(50% - 180px);
    transform: rotate(0deg);

  }
  .bg-img2{
    width: 124px;
    height: 172px;
    background-image: url(../img/03.png);
    background-size: cover;
    position: absolute;
    top: -70px; left: calc(50% - 200px);
    transform: rotate(-20deg);
  }
  .bg-img3{
    width: 200px;
    height: 200px;
    background-image: url(../img/04.png);
    background-size: cover;
    position: absolute;
    top: -0; left: -0;
    transform: rotate(0deg);
  }
  .bg-img4{
    width: 200px;
    height: 200px;
    background-image: url(../img/05.png);
    background-size: cover;
    position: absolute;
    bottom: 0px; right: -0;
    transform: rotate(0deg);
  }
  .bg-img5{
    width: 200px;
    height: 235px;
    background-image: url(../img/06.png);
    background-size: cover;
    position: absolute;
    top: -150px; right: calc(50% - 250px);
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img6{
    width: 253px;
    height: 264px;
    background-image: url(../img/07.png);
    background-size: cover;
    position: absolute;
    bottom: -0; left: -0px;
    transform: rotate(0deg);
  }
  .bg-img7{
    width: 253px;
    height: 253px;
    background-image: url(../img/08.png);
    background-size: cover;
    position: absolute;
    top: -50px; left: calc(50% - 150px) ;
    transform: rotate(0deg);
  }
  .bg-img8{
    width: 258px;
    height: 264px;
    background-image: url(../img/09.png);
    background-size: cover;
    position: absolute;
    bottom: -450px; right: -50px;
    transform: rotate(15deg);
  }
  .bg-img9{
    width: 338px;
    height: 470px;
    background-image: url(../img/10.png);
    background-size: cover;
    position: absolute;
    top: -50px; left: calc(50% - 170px);
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img10{
    display: none;
  }

  #section2{
    width: 100%;
    height: 100%;
  }

  #section2 .mini_title{
    text-align: center;
  }

  #section2 .pat{
    padding-right: 10px;
  }

  #section3{
    width: 100%;
    height: 100%;
    margin-top: 100px;
  }

  #section3 .small-main-text{
    padding-left: 50px;
  }

  #section3>.inner{
    position: relative;
  }

  #section3 img{
    width: 100%;
  }

  .gallery{
    text-align: center;
  }

  .gallery li{
    display: inline-block;
    width: 40%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .gallery li:nth-child(2n){
    margin-right: 0;
  }

  #section4{
    width: 100%;
    margin-top: 50px;
  }

  .s-desgine{
    color: #fffbee;
    display: block;
    text-align: center;
    margin-bottom: 50px ;
    position: relative;
  }

  .concert{
    width: 100%;
    text-align: center;
  }

  .concert li{
    display: inline-block;
    margin-bottom: 20px;
    margin-right: 4%;
    width: 42%;
  }

  .concert li:nth-child(2n){
    margin-right: 0;
  }

  .concert li img{
    width: 100%;
  }

  footer{
    width: 100%;
    color: #fff;
    margin-top: 100px;
  }

  footer img{
    width: 100%;
  }

  .pc-footer{
    display: none;
  }

  .m-f-logo{
    width: 100px;
    height: 38px;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .m-list{
    font-size: 10px;
    text-align: center;
    color: #ffec5d;
  }

  .m-list li{
    display: inline-block;
    margin-right: 10px;
  }

  .m-list li:last-child{
    margin-right: 0;
  }

  .m-info{
    font-size: 10px;
    margin-top: 30px;
    text-align: center;
    padding:0 80px
  }

  .m-info li{
    display: inline-block;
    width: 45%;
  }

  .m-last{
    margin-top: 20px;
    text-align: center;
    margin-bottom: 50px;
  }


} 


/*=====================================================================================*/

@media all and (min-width:586px) and (max-width:625px){

  .inner{
    width: calc(100% - 20%);
    margin: 0 auto;
  }

  header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    z-index: 99;
  }
  
  .main-logo{
    position: absolute;
    /*right: 20px;*/
    left: 50px; 
    top: 50px;
    width: 75px;
  }

  .menu-btn h4{
    width: 110px;
    transform: translateX(-100%);
    color: #FFC200;

  }
  
  .menu-btn{
    position: absolute;
    z-index: 2;
    right: 50px;
    /*left: 20px; */
    top: 40px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
   /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
    transition: all 0.3s ease-in-out;
  }

  .wrapper{
    position: fixed;
    top: 0;
    /*left: -100%;*/
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
    /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
    transition: all 0.6s ease-in-out;
    z-index: 1;
  }

  .content01{
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    */
    text-align: center;
    width: 100%;
    color: #fff;
    height: 100%;
    padding-top: 100px;
  }

  .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0px auto;
    position: relative;
    margin-top: 0px;
  }

  video {
    width: 100%;
    height: 100%;
  }

  .text {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-80%,50%);
    display: inline-block;
  }

  .text p {
    text-align: left;
    font-size: 32px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
  }
  
  .text p span{
    font-size: 52px;
  }

  .mini_title {
    width: 400px;
    margin: 100px auto 20px;
    text-align: center;
    position: relative;
  }

  .mini_title p {
    text-align: center;
    font-size: 42px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;

  }
  
  .mini_title p span{
    font-size: 62px;
  }
  
  .small-main-text{
    font-size: 10px;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
  }

  .mini_title>.small-main-text{
    font-size: 14px;
    margin-left: 0px;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    padding-left: 0 !important;
  }

  .pat{
    position: absolute;
    top: -100%; left: 25%;
    width: 77px;
  }

  .pat img{
    width: 100%;
    transform: rotate(15deg);
  }

  .potozon{
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;

  }
  
  .potozon li{
    width: 100%;
    height: 150px;
    background: #050505;
    margin-bottom: 40px;
  }

  #pic2{
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
  }
  
  #pic>div{
    display: block;
  }

  #pic2>div{
    display: block;
  }

  #pic p{

    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
  }

  #pic2 p{

    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    display: inline-block;

  }

  .ans{
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: normal;
    text-align: center;
    margin-left: 10px;
    margin-top: 20px;
  }

  .ans1{
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: normal;
    text-align: center;
    padding-left: 10px;
    margin-top: 20px;
  }

  .potozon li p:nth-child(1){
    padding-top: 25px;
  }

  .potozon li:hover{
    animation: sm 1s forwards;
  }

  .potozon li:nth-child(1){
    background-image: url(../img/main/01.jpg);
    background-position: 50% 60%;
  }
  
  .potozon li:nth-child(2){
    background-image: url(../img/main/02.jpg);
    background-position: 50% 40%;
  }

  .potozon li:nth-child(3){
    background-image: url(../img/main/04.jpg);
    background-position: 30% 40%;
  }

  .bg-img{
    width: 140px;
    height: 100px;
    background-image: url(../img/01.png);
    background-size: cover;
    position: absolute;
    top: -200px; right: calc(50% - 250px);
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img1{
    width: 140px;
    height: 101px;
    background-image: url(../img/02.png);
    background-size: cover;
    position: absolute;
    bottom: -50px; left: calc(50% - 180px);
    transform: rotate(0deg);

  }
  .bg-img2{
    width: 124px;
    height: 172px;
    background-image: url(../img/03.png);
    background-size: cover;
    position: absolute;
    top: -70px; left: calc(50% - 200px);
    transform: rotate(-20deg);
  }
  .bg-img3{
    width: 200px;
    height: 200px;
    background-image: url(../img/04.png);
    background-size: cover;
    position: absolute;
    top: -0; left: -0;
    transform: rotate(0deg);
  }
  .bg-img4{
    width: 200px;
    height: 200px;
    background-image: url(../img/05.png);
    background-size: cover;
    position: absolute;
    bottom: 0px; right: -0;
    transform: rotate(0deg);
  }
  .bg-img5{
    width: 200px;
    height: 235px;
    background-image: url(../img/06.png);
    background-size: cover;
    position: absolute;
    top: -150px; right: calc(50% - 250px);
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img6{
    width: 253px;
    height: 264px;
    background-image: url(../img/07.png);
    background-size: cover;
    position: absolute;
    bottom: -0; left: -0px;
    transform: rotate(0deg);
  }
  .bg-img7{
    width: 253px;
    height: 253px;
    background-image: url(../img/08.png);
    background-size: cover;
    position: absolute;
    top: -50px; left: calc(50% - 150px) ;
    transform: rotate(0deg);
  }
  .bg-img8{
    width: 258px;
    height: 264px;
    background-image: url(../img/09.png);
    background-size: cover;
    position: absolute;
    bottom: -450px; right: -50px;
    transform: rotate(15deg);
  }
  .bg-img9{
    width: 338px;
    height: 470px;
    background-image: url(../img/10.png);
    background-size: cover;
    position: absolute;
    top: -50px; left: calc(50% - 170px);
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img10{
    display: none;
  }

  #section2{
    width: 100%;
    height: 100%;
  }

  #section2 .mini_title{
    text-align: center;
  }

  #section2 .pat{
    padding-right: 10px;
  }

  #section3{
    width: 100%;
    height: 100%;
    margin-top: 100px;
  }

  #section3 .small-main-text{
    padding-left: 50px;
  }

  #section3>.inner{
    position: relative;
  }

  #section3 img{
    width: 100%;
  }

  .gallery li{
    display: inline-block;
    width: 45%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .gallery li:nth-child(2n){
    margin-right: 0;
  }

  #section4{
    width: 100%;
    margin-top: 50px;
  }

  .s-desgine{
    color: #fffbee;
    display: block;
    text-align: center;
    margin-bottom: 30px ;
    position: relative;
  }

  .concert{
    width: 100%;
    text-align: center;
  }

  .concert li{
    display: inline-block;
    margin-bottom: 50px;
    margin-right: 1%;
  }

  .concert li:nth-child(2n){
    margin-right: 0;
  }

  .concert li img{
    width: 100%;
  }

  footer{
    width: 100%;
    color: #fff;
    margin-top: 100px;
  }

  footer img{
    width: 100%;
  }

  .pc-footer{
    display: none;
  }

  .m-f-logo{
    width: 100px;
    height: 38px;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .m-list{
    font-size: 10px;
    text-align: center;
    color: #ffec5d;
  }

  .m-list li{
    display: inline-block;
    margin-right: 10px;
  }

  .m-list li:last-child{
    margin-right: 0;
  }

  .m-info{
    font-size: 10px;
    margin-top: 30px;
    text-align: center;
    padding:0 80px
  }

  .m-info li{
    display: inline-block;
    width: 45%;
  }

  .m-last{
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
  }


} 

/*////////////////////////////////////////////////////////////////////////////////////*/

@media all and (min-width:426px) and (max-width:585px){

  .inner{
    width: 95%;
    margin: 0 auto;
  }

  header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    z-index: 99;
  }
  
  .main-logo{
    position: absolute;
    /*right: 20px;*/
    left: 20px; 
    top: 15px;
    width: 75px;
  }

  .menu-btn h4{
    width: 110px;
    transform: translateX(-100%);
    color: #FFC200;
    display: none;
  }
  
  .menu-btn{
    position: absolute;
    z-index: 2;
    right: 20px;
    /*left: 20px; */
    top: 10px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
   /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
    transition: all 0.3s ease-in-out;
  }

  .wrapper{
    position: fixed;
    top: 0;
    /*left: -100%;*/
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
    /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
    transition: all 0.6s ease-in-out;
    z-index: 1;
  }

  .content01{
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    */
    text-align: center;
    width: 100%;
    color: #fff;
    height: 100%;
    padding-top: 100px;
  }

  .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0px auto;
    position: relative;
    margin-top: 0px;
  }

  video {
    width: 100%;
    height: 100%;
  }

  .text {
    position: absolute;
    width: 70%;
    top: 30%;
    left: 60%;
    transform: translate(-80%,50%);
    display: inline-block;
  }

  .text p {
    text-align: left;
    font-size: 22px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
  }
  
  .text p span{
    font-size: 32px;
  }

  .mini_title {
    width: 200px;
    margin: 100px auto 20px;
    text-align: center;
    position: relative;
  }

  .mini_title p {
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;

  }
  
  .mini_title p span{
    font-size: 32px;
  }
  
  .small-main-text{
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
  }

  .pat{
    position: absolute;
    top: -100%; left: 10%;
    width: 77px;
  }

  .pat img{
    width: 100%;
    transform: rotate(15deg);
  }

  .potozon{
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;

  }
  
  .potozon li{
    width: 100%;
    height: 150px;
    background: #050505;
    margin-bottom: 40px;
  }

  #pic2{
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
  }
  
  #pic>div{
    display: block;
  }

  #pic2>div{
    display: block;
  }

  #pic p{
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
  }

  #pic2 p{
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    text-align: center;
    display: inline-block;

  }

  .ans{
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: 100;
    text-align: center;
    margin-top: 20px;
  }

  .ans1{
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: normal;
    text-align: center;
    margin-right: 10px;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
    margin-top: 20px;
  }
  
  .potozon li p:nth-child(1){
    padding-top: 25px;
  }

  .potozon li:hover{
    animation: sm 1s forwards;
  }

  .potozon li:nth-child(1){
    background-image: url(../img/main/01.jpg);
    background-position: 50% 60%;
  }
  
  .potozon li:nth-child(2){
    background-image: url(../img/main/02.jpg);
    background-position: 50% 40%;
  }

  .potozon li:nth-child(3){
    background-image: url(../img/main/04.jpg);
    background-position: 30% 40%;
  }

  .bg-img{
    width: 140px;
    height: 100px;
    background-image: url(../img/01.png);
    background-size: cover;
    position: absolute;
    top: -200px; right: 0%;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img1{
    width: 140px;
    height: 101px;
    background-image: url(../img/02.png);
    background-size: cover;
    position: absolute;
    bottom: 150px; left: 0%;
    transform: rotate(0deg);

  }
  .bg-img2{
    width: 124px;
    height: 172px;
    background-image: url(../img/03.png);
    background-size: cover;
    position: absolute;
    top: -70px; left: 0;
    transform: rotate(-20deg);
  }
  .bg-img3{
    width: 200px;
    height: 200px;
    background-image: url(../img/04.png);
    background-size: cover;
    position: absolute;
    top: -0; left: -0;
    transform: rotate(0deg);
  }
  .bg-img4{
    width: 200px;
    height: 200px;
    background-image: url(../img/05.png);
    background-size: cover;
    position: absolute;
    bottom: 0px; right: -0;
    transform: rotate(0deg);
  }
  .bg-img5{
    width: 200px;
    height: 235px;
    background-image: url(../img/06.png);
    background-size: cover;
    position: absolute;
    top: -150px; right: -100px;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img6{
    width: 253px;
    height: 264px;
    background-image: url(../img/07.png);
    background-size: cover;
    position: absolute;
    bottom: -0; left: -0px;
    transform: rotate(0deg);
  }
  .bg-img7{
    width: 253px;
    height: 253px;
    background-image: url(../img/08.png);
    background-size: cover;
    position: absolute;
    top: -100px; left: -50px;
    transform: rotate(0deg);
  }
  .bg-img8{
    width: 258px;
    height: 264px;
    background-image: url(../img/09.png);
    background-size: cover;
    position: absolute;
    bottom: -450px; right: -50px;
    transform: rotate(15deg);
  }
  .bg-img9{
    width: 338px;
    height: 470px;
    background-image: url(../img/10.png);
    background-size: cover;
    position: absolute;
    top: -50px; left: -80px;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img10{
    display: none;
  }

  #section2{
    width: 100%;
  }

  #section2 .mini_title{
    text-align: center;
  }

  #section2 .pat{
    padding-right: 10px;
  }


  #section3{
    width: 100%;
    height: 100%;
    margin-top: 100px;
  }

  #section3 .small-main-text{
    padding-left: 50px;
  }

  #section3>.inner{
    position: relative;
  }

  .gallery{
    text-align: center;
  }

  .gallery li{
    width: 90%;
    margin-bottom: 50px;
    display: inline-block;
  }

  .gallery img{
    width: 100%;
  }

  #section4{
    width: 100%;
    margin-top: 50px;
  }

  .s-desgine{
    color: #fffbee;
    display: block;
    text-align: center;
    margin-bottom: 30px ;
    position: relative;
  }

  .concert{
    width: 100%;
    text-align: center;
  }

  .concert li{
    display: inline-block;
    margin-bottom: 100px;
  }

  .concert li img{
    width: 100%;
  }

  footer{
    width: 100%;
    color: #fff;
    margin-top: 100px;
  }

  footer>.inner{
    min-width: 463px;
  }

  footer img{
    width: 100%;
  }

  .pc-footer{
    display: none;
  }

  .m-f-logo{
    width: 100px;
    height: 38px;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .m-list{
    font-size: 10px;
    text-align: center;
    color: #ffec5d;
  }

  .m-list li{
    display: inline-block;
    margin-right: 10px;
  }

  .m-list li:last-child{
    margin-right: 0;
  }

  .m-info{
    font-size: 10px;
    margin-top: 30px;
    text-align: center;
    padding:0;
    min-width: 320px;
  }

  .m-info li{
    display: inline-block;
    width: 45%;
    min-width: 137px;
  }

  .m-last{
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
    min-width: 320px;
  }

} 


/*=====================================================================================*/




/*//////////////////////////////////////////////////////////////////////////////////////////*/

@media all and (min-width:320px) and (max-width:425px){

  .inner{
    width: 95%;
    margin: 0 auto;
  }

  header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    z-index: 99;
  }
  
  .main-logo{
    position: absolute;
    /*right: 20px;*/
    left: 20px; 
    top: 15px;
    width: 75px;
  }

  .menu-btn h4{
    width: 110px;
    transform: translateX(-100%);
    color: #FFC200;
    display: none;
  }
  
  .menu-btn{
    position: absolute;
    z-index: 2;
    right: 20px;
    /*left: 20px; */
    top: 10px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
   /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
    transition: all 0.3s ease-in-out;
  }

  .wrapper{
    position: fixed;
    top: 0;
    /*left: -100%;*/
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
    /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
    /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
    transition: all 0.6s ease-in-out;
    z-index: 1;
  }

  .content01{
    /*
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    */
    text-align: center;
    width: 100%;
    color: #fff;
    height: 100%;
    padding-top: 100px;
  }

  .bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0px auto;
    position: relative;
    margin-top: 0px;
  }

  video {
    width: 100%;
    height: 100%;
  }

  .text {
    position: absolute;
    width: 70%;
    top: 30%;
    left: 60%;
    transform: translate(-80%,50%);
    display: inline-block;
  }

  .text p {
    text-align: left;
    font-size: 22px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
  }
  
  .text p span{
    font-size: 32px;
  }

  .mini_title {
    width: 200px;
    margin: 100px auto 20px;
    text-align: center;
    position: relative;
  }

  .mini_title p {
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;

  }
  
  .mini_title p span{
    font-size: 32px;
  }
  
  .small-main-text{
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
  }

  .pat{
    position: absolute;
    top: -100%; left: 10%;
    width: 77px;
  }

  .pat img{
    width: 100%;
    transform: rotate(15deg);
  }

  .potozon{
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;

  }
  
  .potozon li{
    width: 100%;
    height: 150px;
    background: #050505;
    margin-bottom: 40px;
  }

  #pic2{
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
  }
  
  #pic>div{
    display: block;
  }

  #pic2>div{
    display: block;
  }

  #pic p{
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
  }

  #pic2 p{
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    text-align: center;
    display: inline-block;

  }

  .ans{
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: 100;
    text-align: center;
    margin-top: 20px;
  }

  .ans1{
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: normal;
    text-align: center;
    margin-right: 10px;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
    margin-top: 20px;
  }
  
  .potozon li p:nth-child(1){
    padding-top: 25px;
  }

  .potozon li:hover{
    animation: sm 1s forwards;
  }

  .potozon li:nth-child(1){
    background-image: url(../img/main/01.jpg);
    background-position: 50% 60%;
  }
  
  .potozon li:nth-child(2){
    background-image: url(../img/main/02.jpg);
    background-position: 50% 40%;
  }

  .potozon li:nth-child(3){
    background-image: url(../img/main/04.jpg);
    background-position: 30% 40%;
  }

  .bg-img{
    width: 140px;
    height: 100px;
    background-image: url(../img/01.png);
    background-size: cover;
    position: absolute;
    top: -200px; right: 0%;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img1{
    width: 140px;
    height: 101px;
    background-image: url(../img/02.png);
    background-size: cover;
    position: absolute;
    bottom: 150px; left: 0%;
    transform: rotate(0deg);

  }
  .bg-img2{
    width: 124px;
    height: 172px;
    background-image: url(../img/03.png);
    background-size: cover;
    position: absolute;
    top: -70px; left: 0;
    transform: rotate(-20deg);
  }
  .bg-img3{
    width: 200px;
    height: 200px;
    background-image: url(../img/04.png);
    background-size: cover;
    position: absolute;
    top: -0; left: -0;
    transform: rotate(0deg);
  }
  .bg-img4{
    width: 200px;
    height: 200px;
    background-image: url(../img/05.png);
    background-size: cover;
    position: absolute;
    bottom: 0px; right: -0;
    transform: rotate(0deg);
  }
  .bg-img5{
    width: 200px;
    height: 235px;
    background-image: url(../img/06.png);
    background-size: cover;
    position: absolute;
    top: -150px; right: -100px;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img6{
    width: 253px;
    height: 264px;
    background-image: url(../img/07.png);
    background-size: cover;
    position: absolute;
    bottom: -0; left: -0px;
    transform: rotate(0deg);
  }
  .bg-img7{
    width: 253px;
    height: 253px;
    background-image: url(../img/08.png);
    background-size: cover;
    position: absolute;
    top: -100px; left: -50px;
    transform: rotate(0deg);
  }
  .bg-img8{
    width: 258px;
    height: 264px;
    background-image: url(../img/09.png);
    background-size: cover;
    position: absolute;
    bottom: -450px; right: -50px;
    transform: rotate(15deg);
  }
  .bg-img9{
    width: 338px;
    height: 470px;
    background-image: url(../img/10.png);
    background-size: cover;
    position: absolute;
    top: -50px; left: -80px;
    transform: rotate(0deg);
    overflow: hidden;
  }
  .bg-img10{
    display: none;
  }

  #section2{
    width: 100%;
  }

  #section2 .mini_title{
    text-align: center;
  }

  #section2 .pat{
    padding-right: 10px;
  }

  #section3{
    width: 100%;
    height: 100%;
    margin-top: 100px;
  }

  #section3 .small-main-text{
    padding-left: 50px;
  }

  #section3>.inner{
    position: relative;
  }

  .gallery{
    text-align: center;
  }

  .gallery li{
    width: 90%;
    margin-bottom: 50px;
    display: inline-block;
  }

  .gallery img{
    width: 100%;
  }

  #section4{
    width: 100%;
    margin-top: 50px;
  }

  .s-desgine{
    color: #fffbee;
    display: block;
    text-align: center;
    margin-bottom: 30px ;
    position: relative;
  }

  .concert{
    width: 100%;
    text-align: center;
  }

  .concert li{
    display: inline-block;
    margin-bottom: 100px;
  }

  .concert li img{
    width: 100%;
  }

  footer{
    width: 100%;
    color: #fff;
    margin-top: 100px;
  }

  footer>.inner{
    min-width: 463px;
  }

  footer img{
    width: 100%;
  }

  .pc-footer{
    display: none;
  }

  .m-f-logo{
    width: 100px;
    height: 38px;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .m-list{
    font-size: 10px;
    text-align: center;
    color: #ffec5d;
  }

  .m-list li{
    display: inline-block;
    margin-right: 10px;
  }

  .m-list li:last-child{
    margin-right: 0;
  }

  .m-info{
    font-size: 10px;
    margin-top: 30px;
    text-align: center;
    padding:0;
    min-width: 320px;
  }

  .m-info li{
    display: inline-block;
    width: 45%;
    min-width: 137px;
  }

  .m-last{
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
    min-width: 320px;
  }

} 


/*=====================================================================================*/


/*------------------*/
/* Layout (No Edit) */
/*------------------*/


/*애니메이션*/

@keyframes lar{
  0%{height: 300px; padding-top: 0;}
  100%{height: 500px; padding-top: 100px;}
}

@keyframes sm{
  0%{height: 150px; padding-top: 0;}
  100%{height: 250px; padding-top: 50px;}
}

@keyframes talkbox{
  0%{opacity: 0; transform: rotateY(360deg);}
  100%{opacity: 1; transform: rotateY(0);}
}

@keyframes in{
  0%{opacity: 0; }
  100%{opacity: 1; }
}
