/*********************************************
미디어 리스트
**********************************************/
.sub._list_page.event {
    padding-top: 10px;
    padding-bottom: 160px;
  }
  .sub._list_page.event .tab-box {
    display: flex;
    align-items: center;
  }
  .sub._list_page.event .tab-box button {
    margin-right: 40px;
    padding: 12px 0;
    transition: all 0.3s;
  }
  .sub._list_page.event .tab-box button:last-child {
    margin-right: 0;
  }
  .sub._list_page.event .tab-box button span {
    color: #4B4B4B;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s;
  }
  .sub._list_page.event .tab-box button.on {
    padding: 12px 20px;
    border-radius: 50px;
    background-color: #000;
  }
  .sub._list_page.event .tab-box button.on span {
    color: #fff;
  }
  .sub._list_page.event .list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 16px;
    margin-bottom: 60px;
  }
  .sub._list_page.event .list li a {
    position: relative;
    transition: all 0.6s ease-in-out;
    border-radius: 20px;
  }
  .sub._list_page.event .list li a .img-box {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
  }
  .sub._list_page.event .list li a .img-box img {
    transition: all 0.6s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sub._list_page.event .list li a .txt-box {
    border-radius: 0 0 16px 16px;
    border: 1px solid #E2E2E2;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    min-height: 100px;
  }
  .sub._list_page.event .list li a .txt-box em {
    font-size: 20px;
    letter-spacing: -0.01em;
    line-height: 28px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .sub._list_page.event .list li a .txt-box small {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #888888;
  }
  .sub._list_page.event .list li.end .img-box img {
    filter: grayscale(1);
  }

  /* 호버효과 pc 에서만 */
  @media screen and (min-width: 1024px) {
    /* .sub._list_page.event ul li:hover a {
      box-shadow: rgba(0, 0, 0, 0.2) 0px 14px 28px, rgba(0, 0, 0, 0.1) 0px 10px 10px;
    } */
    /* .sub._list_page.event ul li:hover .txt-box {
      border-color: transparent;
    } */
    .sub._list_page.event ul li:hover .img-box img {
      transform: translate(-50%, -50%) scale(1.1);
    }
  }
  @media screen and (max-width: 1024px) {
    .sub._list_page.event .list {
      grid-template-columns: repeat(2, 1fr);
    }
    .sub._list_page.event .list li a .txt-box em {
      font-size: 18px;
    }
    .sub._list_page.event .list li a .txt-box small {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 780px) {
    .sub._list_page.event {
      padding-top: 8px;
      padding-bottom: 100px;
    }
    .sub._list_page.event .tab-box {
      justify-content: center;
    }
    .sub._list_page.event .tab-box button {
      margin-right: 24px;
    }
    .sub._list_page.event .tab-box button.on {
      padding: 10px 16px;
    }
    .sub._list_page.event .tab-box button span {
      font-size: 14px;
    }
    .sub._list_page.event .list {
      grid-template-columns: repeat(1, 1fr);
      max-width: 400px;
      margin: 0 auto;
      margin-top: 20px;
      gap: 16px;
      margin-bottom: 40px;
    }
    .sub._list_page.event .list li a .txt-box {
      height: auto;
      padding: 16px;
    }
    .sub._list_page.event .list li a .txt-box em {
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 4px;
    }
    .sub._list_page.event .list li a .txt-box small {
      font-size: 14px;
      line-height: 22px;
    }
  }
/* 페이지 네이션 */
.sub .pagenation {
    display: flex;
    justify-content: center;
  }
  .sub .pagenation .arrow a {
    width: 30px;
    height: 30px;
    background-color: #000;
    filter: invert(1);
    border-radius: 100%;
    transition: all 0.3s;
    display: block;
    border: 1px solid #fff;
  }
  .sub .pagenation .prev a {
    background-image: url(../images/icon/prev.png);  background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .sub .pagenation .prev a#first{ background-image: url(/asset/img/common/pagination_first.svg);  background-size: cover; display: none; }
  .sub .pagenation .prev.none a {
    pointer-events: none;
    background: #ddd url(../images/icon/prev.png);
    background-position: center;background-repeat: no-repeat; background-size: 24px;
    filter: none;
  }
  .sub .pagenation .next a {
    background-image: url(../images/icon/next.png);  background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .sub .pagenation .next a#last{ background-image: url(/asset/img/common/pagination_last.svg); background-size: cover; display: none; }
  .sub .pagenation .next.none a {
    filter: none;
    background: #ddd url(../images/icon/next.png);
    background-position: center;background-repeat: no-repeat; background-size: 24px;
    pointer-events: none;
  }

  .sub .pagenation .arrow a:hover{
    filter: invert(0);
  }
  .sub .pagenation ul {
    display: flex;
    padding: 0 12px;
  }
  .sub .pagenation ul li a {
    height: 24px;
    line-height: 24px;
    text-align: center;
    padding: 0 12px;
    color: #A8A8A8;
    font-size: 20px;
    font-weight: 400;
  }
  .sub .pagenation ul li.on a {
    color: #000;
    pointer-events: none;
    font-weight: 700;
  }

  @media screen and (max-width: 768px){
    .sub .pagenation ul li a{
        font-size: 16px;
    }
  }


/*********************************************
미디어 뷰
**********************************************/

.sub._view {
  padding: 100px 0;
}
.sub._view .top {
  padding: 40px 0;
  margin-bottom: 20px;
  border-top: 2px solid #242424;
}
.sub._view .top h4 {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}
.sub._view .top small {
  display: block;
  margin-top: 12px;
  color: #888;
  font-size: 24px;
  font-weight: 500;
}

.sub._view .attach{ display: flex; font-size: 16px; margin-bottom: 40px; display: none; }
.sub._view .attach span{ font-weight: 700; padding: 10px 0; box-sizing: border-box; display: inline-block; }
.sub._view .attach a{ text-decoration: underline; text-underline-position: under; padding: 10px; box-sizing: border-box; display: inline-block; }

.sub._view .contents{ font-size: 24px; line-height: 1.4; font-weight: 500; text-align: center;  }
.sub._view .contents img{width: auto; max-width: 100%; /*  height: 100% !important; */ /* display: block; */ padding-bottom: 20px;}

.sub._view .contents .view-text {line-height: 1.6;}

.sub._view .contents h1,
.sub._view .contents h2,
.sub._view .contents h3,
.sub._view .contents h4,
.sub._view .contents h5,
.sub._view .contents h6,
.sub._view .contents b,
.sub._view .contents strong{ font-weight: 700; }


.sub._view .con img.test {
  margin-bottom: 40px;
}
.sub._view .con p.test {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .sub._view .top h4 {
    font-size: 32px;
    line-height: 1.4;
  }
  .sub._view .top small {
    font-size: 20px;
    line-height: 1.4;
  }
  .sub._view .contents{ font-size: 20px; }
}
@media screen and (max-width: 768px) {
  .sub._view {
    padding-bottom: 100px;
  }
  .sub._view .top {
    padding: 16px 0;
    margin-bottom: 8px;
  }
  .sub._view .top h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .sub._view .top small {
    font-size: 14px;
    line-height: 24px;
    margin-top: 4px;
  }
  .sub._view .contents {
    min-height: 300px;
    font-size: 14px;
  }
  .sub._view .contents .view-text {line-height: 1.4;}

  .sub._view .sub-btn {
    margin-top: 40px;
  }
}

.sub-btn {
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  width: 180px;
  height: 48px;
  padding: 13px 40px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}
.sub-btn::after {
  content: '';
  display: block;
  position: absolute;
  height: calc(100% + 20px);
  background-color: #000;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 0;
  transition: all 0.6s;
  z-index: -1;
}
.sub-btn::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  border: 1px solid #242424;
  box-sizing: border-box;
  top: 0;
  left: 0;
  z-index: -1;
}
.sub-btn span {
  color: #121212;
  font-weight: 600;
  transition: all 0.6s;
}
.sub-btn:hover::after {
  width: calc(100% + 20px);
}
.sub-btn:hover span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sub-btn {
    width: 140px;
    height: 40px;
  }
  .sub-btn span {
    font-size: 14px;
  }
}





/*********************************************
MENU
*********************************************/
/* 탭 */
.main-list-wrapper{/* margin-bottom: 150px; *//*  padding-bottom: 150px; */}
.main-list-tab {margin-top: 80px; margin-bottom: 40px; }
.main-list-tab-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
	/* border: 1px solid #b3b3b3; */
}
.main-list-tab-list li {
	position: relative;
	/* margin: 1.5rem 3.7rem;  */
  padding: 0 10px;
}
.main-list-tab-list li a {
	font-size: 24px;
	padding: 10px 10px;
	border-radius: 35px;
	line-height: 1.3;
	/* letter-spacing: -0.04em; */
  font-family: "Anton", sans-serif; letter-spacing: 1px;
	font-weight: 400;
	color: #000;
	/* opacity: 0.5; */
	transition: var(--transition-custom);
	transition-property: opacity;
	position: relative;
  border: 2px solid transparent;
}
.main-list-tab-list li a::before{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -20px;
	width: 2px;
	height: 20px;
	background-color: #b3b3b3;
}
.main-list-tab-list li:first-child a::before {
	content: none;
}
.main-list-tab-list li.on a {
	background-color: #fff;
  border: 2px solid #000;
	color: #000;
}
.main-list-tab-list li a:hover {
	opacity: 1;
}

/* .menu-ul{margin:0;padding:0;width:960px;margin:0 auto;*zoom:1;margin-bottom:40px;}
.menu-ul:after{content:""; display:block; clear:both;}
.menu-ul li{float:left;background:url(../img/common/menu_bar.png) left center no-repeat;padding-top:3px;padding-bottom:2px;}
.menu-ul li.first{background:none;}
.menu-ul li a{display:block;height:17px;overflow:hidden;text-indent:-9999px;} */
/* .menu-ul li .menu-li1{width:253px;background:url(../img/common/menu1.png) center 0 no-repeat;}
.menu-ul li .menu-li2{width:338px;background:url(../img/common/menu2.png) center 0 no-repeat;}
.menu-ul li .menu-li3{width:177px;background:url(../img/common/menu3.png) center 0 no-repeat;}
.menu-ul li .menu-li4{width:192px;background:url(../img/common/menu4.png) center 0 no-repeat;} */
/* .menu-ul li a.active, .menu-ul li a:hover{background-position:center -17px;} */

@media all and (max-width: 800px) {	
	/* 탭 */
  .main-list-tab-list{
    gap: 10px;
  }
	.main-list-tab-list li {
		margin: 0;
		text-align: center;
    padding: 0 5px;
	}
	/* .sub-main-tab-list li:before{
		margin-top: -0.25rem; 
		right: -3.25rem; 
		width: 0.5rem; 
		height: 0.5rem;
	} */
	.main-list-tab-list li a {
		font-size: 16px;
		line-height: 1.3;
    padding: 5px;
	}
  .main-list-tab-list li a::before{
    left: -15px;
  }
	/* .main-list-tab-list li a:before {
		bottom: -1.2rem;
		height: 0.2rem;
	} */
}

/* 탭 컨텐트 */
.tab_content{background-color: #fffbea; padding-bottom: 150px;}

.tab_content .main-list-list{
  display: flex;
  justify-content: center; /* 중앙 정렬 */
  flex-wrap: wrap; /* 줄 바꿈 가능 */
  flex-direction: column;
  gap: 20px;
  font-family: "Anton", sans-serif;
}
.tab_content .main-list-list .main-list-item{
  /* flex: 1 1 calc(33.33% - 20px);  */
}
.tab_content .main-list-list .text-box .tit_cont{
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tab_content .main-list-list .text-box .tit_cont .tit{
  font-size: 30px;
  color: #9a0400;
  font-weight: bold;
  letter-spacing: 1px;
}

.tab_content .main-list-list .text-box .tit_cont .price{
  font-size: 13px;
  background-color: #9a0400;
  color: #FFF;
  padding:  6px ;
  border-radius: 100%;
}

.tab_content .main-list-list .text-box .tit_cont .grande{
  width: 100%;
  max-width: 50px;
}

.tab_content .main-list-list .text-box .tit_cont .grande img{
  width: 100%;
}

.tab_content .main-list-list .text-box .descript .area{
  /* font-family: "Anton", sans-serif; */
  font-size: 16px;
  color: #494949;
  text-align: center;
  word-break: keep-all;
  padding: 0 45px;
  /* font-weight: bold; */
}


@media screen and (max-width:960px) {
  .tab_content .main-list-list{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  
  .tab_content .main-list-list .text-box .tit_cont{
    gap: 6px;
  }

  .tab_content .main-list-list .text-box .tit_cont .tit{
    font-size: 16px;
  }

  .tab_content .main-list-list .text-box .tit_cont .price{
    font-size: 12px;
    padding: 3px;
  }

  .tab_content .main-list-list .text-box .descript .area{
    font-size: 14px;
  }
}


/* 탭 컨텐트 */



/* 이미지 롤링*/

/* .menu-image-box{ background:#060504 url(../img/common/menu_img_bg.png) center 0 no-repeat; height:529px;text-align:center;position:relative; margin-bottom: 20px;}
.menu-image-box img{display:none;position:absolute;left:50%;margin-left:-600px;}
.menu-image-box img.active{display:inline-block;}
.menu-content-wrap{text-align:center;}
.menu-content{display:none;}
.menu-content.active{display:inline-block;} */

.menu-image-box{text-align:center;position:relative; margin-bottom: 20px;}
.menu-content-wrap{text-align:center; margin-bottom: 40px;}

.menu-image-box .thum-cont{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  overflow: hidden;
}

.menu-image-box .thum-cont .swiper-container{
  aspect-ratio: 1200/529;

}

.menu-image-box .thum-cont .swiper-container .swiper-pagination-bullet{
  background: #000;
  opacity: 0.3;
}

.menu-image-box .thum-cont .swiper-container .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

.menu-image-box .thum-cont img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 메뉴 컨텐츠 */
.menu-content .txt-box .tit-kor{
  display: block;
  color: #494949;
  font-size: 25px;
  font-weight: 700;
  padding-top: 12px;
  /* line-height: 44px; */
}

.menu-content .txt-box .tit-eng {
  /* background: #fff; */
  color: #000;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 0 5px;
  /* border: 3px solid #000; */
  margin: 10px 0 6px;
}

.menu-content .txt-box .price {
color: #494949;
font-size: 20px;
font-weight: 700;
}

.menu-content .txt-box .price > small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  border-radius: 3px;
  padding: 0 4px;
  margin-right: 8px;
}

.menu-content .txt-box .price > .m small span {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  transform: translateY(1px);
}

.menu-content .txt-box .price > .m {
  display: inline-flex;
  align-items: center;
}
.menu-content .txt-box .price > .m small {
  padding: 0 4px;
  margin-right: 4px;
  background-color: #E70017;
  border-radius: 4px;

}


/* 지점 예약 */
.reservation{
  margin-top: 100px;
}
.reservation textarea {
  font-family: "Noto Sans KR","맑은 고딕", sans-serif;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
  resize: none;
}

.reservation_formTop {
  width: 1280px;
  margin: 0 auto 60px;
}

.reservation_formTop h2 {
  font-size: 36px;
  color: #333;
  line-height: 50px;
  font-weight: 900;
}


  .reservation_form {width:1280px; margin:0 auto 150px; border-top:2px solid #333;}
  .reservation_form .form__row {display:flex; border-bottom:1px solid #ddd; padding:20px; align-items:center;}
  .reservation_form .form__row:last-child {display:flex; justify-content:center; margin-top:50px; border-bottom:0;}
  .reservation_form .agreeCheck {border-bottom:0;flex-direction: column;align-items: flex-start;padding: 20px 0;}
  .reservation_form .agreeCheck .modal_title{font-size: 26px; color: #333; font-weight: 900; margin-bottom: 10px;}
  .reservation_form .agreeCheck > div{width: 100%; height: 147px;border-top: 2px solid #333;overflow-y: scroll;margin-bottom: 20px;padding: 20px;border-bottom: 1px solid #ddd;}
  .reservation_form .agreeCheck input[type="checkbox"] {display:none;}
  .reservation_form .agreeCheck input[type="checkbox"]:checked+label::after {background: url(../images/icon/checkBox.jpg) no-repeat center; border: 0;}
  .reservation_form .agreeCheck label {position: relative; padding-left: 30px; cursor: pointer; color:#666; font-weight:400; transform:skew(0.028deg);}
  .reservation_form .agreeCheck label::after {content: ''; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border: 1px solid #ddd;}
  .reservation_form .agreeCheck span {margin-left:5px; color:#333; text-decoration:underline; font-weight:700; transform:skew(0.028deg);}
  .reservation_form .form__row:last-child button,
  .reservation_form .form__row:last-child input[type="submit"] {font-family: "Noto Sans KR","맑은 고딕", sans-serif; width:220px; height:70px; border:0; box-shadow:none; font-size:18px;}
  .reservation_form .form__row:last-child button {margin-right:10px; border:2px solid #ddd; background:transparent; color:#666; position:relative; overflow:hidden;  transition:0.3s ease-in-out;}
  .reservation_form .form__row:last-child button::after {content:''; position:absolute; width:100%; height:100%; background:#333; transition:0.3s cubic-bezier(0.33, 0.01, 0, 0.37); top:100%; left:0; z-index:-1;}
  .reservation_form .form__row:last-child button:hover {color:#fff;}
  .reservation_form .form__row:last-child button:hover::after {top:0;}
  .reservation_form .form__row:last-child input[type="submit"] {background:#790400; color:#fff;}
  .reservation_form .form__row .column:first-child {width:20%;}
  .reservation_form .form__row .column:first-child p {color:#333; font-weight:600; transform:skew(1deg);}
  .reservation_form .form__row .column:first-child .required {margin-left:5px; color:#790400; }
  .reservation_form .form__row .column:nth-of-type(2) {display:flex; align-items:center;}
  .reservation_form .form__row.division .column > div{display:flex; align-items:center;}
  .reservation_form .form__row.division .column > div.radioCont{display:block; /* width: 200px; */ margin-right: 50px;}
  .reservation_form .form__row.division .column > div.radioCont label {margin-right: 0;}
  .reservation_form .form__row.division .column input[type="radio"] {display:none;}
  .reservation_form .form__row.division .column label {padding-left:25px; position:relative; cursor:pointer; margin-right:50px; transform:skew(1deg); color:#666; display: block;}
  .reservation_form .form__row.division.resCount .column label{margin-right: 10px; padding-left: 0; margin-bottom: 0;}
  .reservation_form .form__row.division.resCount .column {color: #666;}
  .reservation_form .form__row.division .column label::after {content:''; position:absolute; top:45%; transform:translateY(-50%); left:0; width:20px; height:20px; border-radius:50%; box-sizing:border-box; border:1px solid #ddd;}
  .reservation_form .form__row.division.resCount .column label::after{content: none;}
  .reservation_form .form__row.division .column input[type="radio"]:checked + label::after {border:7px solid #790400;}   
  .reservation_form .form__row.division .column input[type="checkbox"]{display: none;} 
  .reservation_form .form__row.division .column input[type="checkbox"]:checked + label::after {border:7px solid #790400;}
  .reservation_form .form__row input[type="text"],
  .reservation_form .form__row textarea,
  .reservation_form .form__row select {border:1px solid #ddd; height:45px; min-width:150px; padding-left:10px; margin-right:5px; font-size:16px; color:#666;}
  .reservation_form .form__row.division.resCount input[type="text"] {min-width: auto; max-width: 100px; width: 100%;}
  .reservation_form .form__row.division.resCount  span.blank{padding: 0 10px;}
  .reservation_form .form__row input[type="text"]:focus,
  .reservation_form .form__row textarea:focus,
  .reservation_form .form__row select:focus {outline:1px solid #790400;}
  .reservation_form .form__row span {margin-right:5px;}
  .reservation_form .form__row.text input[type="text"] {width:420px;}
  .reservation_form .form__row.mobile input[type="text"] {max-width:100px; min-width:0;}
  .reservation_form .form__row.mobile input[type="text"] + input[type="text"] {min-width: 316px;}
  .reservation_form .form__row.email input[type="text"] {width:200px;}
  .reservation_form .form__row.email select {width:150px;}
  .reservation_form .form__row.type select:first-child {width:200px;}
  .reservation_form .form__row.type select:nth-of-type(2) {width:150px;}
  .reservation_form .form__row.inquiries .column:nth-of-type(2) {width:80%;}
  .reservation_form .form__row.inquiries .column:nth-of-type(2) textarea {height:150px;}
  .reservation_form .form__row .br-block{display: none;}


  /* 추가 */
  .reservation_form .form__row.division .column > div.catering{display: none;}

  .reservation_form .form__row input[type="date"] {font-family: "Noto Sans KR","맑은 고딕", sans-serif; position:relative; padding:14px; width:150px; height:30px; font-size:16px; color:#444; border:none; border-bottom:1px solid #e0e0e0;}
  .reservation_form .form__row input[type="date"]::-webkit-calendar-picker-indicator {position:absolute; top:0; left:0; right:0; bottom:0; width:auto; height:auto; color:transparent; background:transparent;}
  .reservation_form .form__row input[type="date"].has-value::before {content:attr(data-placeholder); width:100%; position: absolute; background-color: #fff;}


  .reservation_form .form__row input[type="time"] {font-family: "Noto Sans KR","맑은 고딕", sans-serif; position:relative; padding:14px; width:150px; height:30px; font-size:18px; color:#444; border:none; border-bottom:1px solid #e0e0e0;}
  .reservation_form .form__row input[type="time"]::-webkit-calendar-picker-indicator {position:absolute; top:0; left:0; right:0; bottom:0; width:auto; height:auto; color:transparent; background:transparent;}
  .reservation_form .form__row input[type="time"].has-value::before {content:attr(data-placeholder); width:100%;}

  @media screen and (max-width: 1440px) {
      .reservation_formTop {
          width: 100%;
          max-width: 90%;
          margin: 0 auto 50px;
      }

      .reservation_form {width:100%; max-width:90%;margin:0 auto 50px;}
      
  }

  @media screen and (max-width: 1024px) {
      .reservation_formTop h2 {
          font-size: 28px;
      }

      .reservation_form .form__row {flex-direction:column; align-items:flex-start; padding: 20px 0;}
      .reservation_form .form__row .column:first-child {margin-bottom:20px; width: 100%;}
      .reservation_form .form__row span {margin: 0;}
      .reservation_form .agreeCheck label {margin-bottom:10px;}
      .reservation_form .form__row:last-child {flex-direction: row;}
  }

  @media screen and (max-width: 768px) {
      .reservation{
        margin-top: 50px;
      }
      .reservation_form .agreeCheck .modal_title{
          font-size: 20px;
      }

      .reservation_form .agreeCheck > div{
          padding: 20px 10px;
      }
      .reservation_form .form__row.division .column label {/* width:30%; */width:auto; margin-bottom:10px; /* margin-right: 12px; */}
      .reservation_form .form__row.inquiries .column:nth-of-type(2){width:100%;}
      .reservation_form .form__row .column {flex-wrap:wrap; width:100%;}



      .reservation_form .form__row.mobile .column {flex-wrap:nowrap;}
      
      .reservation_form .form__row.email input[type="text"] {width:45%; min-width:0; }
      .reservation_form .form__row.mobile input[type="text"] {width:29%;}
      .reservation_form .form__row span {margin-right:5px;}
      .reservation_form .form__row.email select {width:100%; margin-top:10px;}
      .reservation_form .form__row:last-child {flex-direction: column; margin-top: 30px;}
      .reservation_form .form__row:last-child button {margin-right:0;}
      .reservation_form .form__row:last-child button,
      .reservation_form .form__row:last-child input[type="submit"] {width:100%; font-size: 15px; height: 50px;}
      .reservation_form .form__row:last-child input[type="submit"] {order:1; margin-bottom:10px;}
      .reservation_form .form__row:last-child button {order:2;}


      /* 추가 */
      .reservation_form .form__row.division.resCount .column{gap: 10px;}
      .reservation_form .form__row.division.resCount  span.blank{display: none;}
      .reservation_form .form__row.division.resCount input[type="text"] {max-width: none; width: 70%;}

  }
  @media screen and (max-width:480px){
    .reservation_form .form__row .br-block{display: block;}
  }

/* 지점 예약 */