@charset "utf-8";

body {
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .__s {
    display: none;
  }
}

/* ========== mv ========== */
.mv {
  aspect-ratio: 750 / 500;
}

@media screen and (min-width: 768px) {
  .mv {
    margin-top: 80px;
    aspect-ratio: 1440 / 540;
  }
}

/* ========== parts ========== */
.bg {
  background: center/cover url(../img/drink/limited-bg.webp);
}


.drinkItem {
  margin-top: 50px;
}
.drinkItem:first-of-type {
  margin-top: 25px;
}

.drinkItem-name {
  font-size: 2.3rem;
  font-weight: 700;
}

.drinkItem-price {
  position: relative;
  text-align: right;
  font-family: "din-condensed", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
}
.drinkItem-price::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  display: block;
  background-color: #d4d9dd;
}
.drinkItem-price::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 11%;
  height: 2px;
  display: block;
  background-color: #008fdb;
}

.drinkItem-price span::before {
  content: "¥";
  font-size: 0.55em;
}
.drinkItem-price span::after {
  content: "(税込)";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.45em;
}

.drinkItem-txt {
  margin-top: 15px;
}

.drinkItem-img {
  margin-top: 15px;
  aspect-ratio: 700 / 495;
  object-fit: cover;
}

.drinkItem-ttl {
  position: relative;
  margin-top: 30px;
  padding: 0.5em 1.5em;
  background-color: #2589d0;
  font-weight: 600;
  color: #fff;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.2s;
}
.drinkItem-ttl::before,
.drinkItem-ttl::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
  display: block;
  width: 1em;
  height: 2px;
  background-color: #fff;
  transition: rotate 0.3s;
}
.drinkItem-ttl::after {
  rotate: 90deg;
}
.drinkItem-ttl.is-open:after {
  rotate: 0deg;
}
@media (hover: hover) {
  .drinkItem-ttl:hover {
    opacity: 0.8;
  }
}

.drinkItem-table {
  margin-top: 15px;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
}
.drinkItem-table th {
  padding: 0.3em;
  background-color: #111;
  border: 1px solid #d4d9dd;
  color: #fff;
}
.drinkItem-table td {
  padding: 0.3em;
  background-color: #fff;
  border: 1px solid #d4d9dd;
  vertical-align: middle;
}
.drinkItem-table td:first-child {
  width: 55%;
}
.drinkItem-table td:nth-child(2) {
  width: 45%;
}

.drinkItem-notes > li {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff0000;
}
.drinkItem-notes > li::before {
  content: "※";
}

@media screen and (min-width: 768px) {
  .drinkItem {
    margin-top: 80px;
  }

  .drinkItem-main {
    display: flex;
    column-gap: 30px;
  }

  .drinkItem-block {
    width: calc((100% - 30px) / 2);
  }

  .drinkItem-name {
    font-size: 1.8rem;
  }
  
  .drinkItem-img {
    margin-top: 0;
    width: calc((100% - 30px) / 2);
  }

  .drinkItem-ttl {
    font-size: 1.8rem;
  }
}

/* ========== limited ========== */
#limited {
  padding: 50px 15px 60px;
  /* background: center/cover no-repeat url(../img/drink/limited-bg.webp); */
}

.limited-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 990px;
  padding: 30px 15px 40px;
  background-color: rgba(255 259 259 / 90%);
}

.limited-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.2em;
  text-align: center;
  font-size: 3.2rem;
}
.limited-headline::before {
  content: "";
  width: 40px;
  height: auto;
  aspect-ratio: 60 / 50;
  background: center/contain no-repeat url(../img/drink/icon-star.webp);
}

@media screen and (min-width: 768px) {
  #limited {
    padding: 80px 15px 140px;
  }

  .limited-inner {
    padding: 50px 40px 60px;
  }

  .limited-headline {
    font-size: 4.8rem;
  }
  .limited-headline::before {
    width: 60px;
  }
}

/* ========== limited ========== */
#beer {
  padding: 50px 15px 60px;
  /* background: center/cover url(../img/drink/beer-bg.webp); */
}

.beer-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 990px;
  padding: 30px 15px 50px;
  background-color: rgba(255 259 259 / 90%);
}

.beer-headline {
  text-align: center;
  font-size: 2.4rem;
}
.beer-headline img {
  width: 128px;
  aspect-ratio: 128 / 62;
}
.beer-headline span {
  display: block;
}

@media screen and (min-width: 768px) {
  #beer {
    padding: 80px 15px 140px;
  }

  .beer-inner {
    padding: 50px 40px 60px;
  }

  .beer-headline {
    font-size: 4.8rem;
  }
}
