.cont__center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cont__center > * {
  min-height: 0%;
}

.special__container, .limited__container, .receipt__container, .gumi__container, .food__container, .cont__container {
  box-sizing: content-box !important;
  max-width: 89.3333333333vw;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* common:start */
[v-cloak] {
  display: none;
}

.js-fade {
  opacity: 0;
  transition: 0.8s all;
  transform: translateY(5%);
}
.js-fade-active {
  opacity: 1;
  transform: translateX(0) translateY(0) !important;
}

.js-fade-product {
  opacity: 0;
  transition: 1.2s all;
  transform: translateY(10%);
}
.js-fade-product-active {
  opacity: 1;
  transform: translateY(0) !important;
}

.js-fade-deray {
  opacity: 0;
  transition: 1.2s all;
}
.js-fade-deray-active {
  opacity: 1;
  transform: translateX(0) !important;
}

.js-fade-list {
  opacity: 0;
}
.js-fade-list li {
  opacity: 0;
  transition: 0.8s all;
  transform: translateY(5%);
}
.js-fade-list-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* common:end */
/* kv:start */
.kv {
  max-width: 100%;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  user-select: none;
}
.kv__title {
  margin: 0;
}

/* kv:end */
/* nav:start */
.nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 54px;
  left: 0;
  transition: opacity 0.2s;
  width: 100%;
  height: calc(100% - 54px);
  background-color: #ffffff;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}
.nav.active {
  opacity: 1;
  pointer-events: all;
}
.nav__items {
  width: 100%;
}
.nav__childs {
  display: none;
  width: 100%;
  background-color: #fff;
  padding: 4vw 0;
}
.nav__child {
  border-bottom: 0.5333333333vw solid #000000;
  position: relative;
  font-size: 4.2666666667vw;
}
.nav__child:last-child {
  margin-bottom: 0;
}
.nav__child a {
  display: block;
  padding: 3.2vw 8vw;
  color: #000000;
  font-weight: bold;
}
.nav__child::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4.9333333333vw;
  background-image: url(../img/nav_child_arrow.png);
  background-position: left;
  background-repeat: repeat;
  background-size: cover;
  width: 2.2666666667vw;
  height: 4.5333333333vw;
  content: "";
}
.nav__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  outline: none !important;
  padding: 0;
  appearance: none;
  background-color: #ffffff;
  width: 100%;
  height: 11.6vw;
}
.nav__button.active .nav__button-icon {
  background-color: transparent;
}
.nav__button.active .nav__button-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.nav__button.active .nav__button-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav-fixed {
  overflow: hidden;
}

/* nav:end */
/* hamburger:start */
.hamburger {
  position: sticky;
  top: 54px;
  z-index: 999;
}
.hamburger__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  outline: none !important;
  padding: 0;
  appearance: none;
  background-color: #000000;
  width: 100%;
  height: 11.6vw;
}
.hamburger__button.active .nav__button-icon {
  background-color: transparent;
}
.hamburger__button.active .nav__button-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger__button.active .nav__button-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* hamburger:end */
/* food:start */
.food {
  position: relative;
  background-color: #0064af;
  background: linear-gradient(rgb(0, 100, 175), rgb(0, 61, 118) 35%, rgb(0, 61, 118) 100%);
}
.food::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/bg_blue.png);
  background-position: top left;
  background-size: 30.5333333333vw;
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.125;
}
.food::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/common_line.png);
  background-position: top left;
  background-size: contain;
  background-repeat: repeat-x;
  height: 2vw;
  width: 100%;
  bottom: 0;
  left: 0;
}
.food__container {
  padding-top: 10.6666666667vw;
  padding-bottom: 13.3333333333vw;
  position: relative;
  z-index: 100;
}
.food__title {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.food__contents {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8vw;
  padding: 6.6666666667vw 2.6666666667vw;
  background-image: url(../img/food_bg.png);
  background-size: cover;
}
.food__content {
  width: 40.6666666667vw;
  margin-right: 2.6666666667vw;
}
.food__content:nth-child(2n) {
  margin-right: 0;
}
.food__content img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  user-select: none;
}
.food__caution {
  font-size: 2.9333333333vw;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.4545454545;
  margin-top: 10vw;
  margin-bottom: -1.3333333333vw;
}
.food__caution li {
  padding-left: 1em;
  text-indent: -1em;
}

