@charset "UTF-8";

/* ＝＝＝＝ Main Visual ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.mv__price {
  width: 100%;
  height: 100dvh;
  position: relative;
  background-size: cover;
  transform-origin: center;
  background-image: url(../img/subpage/price@1x.jpg);
  background-image: image-set(
    url(../img/subpage/price@1x.avif) 1x type("image/avif"),
    url(../img/subpage/price@2x.avif) 2x type("image/avif"),
    url(../img/subpage/price@3x.avif) 3x type("image/avif"),
    url(../img/subpage/price@1x.webp) 1x type("image/webp"),
    url(../img/subpage/price@2x.webp) 2x type("image/webp"),
    url(../img/subpage/price@3x.webp) 3x type("image/webp"),
    url(../img/subpage/price@1x.jpg) 1x type("image/jpeg"),
    url(../img/subpage/price@2x.jpg) 2x type("image/jpeg"),
    url(../img/subpage/price@3x.jpg) 3x type("image/jpeg")
  );
  background-position: center;
  background-repeat: no-repeat;
  animation-name: mvPrice;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes mvPrice {
  0% {background-position: 35%;}
  100% {background-position:50%;}
}


/* ＝＝＝＝ Price Plan ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.plan__list {
  margin-block-start: 2.5rem;
}

.plan__item {
  padding: 2rem;
  margin-block-start: 1.5rem;
  border: .0625rem solid var(--clr_text-main);
  border-radius: .5rem;
}

.plan__item.fpA {
  background-color: var(--clr_green-pale);
}

.plan__item.fpB {
  background-color: var(--clr_yellow-sub);
  color: #DDD;
}

.plan__item.sp {
  background-color: var(--clr_red-sub);
}

.plan__title {
  padding-block-end: .75rem;
  border-block-end: .0625rem solid var(--clr_text-main);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.plan__description {
  margin-block-start: .75rem;
}

.plan__price {
  padding: .5rem 0 ;
  margin-block-start: 2rem;
  border-radius: .5rem;
  background-color: var(--clr_text-main);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.plan__price.fpA {
  color: var(--clr_green-pale);
}

.plan__price.fpB {
  color: var(--clr_yellow-sub);
}

.plan__price.sp {
  color: var(--clr_red-sub);
}

.shotplan__price {
  padding-inline: 1rem;
  font-size: 1.25rem;
}

.shotplan__price--wrapper {
  display: block flex;
  justify-content: space-between;
}

html[lang="en"] .shotplan__price--wrapper dt {
  font-size: 1.125rem;
  letter-spacing: 0;
}

.shotplan__price--wrapper:nth-of-type(2) {
  border-block-start: .0625rem solid var(--clr_red-sub);
}

@media screen and (min-width: 60rem) {
.plan__list {
  display: block grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr auto;
  column-gap: 1rem;
}

.plan__item {
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  padding: 2rem 1rem;
  margin-block-start: 1.5rem;
  border: .0625rem solid var(--clr_text-main);
  border-radius: .5rem;
}

.plan__price.fpA,
.plan__price.fpB {
  line-height: 2;
}
}


/* ＝＝＝＝ Drink menu ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.drinkMenu__price {
  display: inline flow-root;
  border-block-end: .125rem solid var(--clr_green-accent2);
  font-size: 1.125rem;
  font-weight: 700;
}

.drinkMenu__price:nth-of-type(2),
.drinkMenu__price:nth-of-type(3) {
  margin-block-start: 4rem;
}

.drinkMenu__price + dd {
  margin-block-start: .5rem;
}

.drinkMenu__img {
  display: none;
}

@media screen and (min-width: 60rem) {
.drinkMenu .c-sectionFrame {
  padding: 4rem 2rem;
  display: block grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  grid-template-areas: 
    "free img"
    "shot img";
  column-gap: 2rem;
}

.drinkMenu__freePlan {
  grid-area: free;
}

.drinkMenu__shotPlan {
  grid-area: shot;
}

.drinkMenu__img {
  height: fit-content;
  display: block flow;
  grid-area: img;
  position: sticky;
  top: 8rem;
}
.drinkMenu__img img {
  width: 100%;
  height: auto;
  border-radius: .5rem;
}
}

@media screen and (min-width: 80rem) {
.drinkMenu__img {
  top: 2rem;
}
}
