/* Main */
.swiper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;

  /* 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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  opacity: 0;
  transition: transform .8s ease-in-out, opacity .8s ease-in-out;
}
.swiper-fade .swiper-slide.swiper-slide-active>img,
.swiper-fade .swiper-slide.swiper-slide-active .swiper-slide-active>img {
  transform: scale(1);
  opacity: 1;
}

.main_text_wrap {
  position: absolute;
  top: 40%;
  left: 0%;
  right: 0;
  width: 100%;
  text-align: center;
  z-index: 11;
}

.main_text_wrap .sub_tit,
.main_text_wrap .sub_tit span {
  position: relative;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: #BFBEBE;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.04, 0.24, 0.77, 0.97);
}
.main_text_wrap .sub_tit span { 
  color: #fff; 
  opacity: 1; 
}
.main_text_wrap .sub_tit:after {
  content: '';
  display: block;
  position: absolute;
  top: -110px;
  left: 50%;
  background: url(../images/main_icon.png) no-repeat;
  width: 135px;
  height: 86px;
  transform: translateX(-50%);
}

.main_text_wrap h2 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.04, 0.24, 0.77, 0.97);
  overflow: hidden;
}
.main_text_wrap h2 span {
  display: block;
  font-family: 'Black Han Sans', sans-serif;
  font-size: 10rem;
  color: #FFD23B;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1.2s .2s cubic-bezier(0.04, 0.24, 0.77, 0.97);
}
.main_text_wrap .content {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 2rem;
  color: #fff;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1.2s .4s cubic-bezier(0.04, 0.24, 0.77, 0.97);
}
.swiper-slide-visible .main_text_wrap .sub_tit,
.swiper-slide-visible .main_text_wrap h2,
.swiper-slide-visible .main_text_wrap h2 span,
.swiper-slide-visible .main_text_wrap .content {
  transform: translateY(0px);
  opacity: 1;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  color: rgba(255, 255, 255, .4);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next { left: 18%; }
.swiper-button-next,
.swiper-rtl .swiper-button-prev { right: 18%; }

.scroll_down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll_down .mouse {
  position: relative;
  width: 26px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 15px;
  margin: auto;
}
.scroll_down .mouse::after {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 3px;
  animation: mouse 1.1s ease-in-out infinite;
}
.scroll_down p {
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin-top: 8px;
}
@keyframes mouse {
  0% {
    top: 7px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}



/* Main Menu */
.main_menu_container {
  height: 100vh;
  background: url(../images/green_bg.jpg) no-repeat;
  background-size: cover;
  background-position-y: -58px;
}
.main_menu_wrap {
  display: flex;
  align-items: center;
  gap: 56px;
}
.menu_wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 744px;
  width: 100%;
}
.menu_wrap .item_box {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.menu_wrap::before {
  content: '';
  display: block;
  position: absolute;
  top: -40px;
  right: -30px;
  width: 122px;
  height: 180px;
  background: url(../images/best_badge.png) no-repeat;
  z-index: 10;
}
.menu_wrap .item_box > img {
  object-fit: cover;
  transition: transform .5s ease;
}
.menu_wrap .item_box::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.54);
  opacity: 0;
  transition: opacity .3s ease;
}
.menu_wrap .item_box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  z-index: 1;
  transition: opacity .3s ease;
}
.menu_wrap .item_box a span {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
}
.menu_wrap .item_box:hover::after,
.menu_wrap .item_box:hover a { opacity: 1; }
.menu_wrap .item_box:hover img {
  transform: scale(1.2);
}

.menu_info_wrap {
  display: flex;
  flex-direction: column;
  column-gap: 28px;
}
.menu_info_wrap h3 {
  position: relative;
  font-family: 'Black Han Sans', sans-serif;
  font-size: 6.6rem;
  font-weight: 400;
  color: #fff;
}
.menu_info_wrap h3::after {
  content: '';
  display: block;
  position: absolute;
  top: -96px;
  right: 20px;
  width: 232px;
  height: 160px;
  background: url(../images/ch_img.png) no-repeat;
}
.menu_info_wrap p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}
.menu_info_wrap .menu_move_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 262px;
  height: 56px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #F38F00;
  margin-top: 7rem;
  border-radius: 29px;
  transition: background-color .3s ease-in-out;
}
.menu_info_wrap .menu_move_btn:hover { background: #48C5C5; }


/* Real Review */
.review_container {
  position: relative;
  height: 100vh;
  background: #EFEFEF;
}
.review_container .sub_tit {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  padding-top: 11rem;
  box-sizing: border-box;
}
.review_container .tit {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 5.4rem;
  font-weight: 400;
  text-align: center;
  margin: 14px 0 27px;
}


.review_container .img {
  position: absolute;
  bottom: -20px;
  width: 40rem;
}
.review_container .img.img_right { right: 0; }
.review_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: auto;
  width: 100%;
  max-width: 1100px;
  padding: 2.5rem 6rem 2.5rem 4rem;
  margin-bottom: 16px;
  background: #fff; 
  box-sizing: border-box;
}
.review_item:last-child { margin-bottom: 0; }
.review_item .star_wrap {
  text-align: center;
}
.review_item .star_wrap p {
  font-size: 3rem;
  font-weight: 700;
}
.review_item .star_wrap p span {
  font-size: 18px;
  font-weight: 500;
  color: #9E9E9E;
}
.review_item .review p {
  width: 100%;
  max-width: 700px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}
