@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');

@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';
  }

.clearfix:after { content:""; display:block; clear:both; }/*float버그를 잡아주는 요소(li의 부모요소에게 주어야한다)*/

body{  
    background: #050505;
    font-family: 'Pretendard-Regular';
    color: #ffc200;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #fff;
}

ul, li{
    list-style: none;
}


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

.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;
}

#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;
}

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

.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;
    font-weight: 500;
    padding: 5px 30px;
    color: #fffbee;
    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;
}

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

#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);
}


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

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

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

footer span{
  color: #FFC200;
  width: 200px;
}


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

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



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

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

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

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

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

  }

  .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;
    }
  
    .main-logo{
      position: absolute;
      /*right: 20px;*/
      left: 100px; 
      top: 50px;
      width: 100px;
    }
  
    .content{
      /*
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
      */
      text-align: center;
      width: 100%;
      color: #fffbee;
      height: 120vh;
      display: block;
    }

    #section1{
      width: 100%;
      height: 500px;
      background: url(../img/menu/main.png) no-repeat;
      background-size: cover;
      position: relative;
  }

  .visual-title{
      color: #fffbee;
      position: absolute;
      width: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-80%,20%);
      display: inline-block;
  }
  
  .visual-title span{
      font-size: 100px;
  }
  
  .visual-title p{
      text-align: left;
      font-size: 70px;
      color: #fffbee;
      font-style: normal;
      font-weight: 500;
      line-height: 100px;
  }
  
  .small-main-text{
      font-size: 22px;
      margin-left: 80px;
      font-weight: 400;
      line-height: 26px;
      text-transform: uppercase;
      color: #fffbee;
      text-align: left;
  }

.menulist{
  font-size: 15px;
  font-weight: bold;
  color: #fffbee;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  width: 1200px;
  height: 30px;
  margin-top: 200px;
  position: relative;
  padding-top: 30px;
}

.menulist li{
  display: inline-block;
  margin-right: 50px;
}

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

.menulist span{
  color: #ffc200;
}

.menulist-m{
  display: none;
}

  .menu-title{
    width: 400px;
    margin: 100px auto 0px;
    text-align: center;
    color: #fff;
    font-size: 100px;
    letter-spacing: 2rem;
  }

  .menu-title img{
    width: 100%;
  }

  .menu-title p{
    margin-top: 20px;
    font-size: 30px;
    letter-spacing: 0;
  }

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

.golden-blue li{
  width: 45%;
    display: inline-block;
    margin-bottom: 50px;
}

.golden-blue h3{
    font-size: 18px;
    line-height: 21px;
    font-weight: bold;
}

.golden-blue h4{
    font-size: 10px;
    line-height: 18px;
    font-weight: 200;
    font-style: italic;
    color: #999999;
}

.golden-blue h1{
    font-size: 22px;
    line-height: 26px;
    font-style: italic;
    font-weight: 200;
}

.top-menu li{
  width: 24%;
}

.one-set{
  width: 100%;
  text-align: center;
  position: relative;
}

.one-set li {
  display: inline-block;
}

.one-set h3{
  width: 450px ;
  font-size: 50px;
  margin-right: 380px;
  text-align: left;
  color: #fff;
}

.one-set h1{
  font-size: 50px;
  text-align: left;
  color: #fff;
}

.two-set{
  padding-left: 15px;
}

.two-set span{
  font-size: 20px;
}

.bottom-menu{
  margin-top: 100px;
}

.bottom-menu h4{
  font-size: 20px;
  color: #fff;
  line-height: 26px;
}

.bottom-menu h1{
  font-size: 30px;
  color: #fff;
  line-height: 40px;
  font-weight: bold;
}

