.main-wrap{
    position: relative;
    width:100%;
    max-width: 1200px;
    height:auto;
    margin: 0 auto;
    margin-top: -100px;
    z-index: 100;
    background-color: white;
    margin-bottom: 20px;
  }

.title{
  width:100%;
  text-align: center;
}
  
.title h2{
  display: inline-block;
  margin-top:30px;
}
  

.content{
  margin-top: 50px;
  width:100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

/* 메인 사진 */
.picture-section{
    width:100%;
    height:50vh;
    z-index: 1;
}

.picture-title{
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  background-color: rgba(0,0,0,0.5);
  position: relative;
}

.picture-title div{
  position: absolute;
  width:100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.picture-title h2{
  color: #f6f6f6;
  font-size: 3rem;
}

.picture-title p{
  color: #aaa;
  font-size: 1.2rem;
}

/* 표 */


#app_td1{
    background-color: #f6f6f6;
    font-weight: bold;
}

.app_td2{
    background-color: #f6f6f6;
    font-weight: bold;
}

/* 안내 */
.guide-title{
    display: block;
    padding: 30px 15px;
    margin-top: 30px;
}

.guide-information{
    padding-left: 15px;
    font-size: 0.8rem;
}

/* 실시간 예약 */

.foot-reservation{
    width: 100%;
    height: 100px;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.live{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding:10px 25px;
    border-radius: 5px;
    color: #aaa;
    transition: 0.3s;
    background-color:rgb(249, 123, 45);
    color: white;
}

.live:hover{
    background-color:rgb(249, 104, 13);
}