* {
  box-sizing: border-box;
}
.w1440 {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}
.w1300 {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
.logobox {
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-50%);
}
::-webkit-scrollbar {
  width: 6px;
    height: 6px;
  transition: 0.3s;
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #9a9a9a;
  height: 100px;
  transition: 0.3s;
}
::-webkit-scrollbar-track {
  border-radius: 5px;
  box-shadow: inset 0 0 10px rgb(0 0 0 / 25%);
}
::selection {
  background-color: #f2e9e9;
  color: #000;
}

/*매장 상세보기 스와이퍼*/
.swiper {
    max-width: 220px;
    width: 100%;
    height: 250px;
    margin: 0;
}

.swiper-slide {
    max-width: 220px;
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 600;
}
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}
.swiper-button-prev {
    left: 5px;
}
.swiper-button-next {
    right: 5px;
}
.swiper-pagination-bullet-active {
    background: #ae101e;
}
/*.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -15px;
}*/
/*매장 상세보기 스와이퍼*/

/*모달 팝업창 css*/
#modal.modal-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}
#modal .modal-window {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0px 10px 0 rgba(49, 39, 6, 0.37);
  backdrop-filter: blur(13.5px);
  -webkit-backdrop-filter: blur(13.5px);
  border-radius: 10px;
  border: 2px solid #ae101e;
  max-width: 600px;
    width: 90%;
  height: auto;
  position: relative;
  padding: 10px;
}
/* 2021-08-31 by momochii   */
#modal .modal-window .content img {
  max-width: 100%;
}
#modal .close-area {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline;
  cursor: pointer;
  text-shadow: 1px 1px 2px gray;
  color: #616161;
}

#modal .content {
  text-align: center;
  /*margin-top: 30px;*/
  margin-top: 35px;
  color: #313131;
  margin-bottom: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 650px;
  padding: 0 10px;
  word-break: break-all;
}
#modal .content p {
    margin-top: 10px;
}
#modal .content::-webkit-scrollbar {
  width: 5px;
}
#modal .content::-webkit-scrollbar-thumb {
/*  background-color: #cccccc;*/
  height: 20px;
}
#modal .content-webkit-scrollbar-track {
  background-color: #fcedeb;
}
.checkbox_wrap {
  text-align: right;
  padding-right: 20px;
  padding-top: 5px;
  border-top: 1px solid #ae101e;
}

/*pc 헤더*/
.header_wrap {
  height: 100px;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999; 
}

header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  position: relative;
}
header img.logo {
  width: 130px;
  margin-right: 20px;
}
header ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 852px;
  width: 100%;
  /* margin-top: 40px; */
  margin: 40px auto 0;
}

header ul li {
  display: inline-block;
  cursor: pointer;
}
header ul li a {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 600;
  /* color: #464646; */
  color: #000;
  transition: all 0.3s;
}

header ul li.active a {
  color: #ae101e;
  font-weight: 800;
}
header ul li:hover a {
  color: #ae101e;
}

/*mo헤더*/
header.mo {
  display: none;
  overflow: hidden;
}
header.mo .fl_between {
  align-items: center;
  justify-content: space-between;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
}
header.mo .hamburger {
  cursor: pointer;
}
header.mo .hamburger span {
  display: block;
  height: 3px;
  width: 30px;
  background-color: #ae101e;
  margin-bottom: 5px;
  border-radius: 30px;
}
header.mo .hamburger span:last-child {
  margin-bottom: 0;
}
header.mo ul {
  width: 320px;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 40px;
  padding: 40px 20px;
  right: -320px;
  background-color: #ae101e;
  z-index: 999;
  /*    transform: translateX(-300px);*/
  /*    transition: all 800ms cubic-bezier(.8, 0, .33, 1);*/
  /*    overflow: hidden;*/
}
/*header.mo ul.nav-open {
    transition: all 800ms cubic-bezier(.8, 0, .33, 1);
    transform: translateX(0px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}*/
header.mo ul li {
  margin-bottom: 25px;
  display: block;
  transition: all 0.3s;
}
header.mo ul li:last-child {
  margin-bottom: 0;
}
header.mo ul li a {
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 6px;
}
header.mo ul li.active,
header.mo ul li:hover {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  padding: 10px;
}

/*헤더 반응형*/
@media all and (max-width: 765px) {
  header.pc {
    display: none;
  }
  header.mo {
    display: flex;
  }
  .header_wrap {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
  }
}