.bottom-menu h3{
  font-size: 30px;
  color: #fff;
  line-height: 40px;
}


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;
}


    .bg-img{
      width: 693px;
      height: 500px;
      background-image: url(../img/01.png);
      background-size: cover;
      position: absolute;
      top: 0px; right: -100px;
      transform: rotate(-45deg);
      overflow: hidden;
    }

    .bg-img1{
      width: 693px;
      height: 500px;
      background-image: url(../img/02.png);
      background-size: cover;
      position: absolute;
      bottom: -250px; left: -100px;
      transform: rotate(55deg);
      overflow: hidden;
    }

    .bg-img2{
      width: 500px;
      height: 693px;
      background-image: url(../img/03.png);
      background-size: cover;
      position: absolute;
      bottom: 0px; right: 0%;
      transform: rotate(-45deg);
    }

    .bg-img5{
      width: 605px;
      height: 710px;
      background-image: url(../img/06.png);
      background-size: cover;
      position: absolute;
      top: -400px; right: 400px;
      transform: rotate(0deg);
      overflow: hidden;
    }

    .bg-img6{
      width: 900px;
      height: 921px;
      background-image: url(../img/07.png);
      background-size: cover;
      position: absolute;
      bottom: -300px; left: 200px;
      transform: rotate(-60deg);
    }

    .bg-img8{
      width: 516px;
      height: 528px;
      background-image: url(../img/09.png);
      background-size: cover;
      position: absolute;
      top: -300px; right: 400px;
      transform: rotate(90deg);
    }
    .bg-img10{
      width: 870px;
      height: 758px;
      background-image: url(../img/11.png);
      background-size: cover;
      position: absolute;
      top: -100px; left:  0;
      transform: rotate(-90deg);
    }
    
    .bg-img11{
      width: 356px;
      height: 640px;
      background-image: url(../img/12.png);
      background-size: cover;
      position: absolute;
      bottom: -560px; left: 400px;
      transform: rotate(75deg);
      overflow: hidden;
      opacity: 0.2;
    }

    .bg-img12{
      width: 750px;
      height: 750px;
      background-image: url(../img/13.png);
      background-size: cover;
      position: absolute;
      bottom: -250px; left: 400px;
      transform: rotate(0deg);
      overflow: hidden;
      opacity: 0.2;
    }

    .bg-img13{
      width: 680px;
      height: 100px;
      background-image: url(../img/14.png);
      background-size: cover;
      position: absolute;
      top: -0px; left: 200px;
      transform: rotate(0deg);
      overflow: hidden;
      opacity: 0.2;
    }
    
    .bg-bird{
      position: absolute;
      top: -250px; left: 35%;
      opacity: 0.5;
    }

    .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%;
    }

    .s-d{display: none;}

  
}


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

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

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

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

    .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;
      }
    
      .main-logo{
        position: absolute;
        /*right: 20px;*/
        left: 100px; 
        top: 50px;
        width: 100px;
      }
    
      .content{
        /*
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        */
        text-align: center;
        width: 100%;
        color: #fffbee;
        height: 120vh;
        display: block;
      }

      #section1{
        width: 100%;
        height: 500px;
        background: url(../img/menu/main.png) no-repeat;
        background-size: cover;
        position: relative;
    }

    .visual-title{
        color: #fffbee;
        position: absolute;
        width: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-80%,20%);
        display: inline-block;
    }
    
    .visual-title span{
        font-size: 100px;
    }
    
    .visual-title p{
        text-align: left;
        font-size: 70px;
        color: #fffbee;
        font-style: normal;
        font-weight: 500;
        line-height: 100px;
    }
    
    .small-main-text{
        font-size: 22px;
        margin-left: 80px;
        font-weight: 400;
        line-height: 26px;
        text-transform: uppercase;
        color: #fffbee;
        text-align: left;
    }

  .menulist{
    font-size: 15px;
    font-weight: bold;
    color: #fffbee;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    width: 1200px;
    height: 30px;
    margin-top: 200px;
    position: relative;
    padding-top: 30px;
  }

  .menulist li{
    display: inline-block;
    margin-right: 50px;
  }

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

  .menulist span{
    color: #ffc200;
  }

  .menulist-m{
    display: none;
  }

  .menu-title{
    width: 400px;
    margin: 100px auto 50px;
    text-align: center;
    color: #fff;
    font-size: 100px;
    letter-spacing: 2rem;

  }

  .menu-title img{
    width: 100%;
  }

  .menu-title p{
    margin-top: 20px;
    font-size: 30px;
    letter-spacing: 0;
  }

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

.golden-blue li{
  width: 45%;
    display: inline-block;
    margin-bottom: 50px;
}

.golden-blue h3{
    font-size: 18px;
    line-height: 21px;
    font-weight: bold;
}

.golden-blue h4{
    font-size: 10px;
    line-height: 18px;
    font-weight: 200;
    font-style: italic;
    color: #999999;
}

.golden-blue h1{
    font-size: 22px;
    line-height: 26px;
    font-style: italic;
    font-weight: 200;
}

.top-menu li{
  width: 24%;
}

.one-set{
  width: 100%;
  text-align: center;
  position: relative;
}

.one-set li {
  display: inline-block;
}

.one-set h3{
  width: 450px ;
  font-size: 50px;
  margin-right: 380px;
  text-align: left;
  color: #fff;
}

.one-set h1{
  font-size: 50px;
  text-align: left;
  color: #fff;
}

.two-set{
  padding-left: 15px;
}

.two-set span{
  font-size: 20px;
}

.bottom-menu{
  margin-top: 100px;
}

.bottom-menu h4{
  font-size: 20px;
  color: #fff;
  line-height: 26px;
}

.bottom-menu h1{
  font-size: 30px;
  color: #fff;
  line-height: 40px;
  font-weight: bold;
}

.bottom-menu h3{
  font-size: 30px;
  color: #fff;
  line-height: 40px;
}


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;
}