/* product:end */
/* gumi:start */
.gumi {
  position: relative;
}
.gumi::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/bg_green.png);
  background-position: top left;
  background-size: 30.5333333333vw;
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.gumi::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/common_line.png);
  background-position: top left;
  background-size: contain;
  background-repeat: repeat-x;
  height: 2vw;
  width: 100%;
  bottom: 0;
  left: 0;
}
.gumi__container {
  padding-top: 10.6666666667vw;
  padding-bottom: 13.3333333333vw;
  position: relative;
  z-index: 100;
}
.gumi__title {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.gumi__contents {
  margin-top: 8vw;
}
.gumi__image {
  width: 58.6666666667vw;
  margin: 0 auto;
}
.gumi__image img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  user-select: none;
}
.gumi__texts {
  margin-top: 4vw;
}
.gumi__text {
  width: 87.6vw;
  margin: 0 auto 4.6666666667vw;
}
.gumi__text-top {
  font-size: 3.7333333333vw;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5714285714;
  margin-top: -1.8666666667vw;
  margin-bottom: -1.8666666667vw;
  letter-spacing: 0em;
}
.gumi__text-top span {
  font-size: 2.9333333333vw;
}
.gumi__text-caution {
  margin-top: 3.6vw;
  font-size: 2.9333333333vw;
  font-weight: bold;
  color: #ffffff;
  padding-left: 1.15em;
  text-indent: -1.15em;
}
.gumi__text-bottom {
  font-size: 4.2666666667vw;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.3;
  margin-top: 3.6vw;
  margin-bottom: -1.8666666667vw;
  letter-spacing: 0.04em;
  padding-left: 0.7122507123%;
}
.gumi__text-bottom-small {
  font-size: 2.9333333333vw;
}
.gumi__text-bottom-large {
  font-size: 4.2666666667vw;
}
.gumi__term {
  width: 64.5333333333vw;
  margin-top: 4.4vw;
}
.gumi__caution {
  font-size: 2.9333333333vw;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.4545454545;
  margin-top: 10vw;
  margin-bottom: -1.3333333333vw;
}
.gumi__caution li {
  padding-left: 1em;
  text-indent: -1em;
}

/* drink:end */
/* receipt:start */
.receipt {
  position: relative;
  background-color: #0064af;
  background: linear-gradient(rgb(0, 100, 175), rgb(0, 61, 118) 35%, rgb(0, 61, 118) 100%);
}
.receipt::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/bg_blue.png);
  background-position: top left;
  background-size: 30.5333333333vw;
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.15;
}
.receipt::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/common_line.png);
  background-position: top left;
  background-size: contain;
  background-repeat: repeat-x;
  height: 2vw;
  width: 100%;
  bottom: 0;
  left: 0;
}
.receipt__container {
  padding-top: 10vw;
  padding-bottom: 13.3333333333vw;
  position: relative;
  z-index: 100;
}
.receipt__title {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 8.6666666667vw;
}
.receipt__note {
  font-size: 3.7333333333vw;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5714285714;
  margin-top: -1.8666666667vw;
  margin-bottom: -1.8666666667vw;
  letter-spacing: 0.04em;
}
.receipt__note-caution {
  font-size: 2.9333333333vw;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  margin-top: 6.1333333333vw;
  margin-bottom: -1.8666666667vw;
  letter-spacing: 0.04em;
}
.receipt__contents {
  margin-top: 7.3333333333vw;
  padding: 4.6666666667vw 4vw;
  background-image: url(../img/receipt_bg.png);
  background-size: cover;
}
.receipt__subtitle {
  width: 81.6vw;
  margin: 0 auto 2%;
}
.receipt__item {
  width: geVw(610);
  margin-top: 3.2vw;
}
.receipt__item:not(:first-child) {
  margin-top: 3.8666666667vw;
}
.receipt__item img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  user-select: none;
}
.receipt__rules {
  margin-top: 5.3333333333vw;
}
.receipt__rule:nth-child(n+2) {
  margin-top: 2.6666666667vw;
}
.receipt__btn {
  width: wi 89.2vw;
  margin: 8vw auto 0;
}
.receipt__caution {
  font-size: 2.9333333333vw;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.4545454545;
  margin-top: 10vw;
  margin-bottom: -1.3333333333vw;
}
.receipt__caution li {
  padding-left: 1em;
  text-indent: -1em;
}
.receipt__blacket-left {
  margin-left: -0.5em;
}
.receipt__blacket-right {
  margin-right: -0.5em;
}
.receipt__time {
  margin-left: -0.25em;
  margin-right: -0.25em;
}

