@charset "UTF-8";
@font-face {
  font-family: "Arita-buri-SemiBold";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/Arita-buri-SemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard-Regular";
  src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

a {
  color: #000;
  text-decoration: none;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

.img_box {
  position: relative;
  width: 100%;
  font-size: 0;
}

.img_box img {
  width: 100%;
}

button {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.m_hide {
  display: block !important;
}

.m_show {
  display: none !important;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html,
body {
  font-size: 0.5208333333vw;
  font-family: "Arita-buri-SemiBold";
}
@media (max-width: 720px) {
  html,
  body {
    font-size: 1.3888888889vw;
  }
}

body {
  background: #f1f1f3;
}

.wrapper {
  max-width: 192rem;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  .wrapper {
    max-width: 720px;
  }
}

/* 헤더 영역 */
#header {
  background: #fff;
}
#header .header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 152rem;
  height: 10rem;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  #header .header_wrap {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
}
#header .header_wrap .header_logo {
  text-align: center;
}
#header .header_wrap .header_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.6rem;
}
@media screen and (max-width: 720px) {
  #header .header_wrap .header_logo a {
    width: 100%;
    height: 9.1rem;
  }
  #header .header_wrap .header_logo .logo_img img {
    height: 4.3rem;
  }
}
#header .header_wrap .link_anchor {
  display: inline-block;
}
@media screen and (max-width: 720px) {
  #header .header_wrap .nav_wrap {
    width: 100%;
  }
}
#header .header_wrap .nav_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 720px) {
  #header .header_wrap .nav_list {
    width: 100%;
    padding: 0 2.5rem;
    gap: 2rem;
  }
}
#header .header_wrap .nav_item {
  position: relative;
  width: 33.33%;
  text-align: center;
}
@media screen and (max-width: 720px) {
  #header .header_wrap .nav_item {
    flex: 1;
    width: auto;
  }
}
@media screen and (max-width: 720px) {
  #header .header_wrap .nav_item.on::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 0.5rem;
    bottom: 0;
    left: 0;
    background-color: #1a1a1a;
  }
}
#header .header_wrap .section_name {
  width: 13rem;
  height: 6rem;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 720px) {
  #header .header_wrap .section_name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 8.9rem;
    font-size: 2.8rem;
  }
}

.pc-only {
  display: block;
}

.mo-only {
  display: none;
}

@media (max-width: 720px) {
  .pc-only {
    display: none;
  }
  .mo-only {
    display: block;
  }
}
@media (min-width: 720px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    transition: all 0.5s;
  }
  .header.fixed {
    position: sticky;
    top: 0;
    height: 10rem;
    z-index: 9;
    background-color: #fff;
  }
}
@media (max-width: 720px) {
  .nav_wrap.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
  }
  .nav_wrap.fixed .nav_list {
    position: sticky;
    top: 0;
    height: 9rem;
    z-index: 9;
    background-color: #fff;
  }
}
.nav_wrap.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}
.nav_wrap.fixed .nav_list {
  position: sticky;
  top: 0;
  height: 9rem;
  z-index: 9;
  background-color: #fff;
}

/* kv 비쥬얼 */
.sec_kv {
  position: relative;
  height: 108rem;
  margin-top: 10rem;
}
@media screen and (max-width: 720px) {
  .sec_kv {
    height: auto;
    margin-top: 0;
  }
}
.sec_kv .swiper-slide img {
  height: 108rem;
  width: auto;
}
@media screen and (max-width: 720px) {
  .sec_kv .swiper-slide img {
    height: auto;
    width: 100%;
  }
}
.sec_kv .swiper-btn {
  display: flex;
}
.sec_kv .swiper-button-prev.wiper_button_prev,
.sec_kv .swiper-button-next.wiper_button_next {
  position: absolute;
  bottom: 6.8rem;
  top: initial;
  width: 4.8rem;
  height: 4.8rem;
  background: url("../images/prev_btn.png") no-repeat center/cover;
  background-size: 100%;
}
@media (max-width: 720px) {
  .sec_kv .swiper-button-prev.wiper_button_prev,
  .sec_kv .swiper-button-next.wiper_button_next {
    bottom: 9.6rem;
  }
}
.sec_kv .nav_btn .swiper-button-prev.wiper_button_prev {
  right: 43.4rem;
  left: initial;
}
@media (max-width: 720px) {
  .sec_kv .nav_btn .swiper-button-prev.wiper_button_prev {
    right: 10rem;
  }
}
.sec_kv .nav_btn .swiper-button-next.wiper_button_next {
  right: 37.7rem;
  left: initial;
}
@media (max-width: 720px) {
  .sec_kv .nav_btn .swiper-button-next.wiper_button_next {
    right: 4rem;
  }
}
.sec_kv .swiper-button-next.wiper_button_next {
  transform: rotate(180deg);
}
.sec_kv .swiper-container-horizontal > .swiper-pagination-progressbar,
.sec_kv .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  bottom: 9.2rem;
  top: initial;
  width: 100rem;
  height: 0.4rem;
  margin-left: 33.7rem;
  background-color: #fff;
}
@media (max-width: 720px) {
  .sec_kv .swiper-container-horizontal > .swiper-pagination-progressbar,
  .sec_kv .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    bottom: 12rem;
    width: calc(100% - 22.6rem);
    margin-left: 4rem;
  }
}
.sec_kv .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #1a1a1a;
}

