@charset "UTF-8";

/*  ----------------------------------------------------------
  Section 1: ORIGINAL POKE BOWL
----------------------------------------------------------  */
.menu-original {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 4rem;
  width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
.menu-original-banner {
  margin-bottom: 1.5rem;
}
.menu-original-banner img {
  width: 100%;
  height: auto;
}
.menu-original-price {
  font-family: "Inter", sans-serif;
  color: #b40413;
  text-align: right;
}
.menu-original-price .price-main {
  font-size: 3.6rem;
  font-weight: bold;
  display: block;
  line-height: 1.2;
}
.menu-original-price .price-all {
  font-weight: 600;
}
.menu-original-price .price-tax {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .menu-original-price {
    text-align: center;
  }
  .menu-original-price .price-main {
    font-size: 4.6rem;
  }
  .menu-original {
    width: auto;
    margin-top: 40px;
    padding: 0 3rem;
  }
  .menu-original-price .price-tax {
    font-size: 2.6rem;
    display: block;
    margin-top: 0.3rem;
  }
}

/*  ----------------------------------------------------------
  Section 2: メニュー一覧
----------------------------------------------------------  */
.menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 3rem;
  justify-content: center;
  margin-bottom: 6rem;
  width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.menu-item {
  width: calc((100% - 3rem * 2) / 3);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-direction: column;
}
.menu-item-img {
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.menu-item-img img {
  width: 21rem;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
}
.menu-item-info {
  flex: 1;
  padding-top: 0.5rem;
}
.menu-item-en {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #009ea5;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}
.menu-item-ja {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.menu-item-desc-ja {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.2rem;
  color: #000;
  letter-spacing: -0.01em;
}
.menu-item-desc-en {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .menu-items {
    width: auto;
    padding: 0 3rem;
    gap: 6rem 0;
  }
  .menu-item {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .menu-item-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .menu-item-img img {
    width: 27.3rem;
  }
  .menu-item-info {
    padding-top: 0;
  }
  .menu-item-en {
    font-size: 2.4rem;
  }
  .menu-item-ja {
    font-size: 2.5rem;
  }
  .menu-item-desc-ja{
    font-size: 2rem;
  }
  .menu-item-desc-en{
    font-size: 2rem;
  }
}

/*  ----------------------------------------------------------
  Section 3: CUSTOMIZED POKE BOWL
----------------------------------------------------------  */
.menu-custom {
  margin-bottom: 6rem;
  width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.menu-custom-banner {
  margin-bottom: 2rem;
  text-align: center;
}
.menu-custom-banner img {
  width: 100%;
  height: auto;
  transform: rotate(-5deg);
}

.menu-custom-prices {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}
.menu-custom-price {
  text-align: right;
  font-family: "Inter", sans-serif;
  color: #b40413;
}
.price-size {
  font-size: 3.6rem;
  font-weight: bold;
  margin-right: 0.3rem;
}
.price-amount {
  font-size: 3.6rem;
  font-weight: bold;
}
.price-tax {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 0.2rem;
}
.menu-custom-photos {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.menu-custom-photos img {
  width: calc(25% - 0.75rem);
  height: 14rem;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .menu-custom {
    width: auto;
  }
  .menu-custom-prices {
    flex-direction: column;
    gap: 2rem;
    padding: 0 3rem;
  }
  .menu-custom-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid rgba(180, 4, 19, 0.2);
    padding-bottom: 2rem;
  }
  .menu-custom-price:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .price-size,
  .price-amount {
    font-size: 3.4rem;
  }
  .price-tax {
    display: inline;
    font-size: 1.8rem;
    margin-top: 0;
    margin-left: 1rem;
  }
  .menu-custom-photos {
    width: auto;
    padding: 0 3rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .menu-custom-photos img {
    width: calc(50% - 0.5rem);
    height: 12rem;
    object-position: bottom;
  }
  .menu-custom-photos img:nth-child(n + 2) {
    object-position: center 70%;
  }
}