.review_item .user p {
  font-size: 18px;
  font-weight: 400;
  color: #9E9E9E;
}


/* Map */
.map_container {
  margin-top: 20px;
  padding: 11rem 0;
  background: url(../images/map_bg.jpg) no-repeat;
  box-sizing: border-box;
}
.map_container .inner {
  max-width: 1200px;
}

.map_container .content_wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  height: 100%;
}
.map_wrap {
  position: relative;
  max-width: 760px;
  width: 100%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#map {
  width: 100%;
  max-width: 690px;
  height: 500px;
  margin: 30px 0 0 20px;
}
.map_wrap::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/map_bg.png) no-repeat;
  background-size: 100% 100%;
}
.address_wrap {
  display: flex;
  flex-direction: column;
}
.address_wrap h5 {
  position: relative;
  font-family: 'Black Han Sans', sans-serif;
  font-size: 6.6rem;
  font-weight: 400;
  color: #fff;
}
.address_wrap h5::after {
  content: '';
  display: block;
  position: absolute;
  top: -20px;
  left: 48%;
  width: 50px;
  height: 81px;
  background: url(../images/icon.png) no-repeat;
}
.address_wrap h5 span {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 6.6rem;
  font-weight: 400;
  color: #FFD23B;
}
.address_wrap .store_address {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.address_wrap .address {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  padding: 3px 5px;
  background: rgba(255,255,255,.2);
  box-sizing: border-box;
}

.map_container .search_wrap p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 8rem 0 7px;
}


@media screen and (max-width: 1224px) {
  .main_menu_wrap {
    flex-direction: column;
  }
  .main_menu_container { 
    height: 100%; 
    padding: 10rem 0;
    background-position-y: 0;
  }
  .menu_wrap .item_box { height: 240px; }
  .menu_wrap .item_box:first-child { width: 100%; }
  .menu_info_wrap .menu_move_btn { margin-top: 4rem; }

  .review_container { 
    height: 100%; 
    padding-bottom: 10rem;
  }
  .review_container .img { width: 20rem; }

  .map_container { background-size: cover; }
  .map_container .content_wrap { 
    flex-direction: column; 
    gap: 4rem;
  }
  .map_container .search_wrap p { margin: 4rem 0 7px; }
}

@media screen and (max-width: 930px) {
  .main_text_wrap {
    top: 35%;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next { left: 16px; }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev { right: 16px; }

  .menu_wrap::before {
    top: -30px;
    right: -10px;
    width: 100px;
    height: 140px;
    background-size: cover;
  }
  .menu_wrap .item_box img { width: 100%; height: 100%; }
  .menu_wrap .item_box:nth-child(2),
  .menu_wrap .item_box:nth-child(3) {
    width: calc((100% / 2) - 5px);
    overflow: hidden;
  }

  .review_item { 
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem; 
  }
}


@media screen and (max-width: 480px) {
  .main_text_wrap .sub_tit,
  .main_text_wrap .sub_tit span { font-size: 20px; }
  .main_text_wrap h2,
  .main_text_wrap h2 span { font-size: 6rem; }
  .main_text_wrap .content { font-size: 16px; }
  .menu_info_wrap h3 { font-size: 5.5rem; }
  .menu_info_wrap h3::after {
    top: -50px;
    right: 30px;
    width: 150px;
    height: 104px;
    background-size: cover;
  }
  .menu_info_wrap p {
    font-size: 16px;
  }

  .review_container .sub_tit { font-size: 20px; }
  .review_container .tit { font-size: 5rem; }
  .review_container .img { width: 15rem; }

  .map_wrap::after { display: none; }
  .map_wrap { height: 400px; }
  #map { 
    max-width: 400px; 
    height: 400px;
    margin: 0; 
  }
  .address_wrap h5,
  .address_wrap h5 span { font-size: 5.5rem; }
  .address_wrap h5::after { left: 44%; }
}

@media screen and (max-width: 320px) {
  .main_text_wrap .sub_tit:after {
    top: -78px;
    width: 100px;
    height: 68px;
    background-size: cover;
  }
  .main_text_wrap .sub_tit,
  .main_text_wrap .sub_tit span { font-size: 16px; }
  .main_text_wrap h2,
  .main_text_wrap h2 span { font-size: 5rem; }
  .main_text_wrap .content { font-size: 14px; }

  .menu_wrap::before {
    width: 70px;
    height: 100px;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next { left: 6px; }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev { right: 6px; }
}