.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;
}
  
      .bg-img{
        width: 693px;
        height: 500px;
        background-image: url(../img/01.png);
        background-size: cover;
        position: absolute;
        top: 0px; right: -100px;
        transform: rotate(-45deg);
        overflow: hidden;
      }

      .bg-img1{
        width: 693px;
        height: 500px;
        background-image: url(../img/02.png);
        background-size: cover;
        position: absolute;
        bottom: -250px; left: -100px;
        transform: rotate(55deg);
        overflow: hidden;
      }

      .bg-img2{
        width: 500px;
        height: 693px;
        background-image: url(../img/03.png);
        background-size: cover;
        position: absolute;
        bottom: 0px; right: 0%;
        transform: rotate(-45deg);
      }

      .bg-img5{
        width: 605px;
        height: 710px;
        background-image: url(../img/06.png);
        background-size: cover;
        position: absolute;
        top: -400px; right: 400px;
        transform: rotate(0deg);
        overflow: hidden;
      }

      .bg-img6{
        width: 900px;
        height: 921px;
        background-image: url(../img/07.png);
        background-size: cover;
        position: absolute;
        bottom: -300px; left: 200px;
        transform: rotate(-60deg);
      }

      .bg-img8{
        width: 516px;
        height: 528px;
        background-image: url(../img/09.png);
        background-size: cover;
        position: absolute;
        top: -300px; right: 400px;
        transform: rotate(90deg);
      }
      .bg-img10{
        width: 870px;
        height: 758px;
        background-image: url(../img/11.png);
        background-size: cover;
        position: absolute;
        top: -100px; left:  0;
        transform: rotate(-90deg);
      }
      
      .bg-img11{
        width: 356px;
        height: 640px;
        background-image: url(../img/12.png);
        background-size: cover;
        position: absolute;
        bottom: -560px; left: 400px;
        transform: rotate(75deg);
        overflow: hidden;
        opacity: 0.2;
      }

      .bg-img12{
        width: 750px;
        height: 750px;
        background-image: url(../img/13.png);
        background-size: cover;
        position: absolute;
        bottom: -250px; left: 400px;
        transform: rotate(0deg);
        overflow: hidden;
        opacity: 0.2;
      }

      .bg-img13{
        width: 680px;
        height: 100px;
        background-image: url(../img/14.png);
        background-size: cover;
        position: absolute;
        top: -0px; left: 200px;
        transform: rotate(0deg);
        overflow: hidden;
        opacity: 0.2;
      }
      
      .bg-bird{
        position: absolute;
        top: -250px; left: 35%;
        opacity: 0.5;
      }

      .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%;
      }

      .s-d{display: none;}

    
}

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

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

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

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

  }

  .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;
    }
  
    .main-logo{
      position: absolute;
      /*right: 20px;*/
      left: 100px; 
      top: 50px;
      width: 100px;
    }
  
    .content{
      /*
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
      */
      text-align: center;
      width: 100%;
      color: #fffbee;
      height: 120vh;
      display: block;
    }

    #section1{
      width: 100%;
      height: 500px;
      background: url(../img/menu/main.png) no-repeat;
      background-size: cover;
      position: relative;
  }

  .visual-title{
      color: #fffbee;
      position: absolute;
      width: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-80%,20%);
      display: inline-block;
  }
  
  .visual-title span{
      font-size: 100px;
  }
  
  .visual-title p{
      text-align: left;
      font-size: 70px;
      color: #fffbee;
      font-style: normal;
      font-weight: 500;
      line-height: 100px;
  }
  
  .small-main-text{
      font-size: 22px;
      margin-left: 80px;
      font-weight: 400;
      line-height: 26px;
      text-transform: uppercase;
      color: #fffbee;
      text-align: left;
  }

.menulist{
  font-size: 15px;
  font-weight: bold;
  color: #fffbee;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  height: 30px;
  position: relative;
  padding-top: 30px;
}

.menulist li{
  display: inline-block;
  margin-right: 50px;
}

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

.menulist span{
  color: #ffc200;
}

  .menu-title{
    width: 400px;
    margin: 100px auto 0px;
    text-align: center;
    color: #fff;
    font-size: 50px;
  }

  .menu-title img{
    width: 100%;
  }

  .menu-title p{
    margin-top: 20px;
    font-size: 30px;
  }

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

.golden-blue li{
  width: 45%;
    display: inline-block;
    margin-bottom: 50px;
}

.golden-blue h3{
    font-size: 18px;
    line-height: 21px;
    font-weight: bold;
}

.golden-blue h4{
    font-size: 10px;
    line-height: 18px;
    font-weight: 200;
    font-style: italic;
    color: #999999;
}

.golden-blue h1{
    font-size: 22px;
    line-height: 26px;
    font-style: italic;
    font-weight: 200;
}

.top-menu li{
  width: 24%;
}

.top-menu li img{
  width: 100%;
}

.one-set{
  width: 100%;
  text-align: center;
  position: relative;
}

.one-set li {
  display: inline-block;
}

.one-set h3{
  width: 300px ;
  font-size: 30px;
  margin-right: 50px;
  text-align: left;
  color: #fff;
}

.one-set h1{
  font-size: 26px;
  text-align: left;
  color: #fff;
}

.two-set{
  padding-left: 15px;
}

.two-set span{
  font-size: 16px;
}

.bottom-menu{
  margin-top: 100px;
}

.bottom-menu h4{
  font-size: 16px;
  color: #fff;
  line-height: 26px;
}

.bottom-menu h1{
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  font-weight: bold;
}

