/*subPage header*/
#j_header {
  background: #000;
}
.subSection {
  margin-top: 6.25rem;
}
.subTit h2 {
  padding: 8rem 0;
  text-align: center;
}

@media screen and (max-width: 63.75rem) {
  .subTit h2 {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 45rem) {
  .subSection {
    margin-top: 5rem;
  }
  .subTit h2 {
    padding: 2.5rem 0;
    font-size: 2.1875rem;
  }
}

/* 공통 */
.sub_content {
  padding-bottom: 8rem;
}

/* menu page */
.menu_slide_wrap {
  overflow: hidden;
  margin-bottom: 120px;
}

.menu_slide_wrap .menu_slide_01 {
  margin-bottom: 0.625rem;
  position: relative;
}

.menu_slide_wrap .menu_slide_01 .swiper-button-prev,
.menu_slide_wrap .menu_slide_01 .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: auto;
  padding: 0.625rem;
  border-radius: 50%;
}

.menu_slide_wrap .menu_slide_01 .swiper-button-prev {
  left: 20px;
}

.menu_slide_wrap .menu_slide_01 .swiper-button-next {
  right: 20px;
}

.menu_slide_wrap .menu_slide_02 .swiper-slide:not(.swiper-slide-thumb-active) {
  opacity: 0.7;
}

.menu_slide_wrap .swiper-slide {
  background: #000;
}

.menu_slide_wrap .swiper-slide img {
  width: 100%;
}

@media screen and (max-width: 760px) {
  .menu_slide_wrap {
    margin-bottom: 50px;
  }
  .menu_slide_wrap .menu_slide_01 .swiper-button-prev,
  .menu_slide_wrap .menu_slide_01 .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}

.menu_nav_wrap.is_fixed {
  margin-top: 0;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
}

.menu_nav {
  width: 100%;
}

.menu_nav ul {
  display: flex;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.menu_nav button {
  background: none;
  border: none;
  font-size: 1rem;
  padding: 10px 20px;
  cursor: pointer;
}

.menu_nav .active {
  font-weight: bold;
  color: #ef2c2c;
  border-bottom: 2px solid #ef2c2c;
}

@media screen and (max-width: 760px) {
  .menu_nav_wrap.is_fixed {
    top: 80px;
  }

  .menu_nav ul {
    gap: 0;
  }

  .menu_nav button {
    padding: 5px;
  }
}

.menu_tab_content .menu_sub {
  margin-bottom: 80px;
}

.menu_tab_content .menu_sub:last-child {
  margin-bottom: 0;
}

.menu_tab_content h2 {
  text-align: center;
  font-weight: bold;
  margin: 50px 0;
  font-size: 3rem;
}

.menu_tab_content h3 {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.menu_tab_content h3:last-child{
  margin-bottom: 0;
}

.menu_tab_content h5 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.menu_item_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
  gap: 8px;
}


.menu_item_title .label {
  font-size: 1.25rem;
  color: #666;
  white-space: nowrap;
}

.menu_item_title .dots {
  flex-grow: 1;
  height: 1px;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.3;
  margin: 0 8px;
}

.menu_tab_content .menu_item {
  margin-bottom: 30px;
}

.menu_tab_content p {
  word-break: keep-all;
}

.menu_tab_content p.desc {
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.menu_tabs {
  position: relative;
  width: 100%;
  transition: height 0.3s ease;
  overflow: hidden;
}

.menu_tab_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu_tab_content.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media screen and (max-width: 760px) {
  .menu_tab_content h2 {
    margin: 30px 0;
    font-size: 2.5rem;
  }

  .menu_tab_content .menu_sub {
    margin-bottom: 50px;
  }

  .menu_tab_content h3 {
    font-size: 1.6rem;
  }

  .menu_item_title{
    flex-wrap: wrap;
  }

  .menu_item_title .label{
    font-size: 1rem;
  }
}

.br_m{display: none;}

@media screen and (max-width: 760px) {
	.br_m{display: inline;}
}