body {
    background: #f2f2f2;
}

header {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    padding: 0 1.5rem;
    z-index: 7777;
    background: #055ca3;
}
header h1 {
    width: 6rem;
}
header h1 a {
    width: 100%;
}
header h1 a img {
    width: 100%;
}
header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
header #menuBtn {
    width: 3rem;
}
header #menuBtn img {
    width: 100%;
}

.navBg {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 8888;
}
nav {
    background-color: #fff;
    display: flex;
    flex-flow: column nowrap;
    height: max-content;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding-top: 6rem;
}
nav a {
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: #989898;
    border-bottom: 1px solid #055ca3;
}
nav a:last-child {
    border: none;
}
nav a img {
    width: 2rem;
}
nav button {
    width: 3rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
nav button img {
    width: 100%;
}

main {
    padding: 2rem 1.5rem 10rem;
}
main .eventMenu {
    margin-bottom: 1.5rem;
}
main .eventMenu a {
    background-color: #437fb1;
    padding: 2rem 1.5rem;
    display: block;
    background-image: url(../img/main_icon1.png);
    background-repeat: no-repeat;
    background-size: 10rem;
    background-position: right 1.5rem bottom 2rem;
    border-radius: 1.5rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 15rem;
}
main .eventMenu a h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
}
main .eventMenu a p {
    font-size: 1.4rem;
    color: #fff;
}
main .eventMenu a .link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 5rem;
    color: #055ca3;
    font-size: 1.6rem;
    font-weight: 600;
    width: max-content;
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
}
main .eventMenu a .link img {}
main .menu {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
main .menu a {
    width: 50%;
    border-radius: 1.5rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.4;
    background-color: #d24253;
    background-image: url(../img/main_icon2.png);
    background-repeat: no-repeat;
    background-size: 3rem;
    background-position: right 1rem bottom 1rem;
    height: 10rem;
}
main .menu a:nth-of-type(2) {
    background-image: url(../img/main_icon3.png);
    background-size: 4rem;
}
main .searchMenu {
    margin-bottom: 4rem;
}
main .searchMenu a {
    display: block;
    background-color: #f2f2f2;
    background-image: url(../img/sub_icon14.png);
    background-repeat: no-repeat;
    background-size: 2rem;
    background-position: right 2rem center;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
}
main .menu2 {
    display: flex;
    gap: 1.5rem;
    flex-flow: row wrap;
}
main .menu2 a {
    width: calc(100% / 3 - 1rem);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-radius: 1rem;
    background: #f2f2f2;
}
main .menu2 a img {
    height: 5rem;
}
main .menu2 a span {
    font-size: 1.6rem;
    font-weight: 600;
}

/* 행사 */
main .event {
    display: flex;
    flex-flow: column nowrap;
    gap: 3rem;
}
main .event a {
    display: flex;
    flex-flow: column nowrap;
    border-radius: 1.5rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    background: #fff;
    overflow: hidden;
}
main .event a .image {
    height: 15rem;
}
main .event a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main .event a .text {
    padding: 1.5rem;
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
}
main .event a .text h2 {
    font-size: 1.8rem;
    font-weight: 900;
}
main .event a .text p {
    font-size: 1.4rem;
    font-weight: 600;
}

/* TOP 10 */
main .rank {
    display: flex;
    flex-flow: column nowrap;
    gap: 3rem;
}
main .rank a {
    border-radius: 1.5rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    background: #e6e6e6;
    padding: 1.5rem 1.5rem 1.5rem 6rem;
    position: relative;
}
main .rank a > img {
    width: 5rem;
    position: absolute;
    top: -1rem;
    left: -1rem;
}
main .rank a > span {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
}
main .rank a .content {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}
main .rank a .content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.4;
}
main .rank a .content .like {
    display: flex;
    align-items: center;
    gap: 1rem;
}
main .rank a .content .like img {
    width: 2rem;
}
main .rank a .content .like span {
    font-size: 1.6rem;
    font-weight: 900;
}

/* 매장 */
main #searchFrm {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
}
main #searchFrm input {
    padding: 1.5rem 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    background-color: #e6e6e6;
    background-image: url(../img/sub_icon14.png);
    background-repeat: no-repeat;
    background-size: 2rem;
    background-position: right 2rem center;
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
}
main .shop {
    display: flex;
    flex-flow: column nowrap;
    border-top: 1px solid #81a8c9;
}
main .shop a {
    padding: 3rem;
    border-bottom: 1px solid #055ca3;
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}
main .shop a h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 900;
}
main .shop a h2 img {
    width: 2rem;
}
main .shop a .content {
    display: flex;
    flex-flow: column nowrap;
    gap: 0.5rem;
}
main .shop a .content p {
    font-size: 1.6rem;
    font-weight: 600;
}