.bottom-menu h3{
  font-size: 16px;
  color: #fff;
  line-height: 40px;
}

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;
}


    .bg-img{
      width: 693px;
      height: 500px;
      background-image: url(../img/01.png);
      background-size: cover;
      position: absolute;
      top: 0px; right: 0px;
      transform: rotate(-45deg);
      overflow: hidden;
    }

    .bg-img1{
      width: 693px;
      height: 500px;
      background-image: url(../img/02.png);
      background-size: cover;
      position: absolute;
      bottom: -250px; left: -100px;
      transform: rotate(55deg);
      overflow: hidden;
    }

    .bg-img2{
      width: 500px;
      height: 693px;
      background-image: url(../img/03.png);
      background-size: cover;
      position: absolute;
      bottom: 0px; right: 10%;
      transform: rotate(-45deg);
    }

    .bg-img5{
      width: 605px;
      height: 710px;
      background-image: url(../img/06.png);
      background-size: cover;
      position: absolute;
      top: -400px; right: 400px;
      transform: rotate(0deg);
      overflow: hidden;
    }

    .bg-img6{
      width: 900px;
      height: 921px;
      background-image: url(../img/07.png);
      background-size: cover;
      position: absolute;
      bottom: -300px; left: 200px;
      transform: rotate(-60deg);
    }

    .bg-img8{
      width: 516px;
      height: 528px;
      background-image: url(../img/09.png);
      background-size: cover;
      position: absolute;
      top: -300px; right: 400px;
      transform: rotate(90deg);
    }
    .bg-img10{
      width: 870px;
      height: 758px;
      background-image: url(../img/11.png);
      background-size: cover;
      position: absolute;
      top: -100px; left:  0;
      transform: rotate(-90deg);
    }
    
    .bg-img11{
      width: 356px;
      height: 640px;
      background-image: url(../img/12.png);
      background-size: cover;
      position: absolute;
      bottom: -560px; left: 400px;
      transform: rotate(75deg);
      overflow: hidden;
      opacity: 0.2;
    }

    .bg-img12{
      width: 750px;
      height: 750px;
      background-image: url(../img/13.png);
      background-size: cover;
      position: absolute;
      bottom: -250px; left: 20%;
      transform: rotate(0deg);
      overflow: hidden;
      opacity: 0.2;
    }

    .bg-img13{
      width: 680px;
      height: 100px;
      background-image: url(../img/14.png);
      background-size: cover;
      position: absolute;
      top: -0px; left: 100px;
      transform: rotate(0deg);
      overflow: hidden;
      opacity: 0.2;
    }
    
    .bg-bird{
      position: absolute;
      top: -250px; left: 35%;
      opacity: 0.5;
    }

    .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%;
    }

    .s-d{display: none;}

  
}

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


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

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

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

  }

  .menu-btn{
      position: absolute;
      z-index: 2;
      right: 50px;
      /*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;
    }
    
    .main-logo{
      position: absolute;
      /*right: 20px;*/
      left: 50px; 
      top: 50px;
      width: 100px;
    }
  
    .content01{
      /*
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
      */
      text-align: center;
      width: 100%;
      color: #fffbee;
      height: 60vh;
    }
  
    #section1{
      width: 100%;
      height: 300px;
      background: url(../img/menu/m-bg.png) no-repeat;
      background-size: cover;
      position: relative;
  }

  .visual-title{
    color: #fffbee;
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-80%,20%);
    display: inline-block;
  }
  
  .visual-title span{
    font-size: 52px;
  }
  
  .visual-title p{
    text-align: left;
    font-size: 32px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
  }
  
  .small-main-text{
    font-size: 10px;
    margin-left: 10px;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
  }

  .menulist{
    font-size: 15px;
    font-weight: bold;
    color: #fffbee;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    height: 30px;
    position: relative;
    padding-top: 30px;
  }
  
  .menulist li{
    display: inline-block;
    margin-right: 50px;
  }
  
  .menulist li:last-child{
    margin-right: 0;
  }
  
  .menulist span{
    color: #ffc200;
  }

  #section3{
    margin-top: 100px;
  }

  .menu-title{
    width: 400px;
    margin: 100px auto 0px;
    text-align: center;
    color: #fff;
    font-size: 50px;
  }

  .menu-title img{
    width: 100%;
  }

  .menu-title p{
    margin-top: 20px;
    font-size: 30px;
  }

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

.golden-blue li{
  width: 45%;
    display: inline-block;
    margin-bottom: 50px;
}

.golden-blue li img{
  width: 100%;
}

.golden-blue h3{
    font-size: 10px;
    line-height: 21px;
    font-weight: bold;
}

.golden-blue h4{
    font-size: 10px;
    line-height: 18px;
    font-weight: 200;
    font-style: italic;
    color: #999999;
}

.golden-blue h1{
    font-size: 22px;
    line-height: 26px;
    font-style: italic;
    font-weight: 200;
}

.top-menu li{
  width: 24%;
}

.top-menu li img{
  width: 100%;
}

.one-set{
  width: 100%;
  text-align: center;
  position: relative;
}

