@charset "utf-8";

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ol, ul {
  list-style: none;
}  
a {
  text-decoration: none;
  color: #000;
}  
button {
  background: none;
  border: none;
  cursor: pointer;
}      
div, p {
  line-height: 1;
}

/* font */
@font-face {
  font-family: 'NouvelR-KR';
  src: url('../font/NouvelRKR-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}

/* menu */
.store_menu {
  position: absolute;
  bottom: 4%;
  left: 0;
  right: 0;
}
.menu_list {
  display: flex;
  align-items: center;
  width: 12%;
  aspect-ratio: 220/100;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 999px;
}
.menu_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  aspect-ratio: 1/1;
  position: relative;
}
.menu_list div {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 100%;
  text-align: center;
}
.menu_list div img {
  position: relative;
  width: 35%;
  z-index: 1;
}
.menu_list a.on:after {
  content: '';
  position: absolute;
  top: -5%;
  left: -6%;
  width: 110%;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background-color: #2563EB;
  z-index: 0;
}