/* goods:end */
/* limited:start */
.limited {
  position: relative;
}
.limited::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/bg_green.png);
  background-position: top left;
  background-size: 30.5333333333vw;
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.limited::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/common_line.png);
  background-position: top left;
  background-size: contain;
  background-repeat: repeat-x;
  height: 2vw;
  width: 100%;
  bottom: 0;
  left: 0;
}
.limited__container {
  padding-top: 10.6666666667vw;
  padding-bottom: 13.3333333333vw;
  position: relative;
  z-index: 100;
}
.limited__title {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 8vw;
}
.limited__image {
  width: 100%;
}
.limited__image img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  user-select: none;
}
.limited__name {
  width: 89.4666666667vw;
  margin-top: 5.3333333333vw;
}
.limited__name-caution {
  font-size: 2.9333333333vw;
  line-height: 1.4545454545;
  margin-top: 3.6vw;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 8.2666666667vw;
  padding-left: 1em;
  text-indent: -1em;
}
.limited__text-top {
  font-size: 4.2666666667vw;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.0625;
  margin-top: -1.8666666667vw;
  margin-bottom: -1.8666666667vw;
  letter-spacing: 0.04em;
}
.limited__text-top span {
  font-size: 5.3333333333vw;
}
.limited__text-bottom {
  font-size: 3.7333333333vw;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5714285714;
  margin-top: 2.6666666667vw;
  margin-bottom: -1.8666666667vw;
  letter-spacing: 0.04em;
}
.limited__text-caution {
  font-weight: bold;
  color: #ffffff;
  margin-top: 4.2666666667vw;
  font-size: 2.9333333333vw;
  line-height: 1.6363636364;
  padding-left: 1em;
  text-indent: -1em;
}
.limited__btns {
  margin-top: 6.6666666667vw;
}
.limited__btn {
  width: 89.2vw;
  margin: 0 auto;
}
.limited__btn:nth-child(2) {
  margin-top: 5.6vw;
}
.limited__caution {
  font-size: 2.9333333333vw;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.4545454545;
  margin-top: 10vw;
  margin-bottom: -1.3333333333vw;
}
.limited__caution li {
  padding-left: 1em;
  text-indent: -1em;
}

/* drink:end */
/* special:start */
.special {
  position: relative;
  background-color: #0064af;
  background: linear-gradient(rgb(0, 100, 175), rgb(0, 61, 118) 35%, rgb(0, 61, 118) 100%);
}
.special::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/bg_blue.png);
  background-position: top left;
  background-size: 30.5333333333vw;
  background-repeat: repeat;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.15;
}
.special__container {
  padding-top: 10.6666666667vw;
  padding-bottom: 11.3333333333vw;
  position: relative;
  z-index: 100;
}
.special__title {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 8vw;
}
.special__text {
  width: 89.2vw;
  margin: 0 auto;
}
.special__image {
  width: 86.9333333333vw;
  margin: 5.0666666667vw auto 0;
}
.special__copy {
  font-size: 3.2vw;
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.3333333333;
  margin-top: 10.2666666667vw;
  padding-left: 1.45em;
  text-indent: -1.45em;
}
.special__caution {
  font-size: 2.9333333333vw;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.4545454545;
  margin-top: 10.2666666667vw;
  margin-bottom: -1.3333333333vw;
}
.special__caution li {
  padding-left: 1em;
  text-indent: -1em;
}

/* goods:end */