.one-set li {
  display: inline-block;
  margin-bottom: 20px;
}

.one-set h3{
  width: 200px ;
  font-size: 16px;
  margin-right: 0px;
  text-align: left;
  color: #fff;
}

.one-set h1{
  font-size: 16px;
  text-align: left;
  color: #fff;
}

.two-set{
  padding-left: 15px;
  margin-top: 30px;
}

.two-set span{
  font-size: 10px;
}

.bottom-menu{
  margin-top: 100px;
}

.bottom-menu h4{
  font-size: 18px;
  color: #fff;
  line-height: 26px;
}

.bottom-menu h1{
  font-size: 30px;
  color: #fff;
  line-height: 40px;
  font-weight: bold;
}

.bottom-menu h3{
  font-size: 18px;
  color: #fff;
  line-height: 40px;
}




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;
}


    

    .bg-img{
      width: 280px;
      height: 200px;
      background-image: url(../img/01.png);
      background-size: cover;
      position: absolute;
      top: -50px; left: calc(50% - 140px);
      transform: rotate(-150deg);
      overflow: hidden;
    }

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

    .bg-img2{
      width: 150px;
      height: 208px;
      background-image: url(../img/03.png);
      background-size: cover;
      position: absolute;
      top: 0px; left: calc(50% - 140px);
      transform: rotate(-45deg);
    }

    .bg-img5{
      width: 605px;
      height: 710px;
      background-image: url(../img/06.png);
      background-size: cover;
      position: absolute;
      top: 1px; left: calc(50% - 140px);
      transform: rotate(0deg);
      overflow: hidden;
    }

    .bg-img6{
      display: none;
    }

    .bg-img8{
      width: 516px;
      height: 528px;
      background-image: url(../img/09.png);
      background-size: cover;
      position: absolute;
      top: -300px; right: 400px;
      transform: rotate(90deg);
    }

    .bg-img10{
      width: 300px;
      height: 261px;
      background-image: url(../img/11.png);
      background-size: cover;
      position: absolute;
      top: -100px; left:  0;
      transform: rotate(-90deg);
    }
    
    .bg-img11{
      display: none;
    }

    .bg-img12{
      width: 300px;
      height: 300px;
      background-image: url(../img/13.png);
      background-size: cover;
      position: absolute;
      bottom: 0px; left: 0px;
      transform: rotate(0deg);
      overflow: hidden;
      opacity: 0.2;
    }

    .bg-img13{
      width: 680px;
      height: 100px;
      background-image: url(../img/14.png);
      background-size: cover;
      position: absolute;
      top: -0px; left: 0px;
      transform: rotate(0deg);
      overflow: hidden;
      opacity: 0.2;
    }
    
    .bg-bird{
      position: absolute;
      top: -150px; left: 25%;
      opacity: 0.5;
      width: 77px;
    }

    .bg-bird img{
      width: 100%;
    }
  
    .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%;
    }
  
    .s-d{display: none;}


}



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



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

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

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

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

    .menu-btn{
        position: absolute;
        z-index: 2;
        right: 10px;
        /*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;
      }
      
      .main-logo{
        position: absolute;
        /*right: 20px;*/
        left: 50px; 
        top: 55px;
        width: 100px;
      }
    
      .content01{
        /*
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        */
        text-align: center;
        width: 100%;
        color: #fffbee;
        height: 60vh;
      }
    
      #section1{
        width: 100%;
        height: 300px;
        background: url(../img/menu/m-bg.png) no-repeat;
        background-size: cover;
        position: relative;
    }

    .visual-title{
      position: absolute;
      width: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-80%,50%);
      display: inline-block;
    }
    
    .visual-title span{
      font-size: 32px;
    }
    
    .visual-title p{
      text-align: left;
      font-size: 22px;
      color: #ffffff;
      font-style: normal;
      font-weight: 500;
      line-height: 26px;
    }
    
    .small-main-text{
      font-size: 8px;
      margin-left: 10px;
      font-weight: 400;
      line-height: 12px;
      text-transform: uppercase;
      color: #fff;
      text-align: left;
    }

    .menulist{
      font-size: 15px;
      font-weight: bold;
      color: #fffbee;
      text-transform: uppercase;
      text-align: center;
      margin: 0 auto;
      width: 100%;
      height: 30px;
      position: relative;
      padding-top: 30px;
    }
    
    .menulist li{
      display: inline-block;
      margin-right: 50px;
    }
    
    .menulist li:last-child{
      margin-right: 0;
    }
    
    .menulist span{
      color: #ffc200;
    }
  
    #section3{
      margin-top: 100px;
    }
  
    .menu-title{
      width: 400px;
      margin: 100px auto 0px;
      text-align: center;
      color: #fff;
      font-size: 50px;
    }
  
    .menu-title img{
      width: 100%;
    }
  
    .menu-title p{
      margin-top: 20px;
      font-size: 30px;
    }
  
    .golden-blue{
      width: 100%;
      text-align: center;
      position: relative;
      color: #fff;
  }
  
  .golden-blue li{
    width: 45%;
      display: inline-block;
      margin-bottom: 50px;
  }
  
  .golden-blue li img{
    width: 100%;
  }

  .top-menu img{
    width: 100%;
  }
  
  .golden-blue h3{
      font-size: 10px;
      line-height: 21px;
      font-weight: bold;
  }
  
  .golden-blue h4{
      font-size: 10px;
      line-height: 18px;
      font-weight: 200;
      font-style: italic;
      color: #999999;
  }
  
  .golden-blue h1{
      font-size: 16px;
      line-height: 26px;
      font-style: italic;
      font-weight: 200;
  }
  
  .top-menu li{
    width: 24%;
  }
  
  .top-menu li img{
    width: 100%;
  }
  
  .one-set{
    width: 100%;
    text-align: center;
    position: relative;
  }

  .one-set img{
    width: 100%;
  }
  
  .one-set li {
    display: inline-block;
    margin-bottom: 20px;
  }
  
  .one-set h3{
    width: 150px ;
    font-size: 14px;
    margin-right: 0px;
    text-align: left;
    color: #fff;
  }
  
  .one-set h1{
    font-size: 14px;
    text-align: left;
    color: #fff;
  }
  
  .two-set{
    padding-left: 15px;
    margin-top: 30px;
  }
  
  .two-set span{
    font-size: 10px;
  }
  
  .bottom-menu{
    margin-top: 100px;
  }
  
  .bottom-menu h4{
    font-size: 18px;
    color: #fff;
    line-height: 26px;
  }
  
  .bottom-menu h1{
    font-size: 30px;
    color: #fff;
    line-height: 40px;
    font-weight: bold;
  }
  
  .bottom-menu h3{
    font-size: 18px;
    color: #fff;
    line-height: 40px;
  }
  
    

  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;
  }

      

    .bg-img{
      width: 280px;
      height: 200px;
      background-image: url(../img/01.png);
      background-size: cover;
      position: absolute;
      top: -50px; left: calc(50% - 140px);
      transform: rotate(-150deg);
      overflow: hidden;
    }

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

    .bg-img2{
      width: 150px;
      height: 208px;
      background-image: url(../img/03.png);
      background-size: cover;
      position: absolute;
      top: 0px; left: calc(50% - 140px);
      transform: rotate(-45deg);
    }

    .bg-img5{
      display: none;
    }

    .bg-img6{
      display: none;
    }

    .bg-img8{
      width: 516px;
      height: 528px;
      background-image: url(../img/09.png);
      background-size: cover;
      position: absolute;
      top: -300px; right: 400px;
      transform: rotate(90deg);
    }

    .bg-img10{
      width: 300px;
      height: 261px;
      background-image: url(../img/11.png);
      background-size: cover;
      position: absolute;
      top: -100px; left:  0;
      transform: rotate(-90deg);
    }
    
    .bg-img11{
      display: none;
    }

    .bg-img12{
      width: 300px;
      height: 300px;
      background-image: url(../img/13.png);
      background-size: cover;
      position: absolute;
      bottom: 0px; left: 0px;
      transform: rotate(0deg);
      overflow: hidden;
      opacity: 0.2;
    }

    .bg-img13{
      width: 340px;
      height: 50px;
      background-image: url(../img/14.png);
      background-size: cover;
      position: absolute;
      top: -0px; left: calc(50% - 200px);
      transform: rotate(0deg);
      overflow: hidden;
      opacity: 0.2;
    }
      
      .bg-bird{
        position: absolute;
        top: -150px; left: 25%;
        opacity: 0.5;
        width: 77px;
      }

      .bg-bird img{
        width: 100%;
      }
    
      .icons{
        position: fixed;
        bottom: 30px;
        right: 20px;
      }
      
      .icons li{
        width: 50px;
        height: 50px;
        animation: i-cons 1s infinite ease-in-out;
      }
      
      .icons img{
        width: 100%;
      }

      .s-d{display: none;}

}



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

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

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

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

  .main-logo{
    position: absolute;
    /*right: 20px;*/
    left: 20px; 
    top: 15px;
    width: 75px;
  }

  .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: #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;
    }
  
    .content01{
      /*
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
      */
      text-align: center;
      width: 100%;
      color: #fffbee;
      height: 60vh;
    }
  
    #section1{
      width: 100%;
      height: 300px;
      background: url(../img/menu/m-bg.png) no-repeat;
      background-size: cover;
      position: relative;
  }

  .visual-title{
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-80%,50%);
    display: inline-block;
  }
  
  .visual-title span{
    font-size: 32px;
  }
  
  .visual-title p{
    text-align: left;
    font-size: 22px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
  }
  
  .small-main-text{
    font-size: 8px;
    margin-left: 10px;
    font-weight: 400;
    line-height: 12px;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
  }

  .menulist{
    font-size: 15px;
    font-weight: bold;
    color: #fffbee;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    height: 30px;
    position: relative;
    padding-top: 30px;
  }
  
  .menulist li{
    display: inline-block;
    margin-right: 50px;
  }
  
  .menulist li:last-child{
    margin-right: 0;
  }
  
  .menulist span{
    color: #ffc200;
  }

  #section3{
    margin-top: 100px;
  }

  .menu-title{
    width: 400px;
    margin: 100px auto 0px;
    text-align: center;
    color: #fff;
    font-size: 50px;
  }

  .menu-title img{
    width: 100%;
  }

  .menu-title p{
    margin-top: 20px;
    font-size: 30px;
  }

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

