/*------------------------------
   System Menu Overview
------------------------------*/
.system-overview {
  width: 100%;
  position: relative;
  color: #fff;
  background-color: #141414;
  overflow: hidden;
  z-index: 0;
}

.system-overview::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../../img/eyecatch.jpg");

  background-size: cover;
  background-position: center;
  filter: blur(10px);
}

/*------------------------------
   Pickup Menu
------------------------------*/
/* .pickup-menu__list{
  margin-bottom: 100px;
} */

.pickup-menu__item {
  margin-bottom: 100px;
}

.pickup-menu__item:last-child {
  margin-bottom: 0;
}

.pickup-menu__item .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.pickup-menu__item:nth-child(even) .flex-wrapper {
  flex-direction: row-reverse;
}

.pickup-menu__img {
  width: 50%;
  aspect-ratio: 4/3;
}

.pickup-menu__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pickup-menu__info {
  width: 50%;
}

.pickup-menu__title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 15px;
}

.pickup-menu__sub-title {
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.pickup-menu__name {
  font-size: 2.5rem;
}

.pickup-menu__name span {
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 5px;
}

.pickup-menu__price {
  font-size: 1.4rem;
}

.pickup-menu__underline {
  height: 1px;
  width: 110%;
  background-color: currentColor;
  margin: 5px 0 15px;
  position: relative;
  left: -10%;
}

.pickup-menu__item:nth-child(even) .pickup-menu__underline {
  right: -25%;
  left: 0;
}

@media screen and (max-width: 768px) {
  .pickup-menu__item {
    margin-bottom: 50px;
  }

  .pickup-menu__item .flex-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .pickup-menu__item:nth-child(even) .flex-wrapper {
    flex-direction: column;
  }

  .pickup-menu__img {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .pickup-menu__info {
    width: 100%;
  }

  .pickup-menu__name {
    font-size: 2rem;
  }

  .pickup-menu__name span {
    font-size: 1.3rem;
  }

  .pickup-menu__price {
    font-size: 1.3rem;
  }

  .pickup-menu__underline {
    width: 100%;
    left: auto;
  }

  .pickup-menu__item:nth-child(even) .pickup-menu__underline {
    right: auto;
  }
}

/*------------------------------
   Bar Time
------------------------------*/
.bar-time {
  background: #141414;
  color: #fff;
}

.bar-time__btn-wrapper {
  text-align: center;
}

/*------------------------------
   Any Time
------------------------------*/
.any-time {
  background: #E7E7E7;
}

.ent-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/*------------------------------
   Ent List
------------------------------*/
.ent-list__item {
  width: 30%;
  background-color: #141414;
}

.ent-list__item a {
  position: relative;
  display: block;
  transition: all 0.3s;
}

.ent-list__item a:hover {
  opacity: 0.9;
}

.ent-list__item-img {
  height: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  opacity: 0.7;
}

.ent-list__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.ent-list__item a:hover img {
  transform: scale(1.1);
}

.ent-list__item-title-wrap{
  position: absolute;
  bottom: 8%;
  left: 5%;
  width: 95%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.ent-list__item-title {
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  white-space: nowrap;
}

.ent-list__item-line {
  flex-grow: 1;
  height: 1px;
  background-color: currentColor;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .ent-list {
    flex-wrap: wrap;
    gap: 20px;
  }

  .ent-list__item {
    width: calc(50% - 10px);
  }

  .ent-list__item-img {
    aspect-ratio: 16/9;
  }

  .ent-list__item:first-of-type {
    width: 100%;
  }

  .ent-list__item-title {
    letter-spacing: 0.2em;
    font-size: 1.2rem;
    white-space: wrap;
  }
}