/* 이야기 영역 */
.sec_story {
  position: relative;
  margin-top: -6rem;
  z-index: 5;
  overflow-x: hidden;
}
@media screen and (max-width: 720px) {
  .sec_story {
    margin: 0;
  }
}
.sec_story .img_box {
  width: 100%;
}
.sec_story .img_box > img {
  pointer-events: none;
}

/* 매장 이미지 영역 */
.sec_photo {
  padding: 15.5rem 0 22.6rem 20rem;
  background-color: #f6f6f6;
  overflow: hidden;
}
@media (max-width: 720px) {
  .sec_photo {
    padding: 14rem 0 22.6rem 4rem;
  }
}
.sec_photo .contact_slide {
  position: relative;
  width: 100%;
  overflow: initial;
}
.sec_photo .contact_slide .swiper-slide {
  width: 46.8rem;
  height: 46.8rem;
  margin-right: 5.5rem;
  border: 0.4rem solid #000;
}
@media (max-width: 720px) {
  .sec_photo .contact_slide .swiper-slide {
    width: 30.6rem;
    height: 30.6rem;
    margin-right: 2.8rem;
  }
}
.sec_photo .contact_slide .swiper-button-prev.wiper_button_prev,
.sec_photo .contact_slide .swiper-button-next.wiper_button_next {
  position: absolute;
  bottom: 0;
  width: 4.8rem;
  height: 4.8rem;
  background: url("../images/prev_btn-black.png") no-repeat center/cover;
  background-size: 100%;
}
.sec_photo .contact_slide .nav_btn .swiper-button-prev.wiper_button_prev {
  left: initial;
  top: inherit;
  right: 43.5rem;
  bottom: -8.6rem;
}
@media (max-width: 720px) {
  .sec_photo .contact_slide .nav_btn .swiper-button-prev.wiper_button_prev {
    right: 10rem;
  }
}
.sec_photo .contact_slide .nav_btn .swiper-button-next.wiper_button_next {
  right: 37.5rem;
  left: initial;
  top: inherit;
  bottom: -8.6rem;
}
@media (max-width: 720px) {
  .sec_photo .contact_slide .nav_btn .swiper-button-next.wiper_button_next {
    right: 4rem;
  }
}
.sec_photo .contact_slide .swiper-button-next.wiper_button_next {
  transform: rotate(180deg);
}
.sec_photo .swiper-container-horizontal > .swiper-pagination-progressbar,
.sec_photo .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  bottom: -6.2rem;
  top: initial;
  width: 100rem;
  margin-left: 17.8rem;
  background-color: #dbdbdb;
}
@media (max-width: 720px) {
  .sec_photo .swiper-container-horizontal > .swiper-pagination-progressbar,
  .sec_photo .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    margin-left: 0;
    width: 50rem;
  }
}
.sec_photo .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #1a1a1a;
}

/* 대표메뉴 영역 */
.sec_menu {
  background-color: #fff;
}
.sec_menu .img_box {
  width: 100%;
}
.sec_menu .img_box > img {
  pointer-events: none;
}