/*푸터*/
.footer_wrap {
  width: 100%;
  padding: 50px 10px;
  position: relative;
  bottom: 0;
  left: 0;
  background-color: #eeeeee;
}
footer {
  width: 100%;
  margin: 0 auto;
}
footer .fl_row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
footer .fl_row img {
  margin-right: 30px;
  width: 150px;
}
footer p {
  font-size: 16px;
  font-weight: 400;
  /* color: #191919; */
  color: #000;
  line-height: 22px;
}
footer p b {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
footer p.copy {
  text-align: center;
  margin-top: 30px;
}

body {
  background: url("../img/common/bg_img.jpg") no-repeat top center #fdfdfd;
}
.content_box {
  min-height: calc(100vh - 348px);
/*  margin: 100px auto 120px;*/
  margin: 200px auto 120px;
    position: relative;
}
/*타이틀*/
.content_box h1.title {
  font-size: 42px;
  font-weight: 600;
  /* color: #191919; */
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
.content_box h1.title2 {
    letter-spacing: 1px;
  font-size: 32px;
  font-weight: 600;
  /* color: #191919; */
  color: #000;
  text-align: left;
    line-height: 1.2;
  margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
}
/*.content_box span.deco_line2 {
  display: inline-block;
  max-width: 50px;
  width: 100%;
  height: 2px;
  background-color: #cccccc;
  margin: 0 0 50px;
}*/
/*탭메뉴*/
.content_box nav .tab_menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 80px;
  flex-wrap: wrap;
}
.content_box.franching nav .tab_menu li a {
    padding: 10px 10px 0;
}
.content_box nav .tab_menu li a {
  max-width: 170px;
  /*min-width: 120px;*/
  /*    min-width: 150px;*/
  word-break: keep-all;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  width: 100%;
  height: 100%;
  padding-top: 10px;
  padding: 10px 20px 0;
  display: inline-block;
  text-align: center;
    line-height: 1.4;
  transition: all 0.3s;
  border-top: 4px solid rgba(174, 16, 30, 0);
}
.content_box nav .tab_menu li {
  border-top: 1px solid #cccccc;
  margin-bottom: 20px;
}
.content_box nav .tab_menu li a:hover,
.content_box nav .tab_menu li a.active {
  border-top: 4px solid #ae101e;
  color: #ae101e;
}

/*탭메뉴 반응형*/

@media all and (max-width: 1100px) {
  .content_box h1.title {
    font-size: 28px;
  }
  .content_box nav .tab_menu li a {
    font-size: 16px;
  }
  header img.logo {
    width: 90px;
  }
  .header_wrap {
    height: 80px;
  }
}
@media all and (max-width: 765px) {
  .content_box nav .tab_menu {
    flex-direction: column;
    width: 100%;
    /*    display: none;*/
    /* overflow-y: scroll; */
    height: auto;
    /* overflow-x: hidden; */
    padding: 10px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .content_box nav .tab_menu li {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .content_box nav .tab_menu li:last-child {
    border-bottom: 1px solid #cccccc;
  }
  .content_box nav .tab_menu li a {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    padding: 10px;
  }

  /*.content_box nav .tab_menu.pc {
        display: none;
    }
    .content_box nav .tab_menu.mo {
        display: block;
    }*/
    .submenu{
      top: 0 !important;
    }
}

/*스토어*/
.content_box.store .fl_wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.content_box.store .shop_con {
  width: calc(25% - 30px);
  margin-right: 40px;
  /*width: calc(25% - 60px);
    margin-right: 80px;*/
  margin-bottom: 40px;
}

/*.content_box.store .shop_con:nth-child(4),
.content_box.store .shop_con:nth-child(8),
.content_box.store .shop_con:last-child {
  margin-right: 0;
}*/
.content_box.store .shop_con:nth-child(4n) {
  margin-right: 0;
}
.content_box.store .shop_con .img_box {
  max-width: 240px;
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  margin: 0 auto;
  transition: all 0.3s;
}
/*.content_box.store .img_box2 {
  max-width: 220px;
  width: 100%;
  height: 220px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}
.content_box.store .img_box2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/
/*.content_box.store .shop_con .img_box span.name_hover {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  width: 190px;
  word-break: keep-all;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
  z-index: 2;
}*/
.content_box.store .shop_con .img_box span.name_hover {
  color: #ffffff;
    font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  width: 190px;
  word-break: keep-all;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
  z-index: 2;
}
.content_box.store .shop_con .img_box a:hover span.name_hover {
  opacity: 1;
}
.content_box.store .shop_con .img_box a {
  position: relative;
    /*display: block;*/
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.content_box.store .shop_con .img_box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content_box.store .shop_con .img_box a::after {
  content: "";
  width: 100%;
  height: 100%;
  /*    transform: translateY(-330px);*/
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  background-color: rgba(25, 25, 25, 0.8);
  display: block;
  transition: all 0.3s;
  z-index: 1;
  border-radius: 20px;
}
.content_box.store .shop_con .img_box a:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}
.content_box.store .shop_con .img_box a:hover::after {
  /*    transform: translateY(0px);*/
  opacity: 1;
}
.content_box.store .shop_con .store_info_txt {
  max-width: 240px;
  margin: 20px auto 0;
}
.content_box.store .shop_con p.name {
  /*margin-top: 20px;*/
  font-weight: 500;
  font-size: 20px;
  /* color: #191919; */
  color: #000;
  text-align: center;
  word-break: keep-all;
  font-family: "Poppins", serif;
  line-height: 1.4;
}
.content_box.store .shop_con p.address {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #191919;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  word-break: break-all;
  font-family: "Merriweather", serif;
  line-height: 1.2;
}
.content_box.store p.address::before {
  content: url("../img/common/marker.svg");
  display: inline-block;
  margin-right: 5px;
}
.content_box.detail p.address::before {
  content: url("../img/common/marker.svg");
  display: inline-block;
  margin-right: 10px;
  margin-top: 3px;
}
.content_box.store .shop_con p.tel {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #191919;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-family: "Merriweather", serif;
}
.content_box.store p.tel::before {
  content: url("../img/common/tel.svg");
  display: inline-block;
  margin-right: 5px;
}
.content_box.detail p.tel::before {
  content: url("../img/common/tel.svg");
  display: inline-block;
  margin-right: 10px;
  margin-top: 3px;
}
.content_box.store .fl_row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 50px;
}
.content_box.store .menu_mo {
/*    max-width: 500px;*/
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.16);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 10;
}
.content_box.store .menu_mo .over_scroll {
    overflow: auto;
     width: 100%;
    height: 100%;
    max-height: 600px;
}
@media all and (max-height:900px) {
    .content_box.store .menu_mo .over_scroll {
        max-height: 450px;
    }
}
.content_box.store .menu_mo span.x_btn {
    background: url("../img/common/menu_x.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.content_box.store .menu_mo img {
    width: 100%;
    min-width: 600px;
    height: 100%;
}
.content_box.store .store_txt {
  margin-left: 40px;
}
.content_box.store .store_txt p {
  font-size: 20px;
  /*font-family: "Merriweather", serif;*/
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  /* color: #191919; */
  color: #000;
  padding: 8px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 1.4;
  word-break: break-all;
}
.content_box.store .page {
    margin-top: 30px;
}
.content_box.store .page a.go {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    /* color: #333; */
    color: #000;
    font-weight: 500;
    margin-right: 20px;
    text-decoration: underline;
    transition: all 0.3s;
}
.content_box.store .page a.go:hover {
    text-shadow: 1px 1px 2px #ae101e;
    color: #000;
}
.content_box.store .page a.go:last-child {
    margin-right: 0;
}
.content_box.store button.menu_view {
    display: block;
    border: 1px solid #ae101e;
    border-radius: 5px;
    background-color: #fff;
    color: #ae101e;
    font-size: 16px;
    font-weight: 500;
    height: 35px;
    padding: 0 20px;
    transition: all 0.3s;
    margin-top: 20px;
    cursor: pointer;
}
.content_box.store button.menu_view:hover {
    background-color: #ae101e;
    color: #fff;
}
.content_box.store .store_txt .time_wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 10px;
}
.content_box.store .store_txt .time_wrap::before {
  content: url("../img/common/time.svg");
  display: inline-block;
  margin-right: 10px;
  margin-top: 3px;
}
.content_box.store .store_txt ul li {
  font-size: 18px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  color: #191919;
  padding: 5px 0;
}
.content_box.store .map_wrap {
  width: 100%;
  overflow: hidden;
  height: 350px;
  border-radius: 10px;
}
.content_box.store button.back {
  border: none;
  background-color: #ae101e;
  border-radius: 5px;
  padding: 0 20px;
  height: 35px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.content_box.store .btn_wrap {
  text-align: right;
  margin-top: 20px;
}
.content_box.store button.back:hover {
  background-color: #98101c;
}

/*브랜드*/
.content_box span.deco_line {
  display: block;
  max-width: 615px;
  width: 90%;
  height: 2px;
  background-color: #cccccc;
  /*    margin: 0 auto 80px;*/
  margin: 0 auto 120px;
}
.content_box.brand .fl_row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
.content_box.brand .fl_row2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content_box.brand .fl_row:last-child {
  margin-bottom: 0;
}
.content_box.brand .fl_row .img_box {
  max-width: 720px;
  width: 100%;
}
.content_box.brand .fl_row2 .img_box2 {
  max-width: 436px;
  width: 100%;
  margin-right: 40px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
}
.content_box.brand .fl_row .mr {
  margin-right: 50px;
}
.content_box.brand .fl_row .img_box img {
  max-width: 100%;
  max-height: 100%;
}
.content_box.brand .fl_row2 .img_box2 img {
  max-width: 90%;
  max-height: 90%;
}
.content_box.brand .left_info {
/*  margin-bottom: 40px;*/
}
.content_box.brand .left_info p.txt1 {
  font-size: 30px;
  font-weight: 700;
  /* color: #191919; */
  color: #000;
  margin-bottom: 15px;
}
.content_box.brand .left_info p.txt2 {
  font-size: 18px;
  font-weight: 500;
  /* color: #191919; */
  color: #000;
  margin-bottom: 35px;
}
.content_box.brand .left_info p.txt3 {
  font-size: 20px;
  font-weight: 400;
  /* color: #191919; */
  color: #000;
  font-family: "Poppins", serif;
  margin-bottom: 10px;
}
.content_box.brand .left_info p.txt3 a {
  color: #ae101e;
  text-decoration: underline;
  font-weight: 600;
}
.content_box.brand .fl_row p.txt {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  /* color: #333333; */
  color: #000;
  font-weight: 500;
  max-width: 700px;
  width: 100%;
  margin-top: 10px;
  line-height: 34px;
}
.content_box.brand .fl_row p.txt span.blue {
  font-family: "Noto Sans KR", sans-serif;
  display: block;
  font-size: 40px;
  font-weight: 600;
  color: #114898;
  margin-bottom: 30px;
}
.content_box.brand .fl_row:last-child p.txt span.blue {
  text-align: right;
}
.content_box.brand .fl_row p.txt b {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
}

/*프랜차이징*/
/*탭1*/
.content_box.franching .fl_wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 100%;
}
.content_box.franching .fl_wrap .left_box {
  margin-right: 20px;
  max-width: 450px;
  width: 100%;
}
.content_box.franching .fl_wrap .left_box .red_tit {
  font-size: 24px;
  color: #ae101e;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
/*.content_box.franching .fl_wrap .left_box .red_tit b {
  font-size: 20px;
  color: #ae101e;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 600;
  margin-right: 15px;
}*/
.content_box.franching .fl_wrap .left_box .info_txt {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  /* color: #555555; */
  color: #000;
  margin-bottom: 50px;
  line-height: 1.6;
  margin-left: 10px;
  word-break: break-all;
}
.content_box.franching .fl_wrap .left_box .info_txt:last-child {
  margin-bottom: 0;
}


.content_box.franching .fl_wrap .right_box {
  max-width: 500px;
  width: 100%;
}
.content_box.franching .fl_wrap .right_box ul li {
    border-left: 2px solid #ae101e;
    margin-bottom: 50px;
}
.content_box.franching .fl_wrap .right_box ul li:last-child {
    margin-bottom: 0;
}
.content_box.franching .fl_wrap .right_box .red_tit2 {
  font-size: 24px;
  color: #ae101e;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
    margin-left: 30px;
}
/*.content_box.franching .fl_wrap .right_box .red_tit2 b {
  font-size: 30px;
  color: #ae101e;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 600;
  margin-right: 15px;
}*/
.content_box.franching .fl_wrap .right_box ul li .info_txt {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  /* color: #555555; */
  color: #000;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /*padding-left: 30px;
  margin-left: 20px;*/
  /*border-left: 2px solid #ae101e;*/
  /*padding-bottom: 60px;*/
    margin-left: 30px;
  line-height: 1.6;
}
.content_box.franching .fl_wrap .right_box ul li:last-child .info_txt {
  border-left: none;
  padding-bottom: 0;
}

/*탭2*/
.content_box.franching .table_wrap {
    overflow-x: auto;
    padding-bottom: 10px;
}
.content_box.franching .table_wrap table {
    min-width: 550px;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-bottom: 1px solid #555555;
}
.content_box.franching .table_wrap table tr {
  border-bottom: 1px solid #cccccc;
}
.content_box.franching .table_wrap table tr:first-child {
  border-top: 2px solid #555555;
  border-bottom: 1px solid #555555;
}
.content_box.franching .table_wrap table tr.head {
  border-top: 2px solid #555555;
  border-bottom: 1px solid #ccc;
}
.content_box.franching .table_wrap table tr:last-child {
  border: none;
}
.content_box.franching .table_wrap table tr th {
  font-weight: 700;
  color: #ae101e;
  font-size: 16px;
  padding: 15px;
  word-break: break-all;
  line-height: 1.2;
  vertical-align: middle;
}
.content_box.franching .table_wrap table tr th:first-child {
  text-align: left;
}
.content_box.franching .table_wrap table tr td:first-child {
  padding: 5px 10px 5px 30px;
}
.content_box.franching .table_wrap table tr td {
  padding: 5px 10px;
  font-weight: 400;
  /* color: #222222; */
  color: #000;
  font-size: 16px;
  vertical-align: middle;
  min-height: 50px;
  height: 50px;
  text-align: center;
  word-break: break-all;
  line-height: 1.3;
}
.content_box.franching .table_wrap table tr.sample {
  border-bottom: 1px solid #555555;
}
.content_box.franching .table_wrap table tr.sample td {
  min-height: 50px;
  height: 35px;
  padding: 5px 10px;
  text-align: center !important;
  color: #ae101e;
}

.content_box.franching .table_wrap table tr td span.small {
  font-size: 10px;
  color: #222222;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}
.content_box.franching .table_wrap table tr td:first-child {
  text-align: left;
}
.content_box.franching .table_wrap table tr td p.row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.content_box.franching .table_wrap table tr td p.row span.lay {
    display: inline-block;
    width: 60px;
}
.content_box.franching .table_wrap table tr td p.row b {
  font-weight: 600;
    width: 80px;
  margin-right: 10px;
}
.content_box.franching .table_wrap .bot_txt {
  border-bottom: 1px solid #cccccc;
  padding: 15px 30px;
  font-weight: 400;
  /* color: #222222; */
  color: #000;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
}

/*컨택트*/
.content_box.contact p.top_txt {
  /*font-family: "Poppins", serif;*/
/*  font-family: "Noto Sans KR", sans-serif;*/
  font-size: 18px;
  font-weight: 400;
  /* color: #191919; */
  color: #000;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}
.content_box.contact .form_box {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.16);
  padding: 40px 50px;
  margin-bottom: 100px;
  background-color: #fff;
}
.content_box.contact .form_box .ask_sec {
  margin-bottom: 30px;
}
.content_box.contact .form_box .ask_sec span.ask {
  display: block;
  font-size: 18px;
  font-weight: 700;
  /* color: #191919; */
  color: #000;
  margin-bottom: 10px;
}
.content_box.contact .form_box .ask_sec .row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content_box.contact .form_box .ask_sec input::placeholder,
.content_box.contact .form_box .ask_sec textarea::placeholder {
  font-size: 16px;
  color: #aaaaaa;
  font-weight: 400;
}
.content_box.contact .form_box .ask_sec input.in1 {
  width: calc(100% / 2 - 20px);
  height: 40px;
  border: 1px solid #aaaaaa;
  background-color: #fff;
  font-size: 16px;
  /* color: #191919; */
  color: #000;
  font-weight: 400;
  padding: 0 10px;
  outline: none;
}
.content_box.contact .form_box .ask_sec select:focus,
.content_box.contact .form_box .ask_sec textarea:focus,
.content_box.contact .form_box .ask_sec input.in1:focus,
.content_box.contact .form_box .ask_sec input.in2:focus {
  border: 1px solid #ae101e;
}
.content_box.contact .form_box .ask_sec select,
.content_box.contact .form_box .ask_sec input.in2 {
  width: 100%;
  height: 40px;
  border: 1px solid #aaaaaa;
  background-color: #fff;
  font-size: 16px;
  /* color: #191919; */
  color: #000;
  font-weight: 400;
  padding: 0 10px;
  outline: none;
}
.content_box.contact .form_box .ask_sec .radio_box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.content_box.contact .form_box .ask_sec .radio_box label {
  font-size: 14px;
  font-weight: 500;
  /* color: #424242; */
  color: #000;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 30px;
  margin-bottom: 10px;
}
.content_box.contact .form_box .ask_sec .radio_box label input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.content_box.contact .form_box .ask_sec .radio_box label input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #aaaaaa;
}
.content_box.contact
  .form_box
  .ask_sec
  .radio_box
  label
  input[type="radio"]:checked {
  border: 6px solid #ae101e;
}
.content_box.contact .form_box .ask_sec textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #aaaaaa;
  background-color: #fff;
  font-size: 16px;
  color: #191919;
  font-weight: 400;
  padding: 10px;
  resize: vertical;
  outline: none;
}
.content_box.contact .form_box .btn {
  text-align: center;
}
.content_box.contact .form_box button.submit {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border: none;
  background-color: #ae101e;
  border-radius: 10px;
  height: 50px;
  width: 100px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: all 0.3s;
}
.content_box.contact .form_box button.submit:hover {
  background-color: #98101c;
}

.content_box.contact .fl_row {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.content_box.contact .fl_row .map {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  height: 300px;
  overflow: hidden;
  margin-right: 40px;
}
.content_box.contact .info_wrap p {
  font-size: 20px;
  font-family: "Poppins", serif;
  font-weight: 600;
  /* color: #191919; */
  color: #000;
  padding: 8px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.4;
  word-break: break-all;
}
.content_box.contact p.ltd {
  font-size: 30px;
/*  text-align: center;*/
  font-weight: 700;
  /* color: #191919; */
  color: #000;
  margin-bottom: 40px;
    padding: 0;
}
.content_box.contact p.address::before {
  content: url(../img/common/marker.svg);
  display: inline-block;
  margin-right: 10px;
  margin-top: 3px;
}
.content_box.contact p.tel::before {
  content: url(../img/common/tel.svg);
  display: inline-block;
  margin-right: 10px;
  margin-top: 3px;
}
.content_box.contact p.time::before {
  content: url(../img/common/time.svg);
  display: inline-block;
  margin-right: 10px;
  margin-top: 3px;
}

/*메뉴*/
.content_box.menu .fl_wrap {
  max-width: 1300px;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  border: 1px solid #ae101e;
  border-top: 4px solid #ae101e;
  border-bottom: 4px solid #ae101e;
  margin: 0 auto;
}
.content_box.menu .fl_wrap .left_sec {
  width: 250px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid #ae101e;
}
.content_box.menu .fl_wrap .left_sec .fl_col {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  padding: 40px 25px;
}
.content_box.menu .fl_wrap .left_sec .top {
  /*padding: 0 25px;
    margin-top: 40px;*/
  text-align: center;
}
.content_box.menu .fl_wrap .left_sec h2 {
  width: 100%;
  padding: 15px 0;
  font-weight: 700;
  color: #fff;
  background-color: #ae101e;
  font-size: 40px;
  font-family: "Merriweather", serif;
  text-align: center;
}
.content_box.menu .fl_wrap .left_sec .top .logo {
  height: 100px;
  margin: 0 auto 40px;
}
.content_box.menu .fl_wrap .left_sec .top .sec_box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}
.content_box.menu .fl_wrap .left_sec .top .sec_box:last-child {
  margin-bottom: 0;
}
.content_box.menu .fl_wrap .left_sec .top .sec_box p.red {
  font-size: 28px;
  font-weight: 700;
  color: #ae101e;
  padding: 10px 0;
}
.content_box.menu .fl_wrap .left_sec .top .sec_box p.small {
  font-size: 16px;
  font-weight: 400;
  color: #424242;
}
.content_box.menu .fl_wrap .right_sec {
  width: 1050px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*    align-items: flex-start;*/
  justify-content: flex-start;
  flex-wrap: wrap;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li {
  width: calc(100% / 2);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /*    height: 300px;*/
  height: auto;
  padding: 20px;
  border-right: 1px solid #ae101e;
  border-bottom: 1px solid #ae101e;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li.mo_sec {
  width: 100%;
  border-right: none;
  height: auto;
  padding: 20px 30px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li.none_menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li.none_menu img {
  width: 50%;
  opacity: 0.2;
}
/*.content_box.menu .fl_wrap .right_sec ul.chicken_list li:nth-child(10),
.content_box.menu .fl_wrap .right_sec ul.chicken_list li:nth-child(8),
.content_box.menu .fl_wrap .right_sec ul.chicken_list li:nth-child(6),
.content_box.menu .fl_wrap .right_sec ul.chicken_list li:nth-child(4),
.content_box.menu .fl_wrap .right_sec ul.chicken_list li:nth-child(2) {
    border-right: none;
}*/
.content_box.menu .fl_wrap .right_sec ul.chicken_list li:nth-child(even) {
  border-right: none;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li .img_wrap {
  max-width: 220px;
  height: 200px;
  border-radius: 15px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  object-fit: cover;
  margin-right: 20px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li .fl_col {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  /*    height: 180px;*/
  height: auto;
  max-width: 240px;
  width: 100%;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li .tit_wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li .tit_wrap img {
  margin-left: 5px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.c_name {
  font-weight: 700;
  font-size: 30px;
  /* color: #191919; */
  color: #000;
  /*    margin-bottom: 10px;*/
  position: relative;
  display: inline-block;
  letter-spacing: -1px;
}
/*.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.c_name.hot1::after {
    content: url("/img/common/hot1.svg");
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    right: -15px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.c_name.hot2::after {
    content: url("/img/common/hot2.svg");
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    right: -26px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.c_name.hot3::after {
    content: url("/img/common/hot3.svg");
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    right: -36px;
}*/
.content_box.menu .fl_wrap .right_sec ul.chicken_list li span.small {
  display: block;
  font-weight: 400;
  font-size: 16px;
  /* color: #191919; */
  color: #000;
  line-height: 1.4;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li span.red_small {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 18px;
  color: #ae101e;
  line-height: 1.2;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.red_num {
  margin-bottom: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.red_num span {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ae101e;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.red_num:last-child {
  margin-bottom: 0;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.red_num b {
  font-size: 28px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.black_num {
  margin-bottom: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*    flex-wrap: wrap;*/
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.black_num.start {
  align-items: flex-start;
  justify-content: flex-start;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.black_num span {
  font-size: 16px;
  font-weight: 600;
  color: #ae101e;
}
.content_box.menu
  .fl_wrap
  .right_sec
  ul.chicken_list
  li
  p.black_num
  span.size_wrap {
  width: 100%;
  margin-left: 10px;
}
.content_box.menu
  .fl_wrap
  .right_sec
  ul.chicken_list
  li
  p.black_num
  span.mo_dot {
  width: 100%;
  display: inline-block;
  height: 12px;
  border-bottom: 2px dotted #ae101e;
  margin: 0 10px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.black_num span b {
  font-size: 20px;
  font-weight: 700;
}

.content_box.menu
  .fl_wrap
  .right_sec
  ul.chicken_list
  li
  p.black_num
  span.between {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*    width: 310px;*/
  width: 100%;
}
.content_box.menu
  .fl_wrap
  .right_sec
  ul.chicken_list
  li
  p.black_num
  span.small_bot {
  display: block;
  font-size: 12px;
  color: #191919;
  font-weight: 400;
  /*margin-top: -10px;
    margin-bottom: 15px;*/
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li span.small_txt {
  display: block;
  font-size: 12px;
  /* color: #191919; */
  color: #000;
  font-weight: 400;
  margin-top: -20px;
  margin-bottom: 5px;
  line-height: 1.2;
}
.content_box.menu
  .fl_wrap
  .right_sec
  ul.chicken_list
  li
  p.black_num
  span.left_txt {
  font-size: 16px;
  font-weight: 700;
  /* color: #191919; */
  color: #000;
  white-space: nowrap;
  padding-top: 2px;
}
.content_box.menu
  .fl_wrap
  .right_sec
  ul.chicken_list
  li
  p.black_num:last-child {
  margin-bottom: 0;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li .col {
  width: 100%;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.black_num span.size {
  font-size: 14px;
  font-weight: 600;
  color: #191919;
}
.content_box.menu
  .fl_wrap
  .right_sec
  ul.chicken_list
  li
  p.black_num
  span.between:first-child {
  margin-bottom: 10px;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li.bot_txt {
  width: 100%;
  justify-content: center;
  height: auto;
  padding: 20px;
  border: none;
}
.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.bot_txt {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  /* color: #191919; */
  line-height: 1.4;
}
.content_box.menu p.pick {
  max-width: 1300px;
  width: 100%;
  font-size: 16px;
  color: #ae101e;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  position: relative;
  margin: 28px auto 0;
}
.content_box.menu p.pick::after {
  content: "chickochicken.ca";
  display: inline-block;
  font-size: 16px;
  /* color: #191919; */
  color: #000;
  font-weight: 700;
  position: absolute;
  right: 0px;
  top: 0;
}

@media all and (max-width: 1440px) {
  .content_box.menu .fl_wrap .left_sec {
    width: 200px;
  }
  .content_box.menu .fl_wrap .left_sec h2 {
    font-size: 30px;
  }
  .content_box.menu .fl_wrap .left_sec .top .logo {
    height: 80px;
  }
  .content_box.menu .fl_wrap .left_sec .fl_col {
    padding: 30px 10px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box p.red {
    font-size: 20px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box span.small {
    font-size: 14px;
  }
  .content_box.menu .fl_wrap .right_sec {
    width: 1100px;
  }
}
@media all and (max-width: 1260px) {
  .content_box.menu .fl_wrap {
    flex-direction: column;
  }
  .content_box.menu .fl_wrap .left_sec {
    width: 100%;
    border: none;
  }
  .content_box.menu .fl_wrap .left_sec .fl_col {
    flex-direction: row;
    padding: 10px 20px;
    width: 100%;
    border-bottom: 1px solid #ae101e;
  }
  .content_box.menu .fl_wrap .left_sec .top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .content_box.menu .fl_wrap .left_sec .top .logo {
    margin: 0;
    height: 60px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box {
    margin: 0 30px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box img {
    width: 20px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box:last-child {
    margin: 0;
  }
  .content_box.menu .fl_wrap .left_sec .fl_col img.qr {
    width: 65px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box p.red {
    font-size: 16px;
    padding: 3px 0;
  }
  .content_box.menu .fl_wrap .right_sec {
    width: 100%;
  }
}
@media all and (max-width: 1100px) {
    .content_box {
        margin: 160px auto 120px;
    }
  .content_box.store .shop_con {
    width: calc(33.33333% - 27px);
  }
    .content_box.store .shop_con:nth-child(4n) {
      margin-right: 40px;
    }
    .content_box.store .shop_con:nth-child(3n) {
      margin-right: 0px;
    }
  /*.content_box.store .shop_con:nth-child(4),
  .content_box.store .shop_con:nth-child(8) {
    margin-right: 40px;
  }*/
  /*.content_box.store .shop_con:nth-child(3),
  .content_box.store .shop_con:nth-child(6),
  .content_box.store .shop_con:nth-child(9) {
    margin-right: 0;
  }*/
  .content_box.store .shop_con .img_box {
    height: 250px;
  }
  .content_box.store .shop_con .img_box span.name_hover {
    font-size: 18px;
    line-height: 26px;
  }
  .content_box.store .shop_con p.name {
    font-size: 16px;
  }
  .content_box.store .shop_con p.tel,
  .content_box.store .shop_con p.address {
    font-size: 14px;
  }

  .content_box span.deco_line {
    margin: 0 auto 50px;
  }
  .content_box.brand .fl_row p.txt b {
    font-size: 18px;
  }
  .content_box.brand .fl_row p.txt {
    font-size: 14px;
    line-height: 24px;
  }
  .content_box.brand .fl_row p.txt span.blue {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .content_box.franching .table_wrap table tr th {
    font-size: 14px;
    padding: 10px 5px;
  }
  .content_box.franching .table_wrap table tr td {
    font-size: 13px;
    padding: 5px;
  }
  .content_box.franching .table_wrap .bot_txt {
    font-size: 13px;
  }
  .content_box.franching .table_wrap table tr td p.row {
    flex-direction: column;
    margin-bottom: 10px;
  }
  .content_box.franching .table_wrap table tr td p.row:last-child {
    margin-bottom: 0;
  }
  .content_box.franching .table_wrap table tr td p.row b {
    margin-right: 0;
  }

  .content_box.brand .fl_row2 {
    flex-direction: column;
    justify-content: normal;
  }
  .content_box.brand .fl_row2 .img_box2 {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .content_box.contact p.top_txt {
    font-size: 16px;
  }
  
  .content_box.contact .info_wrap p {
    font-size: 15px;
  }
    .content_box.contact p.ltd {
        font-size: 22px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li {
    padding: 10px;
    /*        height: 200px;*/
    justify-content: center;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li .fl_col {
    height: 130px;
    max-width: 200px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li .img_wrap {
    max-width: 150px;
    height: 150px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li.mo_sec {
    padding: 20px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li p.c_name {
    font-size: 20px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li span.small {
    font-size: 14px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li p.red_num span {
    font-size: 16px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li p.red_num b {
    font-size: 20px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li span.red_small {
    font-size: 14px;
  }
  .content_box.menu p.pick {
    text-align: left;
    font-size: 14px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li p.bot_txt {
    font-size: 14px;
  }
}

@media all and (max-width: 765px) {
  .content_box {
    margin: 140px auto 80px;
  }

  .content_box.store .shop_con {
    width: calc(50% - 20px);
  }
    .content_box.store .shop_con {
      margin-right: 30px;
    }
    .content_box.store .shop_con:nth-child(even) {
      margin-right: 0px;
    }
  /*.content_box.store .shop_con:nth-child(2),
  .content_box.store .shop_con:nth-child(4),
  .content_box.store .shop_con:nth-child(8),
  .content_box.store .shop_con:nth-child(10) {
    margin-right: 0;
  }
  .content_box.store .shop_con:nth-child(1),
  .content_box.store .shop_con:nth-child(3),
  .content_box.store .shop_con:nth-child(5),
  .content_box.store .shop_con:nth-child(7),
  .content_box.store .shop_con:nth-child(9),
  .content_box.store .shop_con:nth-child(11) {
    margin-right: 30px;
  }*/
  .content_box.store .shop_con .img_box {
    height: 200px;
    max-width: unset;
  }
  .footer_wrap {
    padding: 30px 10px;
  }
  footer p {
    font-size: 14px;
  }
  footer p b {
    font-size: 16px;
  }
  header.mo .logo {
    height: 50px;
  }

  .content_box.brand .fl_row {
    flex-direction: column;
    justify-content: normal;
  }
  .content_box.brand .fl_row .mr {
    margin-right: 0;
  }
  .content_box.brand .fl_row:last-child p.txt {
    order: 2;
  }
  .content_box.brand .fl_row:last-child p.txt span.blue {
    text-align: left;
  }
  .content_box.brand .fl_row:last-child .img_box {
    order: 1;
  }

  .content_box.franching .fl_wrap .left_box .red_tit b {
    font-size: 18px;
  }
  .content_box.franching .fl_wrap .left_box .red_tit {
    font-size: 16px;
  }
  .content_box.franching .fl_wrap .left_box .info_txt {
    font-size: 13px;
  }
  .content_box.franching .fl_wrap {
    flex-direction: column;
  }
  .content_box.franching .fl_wrap .left_box {
    margin-right: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }
  .content_box.franching .fl_wrap .right_box {
    max-width: 100%;
  }
  .content_box.franching .fl_wrap .right_box .red_tit2 b {
    font-size: 24px;
  }
  .content_box.franching .fl_wrap .left_box .red_tit {
    font-size: 16px;
  }
  .content_box.franching .fl_wrap .right_box ul li .info_txt {
    font-size: 13px;
    padding-bottom: 40px;
    margin-left: 12px;
  }
  .content_box.store .store_txt p {
    font-size: 16px;
  }
  .content_box.store .store_txt ul li {
    font-size: 14px;
  }
  .content_box.store .store_txt {
    margin-left: 30px;
  }
  .content_box.contact .fl_row {
    flex-direction: column;
    justify-content: normal;
      align-items: center;
  }
  .content_box.contact .fl_row .map {
    margin-right: 0;
    margin-bottom: 30px;
    height: 200px;
  }
  .content_box.contact .form_box {
    margin-bottom: 60px;
    padding: 30px;
  }
  .content_box.contact .form_box .ask_sec span.ask {
    font-size: 16px;
  }
  .content_box.contact .form_box button.submit {
    font-size: 16px;
  }
  .content_box.contact p.ltd {
    margin-bottom: 10px;
  }
  .content_box.contact .form_box .ask_sec input.in1 {
    width: calc(100% / 2 - 10px);
    font-size: 14px;
  }
  .content_box.contact .form_box .ask_sec textarea::placeholder,
  .content_box.contact .form_box .ask_sec select::placeholder,
  .content_box.contact .form_box .ask_sec input.in2::placeholder,
  .content_box.contact .form_box .ask_sec input.in1::placeholder,
  .content_box.contact .form_box .ask_sec textarea,
  .content_box.contact .form_box .ask_sec select,
  .content_box.contact .form_box .ask_sec input.in2 {
    font-size: 14px;
  }
  .content_box.contact .form_box .ask_sec .radio_box label {
    margin-right: 15px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li {
    flex-direction: column;
    height: auto;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li .img_wrap {
    margin-right: 0;
    margin-bottom: 10px;
    max-width: 220px;
  }
  .content_box.menu p.pick::after {
    display: block;
    position: unset;
    margin-top: 5px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li p.red_num {
    margin-bottom: 5px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li span.small {
    font-size: 12px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li p.c_name {
    margin-bottom: 5px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li span.red_small {
    margin-bottom: 0;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list {
    align-items: normal;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li .fl_col {
    justify-content: flex-start;
    height: auto;
  }
  .content_box.menu .fl_wrap .left_sec h2 {
    font-size: 25px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box p.red {
    font-size: 14px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box span.small {
    font-size: 12px;
  }
  .content_box.menu .fl_wrap .left_sec .top .logo {
    height: 45px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box img {
    width: 16px;
  }
  .content_box.menu .fl_wrap .left_sec .fl_col {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
  }
  .content_box.menu .fl_wrap .left_sec .fl_col img.qr {
    width: 50px;
    margin-top: 10px;
  }
    .content_box.store .menu_mo {
        padding: 35px 15px 15px;
    }
    .content_box.store .menu_mo span.x_btn {
        right: 15px;
        top: 10px;
    }
    .content_box h1.title2 {
        font-size: 25px;
    }
    .content_box.store .store_txt p {
        font-size: 18px;
    }
}

@media (max-width:1273px) {
  .logobox {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%,-50%);
    width: 50px;
}
  .logobox img {
    width: 100% !important;
  }
}

@media all and (max-width: 600px) {
  .content_box.store .fl_row {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .content_box.store .store_txt {
    margin-left: 0;
    margin-top: 20px;
    width: 90%;
  }
  .content_box.store .img_box2 {
    max-width: 180px;
    height: 180px;
  }
  .content_box.store .store_txt p {
    padding: 5px 0;
  }
  .content_box span.deco_line2 {
    margin: 0 auto 30px;
    display: block;
  }
  .content_box h1.title2 {
    text-align: center;
      margin-bottom: 20px;
  }
  .content_box.store .map_wrap {
    height: 300px;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list {
    flex-direction: column;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li {
    width: 100%;
    border-right: none;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li .col {
    width: 100%;
  }
  .content_box.menu .fl_wrap .right_sec ul.chicken_list li.mo_sec {
    padding: 10px;
  }
  /*.content_box.menu .fl_wrap .right_sec ul.chicken_list li p.black_num span.mo_dot {
        display: none;
    }*/

  /* 0224 주석처리 */
  /* .content_box.menu .fl_wrap .right_sec ul.chicken_list li p.black_num.start {
    flex-direction: column;
  }
  .content_box.menu
    .fl_wrap
    .right_sec
    ul.chicken_list
    li
    p.black_num.start
    > span {
    width: 100%;
  }
  .content_box.menu
    .fl_wrap
    .right_sec
    ul.chicken_list
    li
    p.black_num
    span.size_wrap {
    margin-left: 0;
  }
  .content_box.menu
    .fl_wrap
    .right_sec
    ul.chicken_list
    li
    p.black_num
    span.between {
    width: 100%;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box {
    margin: 0 10px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box p.red {
    font-size: 12px;
  }
  .content_box.menu .fl_wrap .left_sec .top .sec_box span.small {
    font-size: 10px;
  } */
}

@media all and (max-width: 440px) {
  .content_box.store .shop_con {
    width: 100%;
    margin-right: 0 !important;
  }
  footer .fl_row {
    flex-direction: column;
    align-items: center;
  }
  footer .fl_row img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .content_box.store .shop_con .store_info_txt {
    width: 100%;
  }

  .content_box.brand .fl_row p.txt {
    font-size: 12px;
  }
  .content_box.brand .fl_row p.txt b {
    font-size: 16px;
  }

  .content_box.brand .left_info p.txt1 {
    font-size: 7vw;
  }
  .content_box.brand .left_info p.txt2 {
    font-size: 4vw;
    margin-bottom: 25px;
  }
  .content_box.brand .left_info p.txt3 {
    font-size: 4.5vw;
  }
  .content_box.contact p.ltd {
    font-size: 20px;
    line-height: 1.2;
  }
  .content_box.contact .form_box .ask_sec input.in1 {
    width: calc(100% / 2 - 5px);
  }
}