.golden-blue li{
  width: 45%;
    display: inline-block;
    margin-bottom: 50px;
}

.golden-blue li img{
  width: 100%;
}

.top-menu img{
  width: 100%;
}

.golden-blue h3{
    font-size: 10px;
    line-height: 21px;
    font-weight: bold;
}

.golden-blue h4{
    font-size: 10px;
    line-height: 18px;
    font-weight: 200;
    font-style: italic;
    color: #999999;
}

.golden-blue h1{
    font-size: 16px;
    line-height: 26px;
    font-style: italic;
    font-weight: 200;
}

.top-menu li{
  width: 24%;
}

.top-menu li img{
  width: 100%;
}

.one-set{
  width: 100%;
  text-align: center;
  position: relative;
}

.one-set img{
  width: 100%;
}

.one-set li {
  display: inline-block;
  margin-bottom: 20px;
}

.one-set h3{
  width: 150px ;
  font-size: 14px;
  margin-right: 0px;
  text-align: left;
  color: #fff;
}

.one-set h1{
  font-size: 14px;
  text-align: left;
  color: #fff;
}

.two-set{
  padding-left: 15px;
  margin-top: 30px;
}

.two-set span{
  font-size: 10px;
}

.bottom-menu{
  margin-top: 100px;
}

.bottom-menu h4{
  font-size: 18px;
  color: #fff;
  line-height: 26px;
}