/* 이벤트영역 */
.sec_event {
  padding: 16rem 20rem;
}
@media screen and (max-width: 720px) {
  .sec_event {
    padding: 14rem 4rem;
  }
}
.sec_event .event_title {
  display: flex;
  justify-content: center;
  height: 4.7rem;
  margin: 0 auto 8rem;
}
.sec_event .event_title img {
  height: 100%;
  width: auto;
}
.sec_event .event_list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  margin-bottom: 6rem;
}
@media screen and (max-width: 720px) {
  .sec_event .event_list {
    gap: 2.8rem;
  }
}
.sec_event .event_item a {
  display: block;
  width: 100%;
  cursor: default;
}
.sec_event .event_item a img {
  width: 100%;
}
.sec_event .event_ask {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 720px) {
  .sec_event .event_ask {
    flex-direction: column;
    gap: 2.8rem;
  }
}
.sec_event .event_ask a {
  flex: 1;
  cursor: pointer;
}
.sec_event .event_ask a img {
  width: 100%;
}

/* 하단 맵 api */
.sec_map {
  position: relative;
  padding-top: 16rem;
}
@media (max-width: 720px) {
  .sec_map {
    padding-top: 14rem;
  }
}
.sec_map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/map-bg.png") no-repeat center/cover;
  width: 100%;
  height: 158rem;
  z-index: -1;
}
@media (max-width: 720px) {
  .sec_map::after {
    height: 160rem;
    background: url("../images/map-bg-mo.png") no-repeat center/cover;
  }
}
.sec_map-main {
  display: flex;
  justify-content: space-between;
  margin: 0 20rem 6.6rem 20rem;
  align-items: flex-end;
}
@media (max-width: 720px) {
  .sec_map-main {
    margin: 0 0 8rem 4rem;
  }
}
.sec_map-main_tit {
  font-size: 5rem;
  line-height: 5rem;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 720px) {
  .sec_map-main_tit {
    margin-bottom: 3rem;
  }
}
.sec_map-main_des {
  font-size: 2.2rem;
  line-height: 3.2rem;
  color: #fff;
  font-family: "Pretendard-Regular";
}
.sec_map-main_des span {
  font-weight: bold;
  font-family: "Pretendard-Regular";
}
.sec_map .gm-style-iw-chr {
  display: none;
}
.sec_map .gm-style-iw-d {
  padding: 1rem !important;
  overflow: initial !important;
}
.sec_map .gm-style .gm-style-iw-c {
  padding: 0 !important;
}
.sec_map .gm-style-mot {
  font-size: 2.4rem !important;
}
.sec_map .sec_map_box {
  display: flex;
  gap: 1.4rem;
}
.sec_map .sec_map_box.mo-only {
  display: none;
}
.sec_map .sec_map_box .img-box {
  width: auto;
  height: 4.8rem;
}
.sec_map .sec_map_box .img-box img {
  width: 100%;
  height: 100%;
}
@media (max-width: 720px) {
  .sec_map .sec_map_box.mo-only {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 5rem;
    margin: 5rem 5.2rem 0 5.2rem;
  }
  .sec_map .sec_map_box.pc-only {
    display: none;
  }
}
.sec_map #map {
  width: 100%;
  aspect-ratio: 1920/800;
}
@media (max-width: 720px) {
  .sec_map #map {
    height: 76.6rem;
    aspect-ratio: unset;
  }
}
.sec_map-foo {
  padding-top: 8rem;
  margin: 0 20rem 0 20rem;
}
@media (max-width: 720px) {
  .sec_map-foo {
    margin: 0 0 0 4rem;
  }
}
.sec_map-foo_tit {
  margin-bottom: 3.3rem;
  font-size: 3.4rem;
  line-height: 3.3rem;
  color: #fff;
  letter-spacing: -0.25rem;
}
.sec_map-foo .sec_map-list {
  display: flex;
  flex-wrap: wrap;
  height: 14rem;
  flex-direction: column;
}
@media (max-width: 720px) {
  .sec_map-foo .sec_map-list {
    height: 15rem;
  }
}
.sec_map-foo .sec_map-list .sec_map-item {
  color: #fff;
  font-size: 2.2rem;
  font-family: "Pretendard-Regular";
  line-height: 3.2rem;
}
@media (max-width: 720px) {
  .sec_map-foo .sec_map-list .sec_map-item {
    opacity: 0.6;
  }
}

/*# sourceMappingURL=style.css.map */
