@font-face {
  font-family: "GT Alpina";
  src: local(GT Alpina);
  src: url(./fonts/GT-Alpina-Medium-Italic.woff) format("woff");
}

@font-face {
  font-family: "GT America";
  src: local(GT America);
  src: url(./fonts/GT-America-Standard-Medium.woff) format("woff"),
    url(./fonts/GT-America-Standard-Medium-Italic.woff) format("woff");
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a:focus,
a:link {
  color: #000;
}

html,
body {
  font-family: "GT America", "Noto Sans KR", sans-serif !important;
}

@media screen and (max-width: 500px) {
  /* common :: 요소들 중 클래스 이름에 넣으면 숨킬 수 잇음 */
  .pc_ver {
    display: none !important;
  }
  .pc_ver2 {
    display: none !important;
  }
  .tablet_ver {
    display: none !important;
  }
  .mobile_ver {
    display: block !important;
  }
}

header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  background: white;
}

a {
  text-decoration: none;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

.navi {
  display: block;
  position: absolute;
  top: 100%;
  left: 10px;
  padding: 20px 0 20px 20px;
  width: 50%;
  visibility: hidden;
  transition: opacity 0.4s linear 0.1s, visibility 0.5s linear;
  opacity: 0;
  background-color: white;
  border: solid black 1px;
  border-radius: 13px;
}

.navi.on {
  -webkit-transition-delay: 0.1s, 0s;
  transition-delay: 0.1s, 0s;
  visibility: visible;
  will-change: opacity;
  opacity: 1;
}

.navi-item {
  text-align: left;
  text-decoration: underline;
}

.navi-item + .navi-item {
  margin-top: 8px;
}

.navi-item a {
  font-size: 26pt;
  letter-spacing: -1px;
}

.wrapper {
  width: 100%;
  height: auto;
  bottom: 0;
}

.container {
  width: 100%;
  height: auto;
  float: left;
  padding: 0 10px 0 10px;
}

/* 햄버거 메뉴 */

.ham {
  cursor: pointer;
  background-color: transparent;
}

.bar1,
.bar2,
.bar3 {
  display: block;
  width: 28px;
  margin-bottom: 6px;
  height: 4px;
  transition: all 0.3s ease-in-out;
  background-color: black;
}

.change .bar1 {
  transform: rotate(45deg) translate(8px, 8px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 샐셀 홈버튼 */

.home a {
  text-decoration: none;
  color: #000000;
}

.home span {
  font-size: 26pt;
  letter-spacing: -1px;
}

.insta img {
  width: 30px;
  padding: 17px 0px 20px 0px;
  right: 20px;
}

/* main */
.main img {
  display: block;
  width: 100%;
  overflow: hidden;
}

.main {
  position: relative;
  min-height: 100vh;
  background: #e6321e;
}

.main-con {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 90%;
}

.menu_category span {
  font-family: "GT America", sans-serif;
  font-size: 18pt;
  text-align: center;
}

.info_box {
  float: left;
  width: 100%;
  position: fixed;
  bottom: 0;
  padding-right: 20px;
  word-break: keep-all;
  z-index: 200;
}

.info-bg img {
  display: block;
  width: 100%;
}

.info-bg {
  position: relative;
  height: 100vh;
}

.info_photo_bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}

.bg_1 {
  background-image: url("../img/info/info1.jpg");
}

.bg_2 {
  background-image: url("../img/info/info2.jpg");
}

.bg_3 {
  background-image: url("../img/info/info3.jpg");
}

.bg_4 {
  background-image: url("../img/info/info4.jpg");
}

.bg_5 {
  background-image: url("../img/info/info5.jpg");
}

.bg_6 {
  background-image: url("../img/info/info6.jpg");
}

.bg_7 {
  background-image: url("../img/info/info7.jpg");
}

.bg_8 {
  background-image: url("../img/info/info8.jpg");
}

.bg_9 {
  background-image: url("../img/info/info9.jpg");
}

.link-shop {
  display: none;
}

.show {
  display: block;
}

/* 오더 페이지*/

.a {
  color: unset;
  text-decoration: unset;
}

.span a:link,
a:visited,
a:active {
  color: unset;
  text-decoration: unset;
}

.a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.marquee {
  height: 50px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 60px;
}

.marquee div {
  display: block;
  width: 200%;
  height: 60px;

  position: absolute;
  overflow: hidden;
  animation: marquee 5s linear infinite;
}

.marquee span {
  font-family: "GT America", sans-serif;
  font-size: 16pt;
  float: left;
  width: 50%;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

.order {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order img {
  width: 75%;
  float: left;
  position: relative;
  top: 120px;
  left: 10%;
  margin-bottom: 130px;
}
@keyframes moveit {
  from {
    transform: rotate(-0.5deg) translate(-1%, 0);
  }

  to {
    transform: rotate(0.2deg) translate(1%, 0);
  }
}

.delivery_illust {
  animation: 1.5s cubic-bezier(0.35, -0.4, 0.71, 1.1) infinite alternate moveit;
  transform-origin: center bottom;
}

.delivery_illust img {
  width: 62%;
  float: left;
  position: relative;
  top: 0px;
  left: 14%;
  margin-bottom: 100px;
}

.order_title {
  font-family: "GT Alpina", serif;
  font-size: 60pt;
  float: left;
  text-align: center;
  letter-spacing: -3px;
  width: 100%;
  margin-bottom: 0px;
}

.order_title_kr span {
  font-size: 12pt;
  float: left;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.order_contents {
  border-top: solid black 1px;
  padding: 20px 0 0 0;
  float: left;
  margin-bottom: 60px;
}

.order_contents span {
  font-size: 12pt;
  line-height: 1.65;
  text-align: left;
}

.detail_txt {
  padding-left: 15px;
}

.detail_txt span {
  font-size: 12pt;
  word-break: keep-all;
  line-height: 1.65;
}

.news {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news img {
  width: 80%;
  float: left;
  position: relative;
  top: 120px;
  left: 10%;
  margin-bottom: 130px;
}

.news_contents {
  border-top: solid black 1px;
  padding: 20px 0 0 0;
  float: left;
  margin-bottom: 60px;
}

.news_contents img {
  width: 100%;
  height: auto;
}

ul {
  padding-inline-start: 20px;
}

.news_txt {
  font-size: 12pt;
  line-height: 1.65;
  word-break: keep-all;
  padding-left: 20px;
  text-align: left;
}

.info_txt {
  float: left;
  width: 100%;
  padding: 0 0px 20px 0px;
}

.info_txt_kr {
  width: 50%;
  float: left;
  font-size: 8pt;
  word-break: keep-all;
  line-height: 1.5;
}

.info_txt_en {
  float: left;
  width: 50%;
  font-size: 8pt;
  word-break: keep-all;
  line-height: 1.5;
}

/* 메뉴 페이지*/

.section {
  scroll-margin-top: 140px;
}

.menu_category {
  float: left;
  width: 100%;
  position: fixed;
  top: 75px;
  text-align: center;
  z-index: 100;
}

.menu_category span {
  font-size: 12pt;
  line-height: 1.5;
}

.menu_container {
  width: 100%;
  float: left;
  position: relative;
  top: 140px;
  height: auto;
}

.menu_divider {
  width: 100%;
  float: left;
  position: relative;
  z-index: 20;
  font-size: 14pt;
  border: 1px black solid;
  border-radius: 20px;
  padding: 3px;
  text-align: center;
  margin-bottom: 20px;
  background-color: white;
}

.item {
  width: 100%;
  padding-bottom: 30px;
  border-bottom: black solid 1px;
  padding-top: 30px;
  padding-bottom: 60px;
}

.item:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 80px;
}

.item_top {
  width: 100%;
  /* float: left; */
  position: relative;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
}

.item_top:after {
  content: "";
  display: block;
  clear: both;
}

.menu_title {
  line-height: 1.25;
  font-size: 24px;
  width: 100%;
}

.menu_title:hover {
  cursor: pointer;
}

.add_box {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 15px;
}

.add_title {
  width: 75%;
  top: 0px;
  float: left;
  line-height: 1.6;
  font-size: 16px;
}

.add_price {
  width: 20%;
  top: 0px;
  float: right;
  line-height: 1.6;
  text-align: right;
}

.price span {
  font-size: 16px;
}

.add_detail {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 60px;
  top: 0px;
  word-break: keep-all;
  line-height: 1.4;
  font-size: 11px;
}

.item_tag {
  flex: none;
  margin-top: 5px;
}

.price {
  float: right;
  width: 100%;
  line-height: 1.25;
  text-align: right;
  display: none;
}

.sticker {
  float: right;
  top: 0px;
  font-size: 20px;
  font-family: "GT Alpina", serif;
  font-style: italic;
  padding-top: 5px;
}

.vegan {
  color: rgb(0, 120, 120);
}

.best {
  color: rgb(230, 50, 30);
}

.popular {
  color: rgb(230, 50, 30);
}

.seasonal {
  width: 100%;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.25;
}

.menu_pic img {
  width: 100%;
  padding-bottom: 10px;
}

.ingredients {
  word-break: keep-all;
  line-height: 1.4;
  width: 95%;
  font-size: 8.5pt;
}

/* tablet 1 */
@media screen and (min-width: 500px) {
  /* common */
  .pc_ver {
    display: none !important;
  }
  .pc_ver2 {
    display: none !important;
  }
  .tablet_ver {
    display: block !important;
  }
  .mobile_ver {
    display: none !important;
  }

  header {
    height: 60px;
  }

  .header-inner {
    float: left;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
  }

  .navi_wide {
    float: left;
    position: relative;
  }

  .btn {
    float: right;
    font-size: 18pt;
    cursor: pointer;
  }

  .btn a {
    font-size: 18pt;
  }

  .navi-wide-item {
    float: left;
    position: relative;
  }

  .navi-wide-item + .navi-wide-item {
    margin-left: 20px;
  }

  .navi-wide-item a {
    font-size: 18pt;
  }

  .container {
    width: 100%;
    height: auto;
    float: left;
    padding: 0 20px 0 20px;
  }

  .home {
    padding-right: 24px;
  }

  .home span {
    font-size: 18pt;
    letter-spacing: -1px;
  }

  .insta-link {
    float: left;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 200;
  }

  .insta-btn {
    float: right;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .insta-link img {
    width: 24px;
  }

  .insta-link a {
    font-size: 18pt;
    letter-spacing: -1;
  }

  .info-order {
    display: block;
    position: absolute;
    top: 100%;
    right: 20px;
    width: 24%;
    min-width: 280px;
    min-height: 400px;
    height: 70vh;
    visibility: hidden;
    transition: opacity 0.2s linear 0.1s, visibility 0.4s linear;
    opacity: 0;
    background-color: white;
    border: solid black 1px;
    border-radius: 13px;
  }

  .info-order.on {
    -webkit-transition-delay: 0.1s, 0s;
    transition-delay: 0.1s, 0s;
    visibility: visible;
    will-change: opacity;
    opacity: 1;
  }

  .info-order-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 50%;
    padding-top: 0px;
  }

  .info-line {
    border-top: solid black 1px;
    margin: 0 20px 0 20px;
  }

  .info-order-title {
    text-align: center;
    width: 100%;
  }

  .info-order-item + .info-order-item {
    margin-top: 20px;
  }

  .info-order-title a {
    font-family: "GT Alpina", serif;
    font-size: 50pt;
    letter-spacing: -3px;
  }

  .info-order-sub span {
    font-size: 12pt;
    float: left;
    padding-bottom: 30px;
  }

  .info-order-link {
    padding-top: 40px;
  }

  .info-order-link a {
    font-size: 16pt;
  }

  .marquee {
    top: 20px;
  }

  .marquee span {
    width: 50%;
    font-size: 18px;
  }

  /* main_tablet */
  .main_tablet {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #e6321e;
  }

  @keyframes moveit {
    from {
      transform: rotate(-3deg) translate(-3%, 0);
    }
    to {
      transform: rotate(4deg) translate(3%, 0);
    }
  }

  .main-obj {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25%;
    margin-left: -40%;
    width: 80%;
    animation: 2s cubic-bezier(0.33, -0.12, 0.63, 1.14) infinite alternate
      moveit;
    transform-origin: center bottom;
  }

  .main-logo {
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -22.5%;
    width: 45%;
  }

  /* menu tablet */
  .menu_category {
    float: left;
    width: 300px;
    position: fixed;
    z-index: 100;
    height: 65px;
    top: 60px;
    text-align: left;
    padding-left: 20px;
    /* background-color: white; */
  }

  .menu_category a:hover {
    text-decoration: underline 2px solid black;
  }

  .menu_category span {
    font-size: 12pt;
    line-height: 1.5;
  }

  .menu_option {
    float: left;
    width: 100%;
    position: fixed;
    z-index: 50;
    top: 60px;
    text-align: left;
    padding-left: 270px;
    padding-bottom: 12px;
    background: #fff;
  }

  .imgbtn-on {
    display: inline-block;
  }

  .imgbtn-on:hover {
    text-decoration: underline 2px solid black;
  }

  .menu_option a:hover {
    text-decoration: underline 2px solid black;
  }

  .menu_option span {
    font-size: 12pt;
    line-height: 1.5;
  }

  .menu_divider {
    font-size: 16pt;
    padding: 5px;
    margin-bottom: 0;
  }

  .menu_container {
    width: 100%;
    height: 100%;
    /*overflow-y: scroll;*/ /* D::추가 수정 */
    overflow-x: hidden;
    left: 0;
    top: 140px;
    position: relative;
  }

  .menu_container:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    z-index: 10;
    background: #000;
  }

  .menu_title {
    font-size: 24px;
  }

  .ingredients {
    font-size: 12px;
  }

  .price span {
    font-size: 15px;
  }

  .sticker {
    font-size: 20px;
  }

  .add_box {
    width: 50%;
    float: left;
    position: relative;
    padding: 20px 20px 60px 0px;
  }

  .add_detail {
    width: 50%;
    top: 20px;
    padding-left: 20px;
    line-height: 1.5;
    font-size: 13px;
    float: right;
  }

  /* D::추가 수정 */
  .item-list:after {
    content: "";
    display: block;
    clear: both;
  }

  .items-left {
    float: left;
    width: 50%;
    padding-right: 20px;
  }

  .items-right {
    float: right;
    width: 50%;
    padding-left: 20px;
  }

  .item {
    width: 100%;
    padding-top: 20px;
  }

  /* info tablet */
  .info_box {
    float: left;
    width: 20%;
    position: fixed;
    bottom: 0;
    word-break: keep-all;
    z-index: 200;
  }

  .info_txt {
    padding-bottom: 20px;
  }

  .info_txt_kr {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    font-size: 8pt;
  }

  .info_txt_en {
    float: left;
    width: 100%;
    font-size: 8pt;
    line-height: 1.3;
  }

  /* news tablet */
  .news {
    float: left;
    width: 80%;
  }

  .order_title {
    width: 100%;
    margin-top: 80px;
    font-size: 84px;
  }

  .news_contents {
    border-top: solid black 1px;
    float: left;
    width: 100%;
    margin-bottom: 40px;
  }

  .news_contents img {
    width: 70%;
    top: 0;
    float: left;
    left: 30%;
    margin-bottom: 40px;
  }

  .detail_txt {
    padding-left: 16px;
    word-break: keep-all;
    line-height: 1.65;
  }

  ul {
    padding-inline-start: 40px;
  }

  .news_txt {
    padding-left: 20px;
  }

  .news_box {
    float: left;
    position: relative;
    left: 28%;
    width: 70%;
  }

  .marquee-wide {
    height: 50px;
    overflow: hidden;
    position: relative;
    top: 80px;
  }

  .marquee-wide div {
    display: block;
    width: 200%;
    height: 60px;
    position: absolute;
    overflow: hidden;
    animation: marquee 8s linear infinite;
  }

  .marquee-wide span {
    font-size: 14pt;
    float: left;
    width: 24%;
  }

  @keyframes marquee-wide {
    0% {
      left: 0;
    }
    100% {
      left: -100%;
    }
  }

  /* order tablet*/

  .order-con {
    float: left;
    width: 80%;
  }

  .order_contents {
    border-top: solid black 1px;
    padding: 20px 0 0 0;
    float: left;
    margin-bottom: 0;
  }

  .order_contents span {
    font-size: 12pt;
  }

  .order_contents_detail {
    float: left;
    position: relative;
    left: 30%;
    width: 70%;
    padding-bottom: 20px;
  }

  .baemin_link {
    float: left;
    position: relative;
    width: 40%;
    margin-top: 35%;
    padding-left: 0px;
  }

  .baemin_link span {
    font-size: 14pt;
    text-align: left;
  }

  .delivery_illust {
    float: left;
    position: relative;
    width: 55%;
    padding-bottom: 40px;
  }

  .delivery_illust img {
    top: 60px;
    margin-bottom: 40px;
  }

  @keyframes moveit {
    from {
      transform: rotate(-2deg) translate(-3%, 0);
    }

    to {
      transform: rotate(2deg) translate(3%, 0);
    }
  }

  .delivery_illust {
    animation: 2s cubic-bezier(0.17, -0.32, 0.63, 1.14) infinite alternate
      moveit;
    transform-origin: center bottom;
  }
}

/* pc 1 */
@media screen and (min-width: 1280px) {
  /* common */
  .pc_ver {
    display: block !important;
  }
  .pc_ver2 {
    display: none !important;
  }
  .tablet_ver {
    display: none !important;
  }
  .mobile_ver {
    display: none !important;
  }

  header {
    height: 80px;
  }

  .header-inner {
    float: left;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
  }

  .navi_wide {
    float: left;
    position: relative;
  }

  .btn {
    float: right;
    font-size: 28pt;
  }

  .btn a {
    font-size: 28pt;
  }

  .navi-wide-item {
    float: left;
    position: relative;
  }

  .navi-wide-item + .navi-wide-item {
    margin-left: 20px;
  }

  .navi-wide-item a {
    font-size: 28pt;
  }

  .container {
    width: 100%;
    height: auto;
    float: left;
    padding: 0 0px 0 20px;
  }

  .home {
    padding-right: 84px;
  }

  .home span {
    font-size: 28pt;
    letter-spacing: -1px;
  }

  .insta-link {
    float: left;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 200;
  }

  .insta-btn {
    float: right;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .insta-link img {
    width: 40px;
  }

  .insta-link a {
    font-size: 28pt;
    letter-spacing: -1;
  }

  .info-order {
    display: block;
    position: absolute;
    top: 100%;
    right: 20px;
    width: 25%;
    min-width: 340px;
    min-height: 500px;
    height: 74vh;
    visibility: hidden;
    transition: opacity 0.2s linear 0.1s, visibility 0.4s linear;
    opacity: 0;
    background-color: white;
    border: solid black 1px;
    border-radius: 13px;
  }

  .info-order.on {
    -webkit-transition-delay: 0.1s, 0s;
    transition-delay: 0.1s, 0s;
    visibility: visible;
    will-change: opacity;
    opacity: 1;
  }

  .info-order-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 50%;
  }

  .info-order {
    right: 20px;
    width: 25%;
    min-width: 340px;
    min-height: 400px;
    height: 74vh;
    visibility: hidden;
    transition: opacity 0.2s linear 0.1s, visibility 0.4s linear;
    opacity: 0;
    background-color: white;
    border: solid black 1px;
    border-radius: 20px;
  }

  .info-line {
    border-top: solid black 1px;
    margin: 0 20px 0 20px;
  }

  .info-order-title {
    text-align: center;
    width: 100%;
  }

  .info-order-item + .info-order-item {
    margin-top: 20px;
  }

  .info-order-title a {
    font-family: "GT Alpina", serif;
    font-size: 60pt;
    letter-spacing: -3px;
  }

  .info-order-sub span {
    font-size: 12pt;
    float: left;
    padding-bottom: 30px;
  }

  .info-order-link {
    padding-top: 40px;
  }

  .info-order-link a {
    font-size: 16pt;
  }

  .marquee {
    top: 20px;
  }

  .marquee span {
    font-size: 22px;
    width: 50%;
  }

  /* main */
  .main_pc {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #e6321e;
  }

  @keyframes moveit {
    from {
      transform: rotate(-3deg) translate(-3%, 0);
    }

    to {
      transform: rotate(4deg) translate(3%, 0);
    }
  }

  .main-obj {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -19%;
    margin-left: -30%;
    width: 60%;
    animation: 2s cubic-bezier(0.33, -0.12, 0.63, 1.14) infinite alternate
      moveit;
    transform-origin: center bottom;
  }

  .main-wide {
    width: 100%;
    height: 100%;
    text-align: center;
  }

  .main-wide img {
    display: inline-block;
    width: auto;
    height: 100%;
  }

  /* menu */

  .section {
    scroll-margin-top: 160px;
  }

  .menu_category {
    float: left;
    width: 300px;
    position: fixed;
    z-index: 100;
    height: 65px;
    top: 80px;
    text-align: left;
    padding-left: 20px;
    /* background-color: white; */
  }

  .menu_category a:hover {
    text-decoration: underline 2px solid black;
  }

  .menu_category span {
    font-size: 14pt;
    line-height: 1.5;
  }

  .menu_option {
    float: left;
    width: 100%;
    position: fixed;
    z-index: 50;
    top: 80px;
    text-align: left;
    padding-left: 320px;
    padding-bottom: 12px;
    background: #fff;
  }

  .sticker + .sticker {
    padding-right: 10px;
  }

  .menu_option a:hover {
    text-decoration: underline 2px solid black;
  }

  .menu_option span {
    font-size: 14pt;
    line-height: 1.5;
  }

  .imgbtn-on a:hover {
    text-decoration: underline 2px solid black;
  }

  .imgbtn-on {
    display: inline-block;
    font-size: 14pt;
  }

  .menu_divider {
    font-size: 22pt;
    padding: 5px;
    margin: 0;
  }

  .menu_container {
    width: 70%;
    height: 100%;
    /*overflow-y: scroll;*/ /* D::추가 수정 */
    overflow-x: hidden;
    left: 0;
    top: 160px;
    position: relative;
  }

  .menu_container:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    z-index: 10;
    background: #000;
  }

  .menu_title {
    font-size: 28px;
  }

  .ingredients {
    font-size: 13px;
  }

  .price span {
    font-size: 18px;
  }

  .sticker {
    font-size: 22px;
  }

  .add_box {
    width: 50%;
    float: left;
    position: relative;
    padding: 20px 20px 60px 20px;
  }

  .add_detail {
    width: 50%;
    top: 20px;
    padding-left: 20px;
    line-height: 1.5;
    font-size: 13px;
    float: right;
  }

  /* D::추가 수정 */
  .item-list:after {
    content: "";
    display: block;
    clear: both;
  }

  .items-left {
    float: left;
    width: 50%;
    padding-right: 20px;
  }

  .items-right {
    float: right;
    width: 50%;
    padding-left: 20px;
  }

  .item {
    width: 100%;
    /* padding: 20px 20px 40px 20px; */
  }

  /*.item:nth-child(2n-1){
        float: right;
    }

    .item:nth-child(2n){
        float: left;
    }*/

  .seasonal {
    margin-bottom: 10px;
    font-size: 18px;
  }

  /* info */

  .info_box {
    float: left;
    width: 14%;
    position: fixed;
    bottom: 0;
    word-break: keep-all;
    z-index: 200;
  }

  .info_txt_kr {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    font-size: 9pt;
  }

  .info_txt_en {
    float: left;
    width: 100%;
    font-size: 9pt;
    line-height: 1.3;
  }

  /* order */

  .order-con {
    float: left;
    width: 70%;
  }

  .order_contents {
    border-top: solid black 1px;
    float: left;
    width: 100%;
    margin-bottom: 40px;
  }

  .order_contents span {
    font-size: 14pt;
  }

  .order_contents_detail {
    float: left;
    position: relative;
    left: 30%;
    width: 70%;
  }

  .baemin_link {
    float: left;
    position: relative;
    width: 50%;
    margin-top: 35%;
    padding-left: 40px;
  }

  .delivery_illust {
    float: left;
    position: relative;
    width: 50%;
  }

  .delivery_illust img {
    width: 70%;
    top: 60px;
    margin-bottom: 60px;
  }

  @keyframes moveit {
    from {
      transform: rotate(-2deg) translate(-3%, 0);
    }

    to {
      transform: rotate(2deg) translate(3%, 0);
    }
  }

  .delivery_illust {
    animation: 2s cubic-bezier(0.17, -0.32, 0.63, 1.14) infinite alternate
      moveit;
    transform-origin: center bottom;
  }

  .baemin_link span {
    font-size: 24pt;
    text-align: center;
  }

  /* news */
  .news {
    float: left;
    width: 70%;
  }

  .order_title {
    width: 100%;
    margin-top: 140px;
    font-size: 94px;
  }

  .news_contents {
    border-top: solid black 1px;
    float: left;
    width: 100%;
    margin-bottom: 40px;
  }

  .news_contents img {
    width: 70%;
    top: 0;
    float: left;
    left: 30%;
    margin-bottom: 40px;
  }

  .detail_txt {
    padding-left: 18px;
  }

  .detail_txt span {
    font-size: 14pt;
    word-break: keep-all;
    line-height: 1.65;
  }

  ul {
    padding-inline-start: 40px;
  }

  .news_txt {
    padding-left: 20px;
  }

  .news_box {
    float: left;
    position: relative;
    left: 28%;
    width: 70%;
  }

  .marquee-wide {
    height: 50px;
    overflow: hidden;
    position: relative;
    top: 100px;
  }

  .marquee-wide div {
    display: block;
    width: 200%;
    height: 60px;
    position: absolute;
    overflow: hidden;
    animation: marquee 8s linear infinite;
  }

  .marquee-wide span {
    font-family: "GT America", sans-serif;
    font-size: 16pt;
    float: left;
    width: 20%;
  }

  @keyframes marquee-wide {
    0% {
      left: 0;
    }
    100% {
      left: -100%;
    }
  }
}

/* pc 2 */
@media screen and (min-width: 1921px) {
  /* common */
  .pc_ver {
    display: none !important;
  }
  .pc_ver2 {
    display: block !important;
  }
  .tablet_ver {
    display: none !important;
  }
  .mobile_ver {
    display: none !important;
  }

  header {
    height: 120px;
  }

  .header-inner {
    padding: 40px 40px;
  }

  .btn {
    font-size: 30pt;
  }

  .btn a {
    font-size: 30pt;
  }

  .navi-wide-item + .navi-wide-item {
    margin-left: 30px;
  }

  .navi-wide-item a {
    font-size: 30pt;
  }

  .container {
    width: 100%;
    height: auto;
    float: left;
    padding: 0 0px 0 40px;
  }

  .home {
    padding-right: 120px;
  }

  .home span {
    font-size: 30pt;
    letter-spacing: -1px;
  }

  .insta-btn {
    margin-right: 40px;
    margin-bottom: 40px;
  }

  .insta-link img {
    width: 45px;
  }

  .insta-link a {
    font-size: 30pt;
    letter-spacing: -1;
  }

  .info-order {
    right: 40px;
    min-height: 800px;
  }

  .info-line {
    margin: 0 40px 0 40px;
  }

  .info-order-title {
    text-align: center;
    width: 100%;
  }

  .info-order-title a {
    font-size: 92pt;
    letter-spacing: -3px;
  }

  .info-order-sub {
    font-size: 22pt;
  }

  .info-order-link {
    padding-top: 120px;
  }

  .info-order-link a {
    font-size: 30pt;
  }

  .marquee {
    top: 40px;
  }

  .marquee span {
    font-size: 30px;
    width: 50%;
  }

  /* menu */

  .section {
    scroll-margin-top: 240px;
  }

  .menu_category {
    width: 360px;
    height: 80px;
    top: 120px;
    padding-left: 40px;
    /* background-color: white; */
  }

  .menu_category span {
    font-size: 18pt;
  }

  .menu_option {
    top: 120px;
    text-align: left;
    padding-left: 400px;
    padding-bottom: 12px;
  }

  .menu_option a:hover {
    text-decoration: underline 2px solid black;
  }

  .menu_option span {
    font-size: 18pt;
  }

  .imgbtn-on a:hover {
    text-decoration: underline 2px solid black;
  }

  .imgbtn-on {
    display: inline-block;
    font-size: 18pt;
    line-height: 1.4;
  }

  .menu_divider {
    font-size: 28pt;
    padding: 10px;
    border-radius: 40px;
  }

  .menu_container {
    top: 240px;
  }

  .menu_container:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    z-index: 10;
    background: #000;
  }

  .menu_title {
    font-size: 42px;
  }

  .ingredients {
    font-size: 17px;
    line-height: 1.5;
  }

  .price span {
    font-size: 26px;
  }

  .sticker {
    font-size: 30px;
  }

  .sticker + .sticker {
    padding-right: 10px;
  }

  .add_box {
    padding: 20px 40px 80px 0px;
  }

  .add_detail {
    width: 50%;
    top: 20px;
    padding-left: 40px;
    line-height: 1.5;
    font-size: 17px;
    float: right;
  }

  .add_title {
    font-size: 24px;
  }

  .add_price {
    font-size: 24px;
  }

  .seasonal {
    margin-bottom: 10px;
    font-size: 26px;
  }

  /* D::추가 수정 */
  .item-list:after {
    content: "";
    display: block;
    clear: both;
  }

  .items-left {
    padding-right: 40px;
  }

  .items-right {
    padding-left: 40px;
  }

  .item {
    width: 100%;
  }

  /* info */

  .info_box {
    width: 12%;
    bottom: 0;
  }

  .info_txt_kr {
    padding-bottom: 20px;
    font-size: 14pt;
  }

  .info_txt_en {
    font-size: 14pt;
    padding-bottom: 20px;
  }

  /* order */

  .order_contents {
    border-top: solid black 1px;
    float: left;
    width: 100%;
    margin-bottom: 40px;
  }

  .order_contents span {
    font-size: 22pt;
  }

  .order_contents_detail {
    float: left;
    position: relative;
    left: 30%;
    width: 70%;
  }

  .baemin_link {
    float: left;
    position: relative;
    width: 50%;
    margin-top: 35%;
    padding-left: 40px;
  }

  .delivery_illust {
    float: left;
    position: relative;
    width: 50%;
  }

  .delivery_illust img {
    width: 70%;
    top: 60px;
    margin-bottom: 60px;
  }

  .baemin_link span {
    font-size: 32pt;
  }

  .order_title_kr span {
    font-size: 18pt;
    margin-bottom: 40px;
  }

  /* news */
  .news {
    float: left;
    width: 70%;
  }

  .order_title {
    width: 100%;
    margin-top: 220px;
    font-size: 120px;
  }

  .news_contents {
    border-top: solid black 1px;
    float: left;
    width: 100%;
    margin-bottom: 40px;
  }

  .news_contents img {
    width: 70%;
    top: 0;
    float: left;
    left: 30%;
    margin-bottom: 40px;
  }

  .detail_txt {
    padding-left: 30px;
  }

  .detail_txt span {
    font-size: 22pt;
  }

  ul {
    padding-inline-start: 40px;
  }

  .news_txt {
    padding-left: 40px;
    font-size: 22pt;
  }

  .news_box {
    float: left;
    position: relative;
    left: 28%;
    width: 70%;
  }

  .marquee-wide {
    height: 50px;
    overflow: hidden;
    position: relative;
    top: 160px;
    z-index: 20;
  }

  .marquee-wide div {
    display: block;
    width: 200%;
    height: 60px;
    position: absolute;
    overflow: hidden;
    animation: marquee 8s linear infinite;
  }

  .marquee-wide span {
    font-size: 24pt;
    float: left;
    width: 20%;
  }

  @keyframes marquee-wide {
    0% {
      left: 0;
    }
    100% {
      left: -100%;
    }
  }
}