/* 찾기 */
main .search {
    display: flex;
    flex-flow: column nowrap;
    gap: 3rem;
}
main .search a {
    display: flex;
    border-radius: 1.5rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 2rem 1.5rem;
    gap: 1rem;
    justify-content: space-between;
}
main .search a .title {
    display: flex;
    flex-flow: column nowrap;
    gap: 2rem;
}
main .search a .title h2 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.4;
}
main .search a .title button {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 5rem;
    border: 1px solid #d32035;
    width: max-content;
}
main .search a .price {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    justify-content: flex-end;
    align-items: flex-end;
}
main .search a .price p {
    font-size: 1.6rem;
    font-weight: 600;
    width: max-content;
}
main .search a .price p.discount {
    padding: 1rem;
    font-weight: 500;
    background: #d32035;
    color: #fff;
}

/* 매장 정보 */
main .info {
    margin-bottom: 2rem;
}
main .info h2 {
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
main .info h2 img {
    width: 2rem;
}
main .info .box {
    border: 1px solid #055ca3;
    padding: 4rem 1.5rem;
}
main .info .box .content {
    display: flex;
    flex-flow: column nowrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}
main .info .box .content p {
    font-size: 1.6rem;
    font-weight: 600;
}
main .info .box > p {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 600;
}
main .location {
    margin-bottom: 2rem;
}
main .location h2 {
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
main .location h2 img {
    width: 2rem;
}
main .location #map {
    width: 100%;
    height: 30rem;
    border: 1px solid #055ca3;
}

/* 휴무 */
main .today {
    font-size: 2rem;
    font-weight: 600;
    padding: 2rem 0;
    border-radius: 1.5rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    background: #e6e6e6;
    margin: 0 1.5rem 3rem;
    text-align: center;
}
main .today em {
    font-size: 2rem;
    font-weight: 900;
    color: #d32035;
}
main .restWrap {
    display: flex;
    flex-flow: column nowrap;
    gap: 2rem;
}
main .restWrap .rest {
    padding: 2rem 1.5rem;
    border-top: 1px solid #055ca3;
    border-bottom: 1px solid #055ca3;
}
main .restWrap .rest h2 {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
main .restWrap .rest h2 img {
    width: 2rem;
}
main .restWrap .rest p {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}
main .restWrap .rest p strong {
    font-size: 1.6rem;
    font-weight: 800;
}
main .restWrap .rest p:last-child {
    margin: 0;
}

/* 상품 */
main > h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #d32035;
    margin-bottom: 2rem;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 1rem;
}
main > h2 img {
    width: 3rem;
}
main .product {
    display: flex;
    flex-flow: column nowrap;
    border-top: 1px solid #81a8c9;
}
main .product a {
    padding: 3rem 1.5rem;
    border-bottom: 1px solid #055ca3;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}
main .product a .title {
    display: flex;
    flex-flow: column nowrap;
    gap: 0.5rem;
    padding-bottom: 4rem;
}
main .product a .title h2 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.4;
}
main .product a .title p {
    font-size: 1.6rem;
    font-weight: 600;
}
main .product a .price {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    justify-content: flex-end;
    align-items: flex-end;
}
main .product a .price p {
    font-size: 1.6rem;
    width: max-content;
}
main .product a .price p strong {
    font-size: 1.6rem;
    font-weight: 900;
}
main .product a .price p.discount {
    padding: 1rem;
    background: #d32035;
    color: #fff;
}

/* 장바구니 */
main .cartWrap {
    display: flex;
    flex-flow: column nowrap;
    gap: 3rem;
    margin-bottom: 6rem;
    padding: 0 1.5rem;
}
main .cartWrap .cart {
    border-radius: 1.5rem;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.2);
    background: #e6e6e6;
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    gap: 3rem;
    position: relative;
}
main .cartWrap .cart h2 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.4;
    padding-right: 4rem;
}
main .cartWrap .cart .price {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
}
main .cartWrap .cart .price p {
    font-size: 1.6rem;
    font-weight: 900;
}
main .cartWrap .cart .price p.discount {
    font-weight: 500;
    padding: 1rem;
    background: #d32035;
    color: #fff;
}
main .cartWrap .cart button {
    width: 3rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
main .cartWrap .cart button img {
    width: 100%;
}
main .calcwrap {}
main .calcwrap h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}
main .calcwrap .calc {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #055ca3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main .calcwrap .calc h3 {
    font-size: 1.8rem;
    font-weight: 600;
}
main .calcwrap .calc p {
    font-size: 1.8rem;
    font-weight: 900;
}
main .calcwrap .calc p.plusDiscount {
    color: #d32035;
}