.bottom-menu h1{
  font-size: 30px;
  color: #fff;
  line-height: 40px;
  font-weight: bold;
}

.bottom-menu h3{
  font-size: 18px;
  color: #fff;
  line-height: 40px;
}

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;
}


  .bg-img{
    width: 280px;
    height: 200px;
    background-image: url(../img/01.png);
    background-size: cover;
    position: absolute;
    top: -50px; left: calc(50% - 140px);
    transform: rotate(-150deg);
    overflow: hidden;
  }

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

  .bg-img2{
    width: 150px;
    height: 208px;
    background-image: url(../img/03.png);
    background-size: cover;
    position: absolute;
    top: 0px; left: calc(50% - 140px);
    transform: rotate(-45deg);
  }

  .bg-img5{
    display: none;
  }

  .bg-img6{
    display: none;
  }

  .bg-img8{
    width: 516px;
    height: 528px;
    background-image: url(../img/09.png);
    background-size: cover;
    position: absolute;
    top: -300px; right: 400px;
    transform: rotate(90deg);
  }

  .bg-img10{
    width: 300px;
    height: 261px;
    background-image: url(../img/11.png);
    background-size: cover;
    position: absolute;
    top: -100px; left:  0;
    transform: rotate(-90deg);
  }
  
  .bg-img11{
    display: none;
  }

  .bg-img12{
    width: 300px;
    height: 300px;
    background-image: url(../img/13.png);
    background-size: cover;
    position: absolute;
    bottom: 0px; left: 0px;
    transform: rotate(0deg);
    overflow: hidden;
    opacity: 0.2;
  }

  .bg-img13{
    width: 320px;
    height: 50px;
    background-image: url(../img/14.png);
    background-size: cover;
    position: absolute;
    top: -0px; left: calc(50% - 180px);
    transform: rotate(0deg);
    overflow: hidden;
    opacity: 0.2;
  }
    
    .bg-bird{
      position: absolute;
      top: -150px; left: 25%;
      opacity: 0.5;
      width: 77px;
    }

    .bg-bird img{
      width: 100%;
    }
  
    .icons{
      position: fixed;
      bottom: 30px;
      right: 20px;
    }
    
    .icons li{
      width: 50px;
      height: 50px;
      animation: i-cons 1s infinite ease-in-out;
    }
    
    .icons img{
      width: 100%;
    }

    .s-d{display: none;}

  
}



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

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

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

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

  header{
    width: 100%;
  }

  .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: 10px;
      /*left: 20px; */
      top: 10px;
      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;
    }
    

    .content01{
      /*
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
      */
      text-align: center;
      width: 100%;
      color: #fffbee;
      height: 60vh;
    }
  
    #section1{
      width: 100%;
      height: 300px;
      background: url(../img/menu/m-bg.png) no-repeat;
      background-size: cover;
      position: relative;
  }

  .visual-title{
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-80%,50%);
    display: inline-block;
  }
  
  .visual-title span{
    font-size: 32px;
  }
  
  .visual-title p{
    text-align: left;
    font-size: 22px;
    color: #ffffff;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
  }
  
  .small-main-text{
    font-size: 8px;
    margin-left: 10px;
    font-weight: 400;
    line-height: 12px;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
  }

  .menulist{
    font-size: 15px;
    font-weight: bold;
    color: #fffbee;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    height: 30px;
    position: relative;
    padding-top: 30px;
  }
  
  .menulist li{
    display: inline-block;
    margin-right: 50px;
  }
  
  .menulist li:last-child{
    margin-right: 0;
  }
  
  .menulist span{
    color: #ffc200;
  }

  #section3{
    margin-top: 100px;
  }

  .menu-title{
    width: 320px;
    margin: 100px auto 0px;
    text-align: center;
    color: #fff;
    font-size: 50px;
  }

  .menu-title img{
    width: 100%;
  }

  .menu-title p{
    margin-top: 20px;
    font-size: 30px;
  }

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

