.main-container {
  /* max-width: 1920px; */
  width: 100%;
    min-width: 1280px;
    position: relative;
    overflow: hidden;
  margin: 0 auto;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-container {
  width: calc(100% - 50px);
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

:root {
  --black: #333;
  --white: #fff;
  --white2: rgba(255, 255, 255, 0.5);
  --orange: #ff9028;
  --gray: #e8e8e8;
  --red: #ed1b23;
  --red2: #d4000b;
  --footer: rgba(103, 103, 103, 0.5);
  --gray2: #999999;
  --gray3: #fafafa;
  --gray4: #676767;
  --gray5: #b3b3b3;
  --pink: #fd978a;
  --pink2: #fff2f3;
  --beige: #f8efe7;

  --fs12: 1.2rem;
  --fs13: 1.3rem;
  --fs14: 1.4rem;
  --fs16: 1.6rem;
  --fs18: 1.8rem;
  --fs20: 2rem;
  --fs22: 2.2rem;
  --fs24: 2.4rem;
  --fs32: 3.2rem;
  --fs36: 3.6rem;
}

/* color */
.whi {
  color: var(--white);
}
.whi2 {
  color: var(--white2);
}
.bgwhi {
  background-color: var(--white);
}
.bgbk {
  background-color: var(--black);
}
.gray {
  color: var(--gray);
}
.gray2 {
  color: var(--gray2);
}
.gray3 {
  color: var(--gray3);
}
.bggray3 {
  background-color: var(--gray3);
}
.red {
  color: var(--red);
}
.bgred {
  background-color: var(--red);
}
.bei {
  color: var(--beige);
}
.bgbei {
  background-color: var(--beige);
}
/* font-size */

.fs16 {
  font-size: 1.6rem;
}
.fs20 {
  font-size: 2rem;
}
.fs24 {
  font-size: 2.4rem;
}
.fs26 {
  font-size: 2.6rem;
}
.fs30 {
  font-size: 3rem;
}
.fs32 {
  font-size: var(--fs32);
}
.fs36 {
  font-size: var(--fs36);
}
.fs40 {
  font-size: 4rem;
}
.fs45 {
  font-size: 4.5rem;
}
/* text-weight */
.fw400 {
  font-weight: 400;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.fwbold {
  font-weight: bold;
}
.txcenter {
  text-align: center;
}

/* margin */
.mr3 {
  margin-right: 0.3rem;
}
.mr5 {
  margin-right: 0.5rem;
}
.mr10 {
  margin-right: 1rem;
}
.mr20 {
  margin-right: 2rem;
}
.mr40 {
  margin-right: 4rem;
}

.ml3 {
  margin-left: 0.3rem;
}
.ml5 {
  margin-left: 0.5rem;
}
.ml10 {
  margin-left: 1rem;
}
.ml20 {
  margin-left: 2rem;
}
.ml30 {
  margin-left: 3rem;
}
.ml40 {
  margin-left: 4rem;
}

.mt5 {
  margin-top: 0.5rem;
}
.mt8 {
  margin-top: 0.8rem;
}
.mt10 {
  margin-top: 1rem;
}
.mt12 {
  margin-top: 1.2rem;
}
.mt18 {
  margin-top: 1.8rem;
}
.mt20 {
  margin-top: 2rem;
}
.mt30 {
  margin-top: 3rem;
}
.mt40 {
  margin-top: 4rem;
}
.mt50 {
  margin-top: 5rem;
}
.mt60 {
  margin-top: 6rem;
}
.mt80 {
  margin-top: 8rem;
}
.mt120 {
  margin-top: 12rem;
}

.mb3 {
  margin-bottom: 0.3rem;
}
.mb8 {
  margin-bottom: 0.8rem;
}
.mb10 {
  margin-bottom: 1rem;
}
.mb12 {
  margin-bottom: 1.2rem;
}
.mb20 {
  margin-bottom: 2rem;
}
.mb30 {
  margin-bottom: 3rem;
}
.mb40 {
  margin-bottom: 4rem;
}
.mb50 {
  margin-bottom: 5rem;
}
.mb60 {
  margin-bottom: 6rem;
}
.mb80 {
  margin-bottom: 5rem;
}
.mb120 {
  margin-bottom: 12rem;
}

.mx10 {
  margin: 0 1rem;
}

/* padding */
.p5 {
  padding: 0.5rem;
}
.p10 {
  padding: 1rem;
}
.p15 {
  padding: 1.5rem;
}
.p20 {
  padding: 2rem;
}
.p40 {
  padding: 4rem;
}
.p60 {
  padding: 6rem;
}
.plr20 {
  padding: 1rem 2rem;
}

.pr20 {
  padding: 0 2rem;
}
.py5 {
  padding: 0 0.5rem;
}
.pb10 {
  padding: 0 0.5rem;
}
.p720 {
  padding: 7px 20px;
}

/* gap */
.gap5 {
  gap: 0.5rem;
}
.gap10 {
  gap: 1rem;
}

/* align */

.ali-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.ali-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.col {
  display: flex;
  flex-direction: column;
}

.sb {
  display: flex;
  justify-content: space-between;
}

.jc {
  justify-content: center;
}

.sbt {
  justify-content: space-between;
}

.ac {
  align-items: center;
}

.aie {
  align-items: flex-end;
}
.jce {
  justify-content: flex-end;
}

.rel {
  position: relative;
}
.ri {
  float: right;
}

/* grid */
.grid {
  display: -webkit-grid; display: grid; 
}
.grid.col3 {
  -webkit-grid-template-columns: repeat(3, 1fr);grid-template-columns: repeat(3, 1fr);
}
.grid.col4 {
  -webkit-grid-template-columns: repeat(4, 1fr);grid-template-columns: repeat(4, 1fr);
}

/* border-radius */
.br5 {
  border-radius: 0.5rem;
}
.br8 {
  border-radius: 0.8rem;
}
.br20 {
  border-radius: 2rem;
}
.br30 {
  border-radius: 3rem;
}
.br54 {
  border-radius: 5.4rem;
}
/* width */
.w100 {
  width: 100%;
}
.w80 {
  width: 80%;
}
.w50 {
  width: 50%;
}
.w25 {
  width: 25%;
}
.w20 {
  width: 20%;
}

.mx90 {
  min-width: 9rem;
}

.w92 {
  width: 92px;
}
/* height */
.h100 {
  height: 100%;
}
.h50 {
  height: 50%;
}

/* lineheight */
.lh14 {
  line-height: 1.4;
}

/* border */
.btred {
  border-top: 1px solid var(--red);
}

/******************** 
공통 style 
*********************/
.con-tit {
  font-size: 3.2rem;  
  font-weight: bold;  
  color: var(--red);
}
.maintab-Wrap .maintab>li a {
  font-size: 1.8rem;
}
.minitab li {font-size: 1.6rem;}
.menu-grid .item  {font-size: 1.6rem;}

.order-now {
  font-size: 1.8rem;  
  transition: all 0.5s ease-out;
}

/* select */
.search-select {
  /* 기본 스타일 */
  padding: 1.5rem 2.5rem;
  font-size: 1.6rem;
  border: 1px solid #e8e8e8;
  border-radius: 99px;
  width: 100%;
  max-width: 215px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('../assets/img/search-select-tri.svg') no-repeat calc(100% - 1.5rem) center / 1.4rem 1.4rem;
  padding-right: 3rem;
  box-sizing: border-box;
  background-color: white;
  outline: none;
}
/* 드롭다운 박스가 셀렉트 바로 아래 나오도록 설정 */
.search-select:focus + .custom-dropdown {
  display: block;
}

.custom-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
/* mark */
.menu-grid .textbox .price >i {color:#999; cursor: pointer;}
.mark-hover {
  width: max-content;
  position: absolute;
  left: 50%;
  bottom:-35px;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  display: none; 
  padding:.5rem 1rem;
  border:1px solid #E8E8E8;
  border-radius: 1rem;
  background: #fff;
  transition: all 10s linear;
  text-align: center;
}

.mark-hover i {font-size: 1.6rem; color:#ED1B23; margin-right:0.5rem}
.textbox .price i:hover + .mark-hover {
  display: inline-flex;
}

