@charset "UTF-8";
/* AI BARTENDER order_2 画面 */
.order_2 {
  background-image: url("../image/04order/order_base.png");
  opacity: 1;
  animation: order-2-show 3s 1;
}
.order_2 .order_number {
  position: absolute;
  top: 370px;
  left: 1230px;
}
.order_2 .order_number p {
  font-size: 60px;
  font-family: Arial, Helvetica, "sans-serif";
  letter-spacing: 10px;
  color: #bbbbbb;
}
.order_2 .order_2_drinkname {
  position: absolute;
  top: 460px;
  left: 960px;
}
.order_2 .order_2_drinkname p {
  width: 1060px;
  text-align: left;
}
.order_2 .order_next_area {
  position: absolute;
  top: 720px;
  left: 960px;
}
.order_2 .order_back_area {
  position: absolute;
  top: 1046px;
  left: 960px;
}
.order_2 .order_recipe_area {
  position: absolute;
  display: flex;
  top: 1370px;
  left: 960px;
}
.order_2 .order_recipe_area div {
  width: 220px;
}
.order_2 .order_recipe_area div p {
  color: #bbbbbb;
  font-size: 36px;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  margin-bottom: 2px;
}
@keyframes order-2-show {
  0%,80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.order_drink_glass {
  position: absolute;
  animation: order-glass-slide 2.5s 1s 1 forwards;
}
@keyframes order-glass-slide {
  100% {
    left: 140px;
  }
}