.golden-blue li{
  width: 45%;
    display: inline-block;
    margin-bottom: 50px;
}

.golden-blue li img{
  width: 100%;
}

.top-menu img{
  width: 100%;
}

.golden-blue h3{
    font-size: 10px;
    line-height: 21px;
    font-weight: normal;
    letter-spacing: -0.1rem;
}

.golden-blue h4{
    font-size: 10px;
    line-height: 18px;
    font-weight: 200;
    font-style: italic;
    color: #999999;
}

.golden-blue h1{
    font-size: 10px;
    line-height: 26px;
    font-style: italic;
    font-weight: 200;
}

.top-menu li{
  width: 24%;
}

.top-menu li img{
  width: 100%;
}

.one-set{
  width: 100%;
  text-align: center;
  position: relative;
}

.one-set img{
  width: 100%;
}

.one-set li {
  display: inline-block;
  margin-bottom: 20px;
}

.one-set h3{
  width: 150px ;
  font-size: 14px;
  margin-right: 0px;
  text-align: left;
  color: #fff;
}

.one-set h1{
  font-size: 14px;
  text-align: left;
  color: #fff;
}

.two-set{
  padding-left: 15px;
  margin-top: 30px;
}

.two-set span{
  font-size: 10px;
}

.bottom-menu{
  margin-top: 100px;
}

.bottom-menu h4{
  font-size: 18px;
  color: #fff;
  line-height: 26px;
}

.bottom-menu h1{
  font-size: 30px;
  color: #fff;
  line-height: 40px;
  font-weight: bold;
}

.bottom-menu h3{
  font-size: 18px;
  color: #fff;
  line-height: 40px;
}

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: 304px;
}

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

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

.yap{display: none;}
.s-d{display: block;}

  .bg-img{
    width: 200px;
    height: 143px;
    background-image: url(../img/01.png);
    background-size: cover;
    position: absolute;
    top: -50px; left: calc(50% - 140px);
    transform: rotate(-150deg);
    overflow: hidden;
  }

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

  .bg-img2{
    width: 150px;
    height: 208px;
    background-image: url(../img/03.png);
    background-size: cover;
    position: absolute;
    top: 0px; left: calc(50% - 140px);
    transform: rotate(-45deg);
  }

  .bg-img5{
    display: none;
  }

  .bg-img6{
    display: none;
  }

  .bg-img8{
    width: 516px;
    height: 528px;
    background-image: url(../img/09.png);
    background-size: cover;
    position: absolute;
    top: -300px; right: 400px;
    transform: rotate(90deg);
  }

  .bg-img10{
    width: 300px;
    height: 261px;
    background-image: url(../img/11.png);
    background-size: cover;
    position: absolute;
    top: -100px; left:  0;
    transform: rotate(-90deg);
  }
  
  .bg-img11{
    display: none;
  }

  .bg-img12{
    width: 300px;
    height: 300px;
    background-image: url(../img/13.png);
    background-size: cover;
    position: absolute;
    bottom: 0px; left: 0px;
    transform: rotate(0deg);
    overflow: hidden;
    opacity: 0.2;
  }

  .bg-img13{
    width: 320px;
    height: 50px;
    background-image: url(../img/14.png);
    background-size: cover;
    position: absolute;
    top: -0px; left: calc(50% - 180px);
    transform: rotate(0deg);
    overflow: hidden;
    opacity: 0.2;
  }
    
    .bg-bird{
      position: absolute;
      top: -150px; left: 25%;
      opacity: 0.5;
      width: 77px;
    }

    .bg-bird img{
      width: 100%;
    }
  
    .icons{
      position: fixed;
      bottom: 20px;
      right: 10px;
    }
    
    .icons li{
      width: 30px;
      height: 30px;
      animation: i-cons 1s infinite ease-in-out;
    }
    
    .icons img{
      width: 100%;
    }

  
}


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

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

  .golden-blue li{
    margin-bottom: 100px;
  }

}

@media all and (min-width:320px) and (max-width:458px){
  .golden-blue h3{
    font-size: 10px;
  }
}

@media all and (min-width:320px) and (max-width:343px){
  .golden-blue h4{
    display: none;
  }
}

@media all and (min-width:1024px) and (max-width:1342px){
  
  .menulist{
    font-size: 14px;
  }

  .menulist li{
    margin-right: 20px;
  }

}
