@charset "UTF-8";

/* ========================================
   common
   ======================================== */

body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

#main p {
  font-size: 16px;
  text-align: center;
}

/* ========================================
   mainVisual
   ======================================== */

.mainVisual {
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.mainVisual img {
  width: 100%;
  display: block;
}

.mainVisual h1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.copy,
.copy02 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  width: 100%;
}
.copy03 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
}

.open .copy {
  animation: fadeIn 1.5s ease-out 1 both;
  animation-delay: 0.5s;
}
.open .copy02 {
  animation: fadeIn 1.5s ease-out 1 both;
  animation-delay: 2.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* ========================================
   linkWrap
   ======================================== */

.linkWrap {
  background-color: #B50007;
}
.linkWrap ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.linkWrap ul li {
  position: relative;
}
.linkWrap ul li a {
  position: relative;
  font-family: 'Noto Sans JP';
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding: 0 40px;
  color: #fff;
}
.linkWrap ul li a::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
}
.linkWrap ul li:last-child a::after {
  display: none;
}

/* ========================================
   menuArea
   ======================================== */

.menuArea {
  position: relative;
  background: url(../img/bg01.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
  text-align: center;
  background-attachment: fixed;
}

.menuInnerText {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: url(../img/bg03.png) no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 517px;
  display: grid;
  align-content: center;
}
.menuInnerText h3 {
  margin: 40px auto 16px;
}

.menuInner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 980px;
  margin: -45px auto 0;
  background: url(../img/bg02.jpg) no-repeat;
  background-size: cover;
  -webkit-overflow-scrolling: touch;
  padding: 310px 0 90px;
  display: flex;
  flex-direction: column;
}

.menuPoint .point01,
.menuPoint .point02,
.menuPoint .point03 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 15;
}

.bubble {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 16;
  mix-blend-mode: screen;
  pointer-events: none;
}
.bubble video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js-fade-up {
  opacity: 0;
}
.js-fade-up.is-visible {
  opacity: 1;
  animation: 
    fadeIn2 1.5s ease-out 1 both;
}
.js-fade-up.is-visible.text01 {
  animation-delay: 0.5s;
}
.js-fade-up.is-visible.text02 {
  animation-delay: 1.5s;
}
.js-fade-up.is-visible.text03 {
  animation-delay: 2.5s;
}

@keyframes fadeIn2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulseLoop {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.text01 {
  margin-top: -3em;
}
.menu {
  position: relative;
  z-index: 20;
  margin-top: 2em;
  padding-left: 2em;
}
.price {
  position: relative;
  z-index: 20;
  margin-top: 2em;
}
.attention {
  margin-top: 1.5em;
}

.linkBtn {
  position: relative;
  z-index: 20;
  display: block;
  width: 318px;
  margin: 60px auto 0;
  padding: 16px 0;
  border-radius: 60px;
  background-image: url(../img/bg_btn.png);
  color: #fff;
  font-size: 20px;
  text-align: center;
}

/* ========================================
   linksArea
   ======================================== */

.linksArea h2 {
  margin: 0 0 16px;
  font-size: 24px;
  text-align: center;
}

.linksArea .online {
  margin: 32px auto;
  max-width: 980px;
}

.linksArea .online ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.linksArea .online li {
  width: 24.5%;
}

.linksArea .online li img {
  border-radius: 5px;
}

.linksArea .variousLinks {
  margin-bottom: 40px;
}

.linksArea .mobileOrder {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.linksArea .shop {
  padding: 50px 0;
  background-color: #fff;
  text-align: center;
}

.linksArea .shop img {
  margin-top: 16px;
}


/* ========================================
   footer
   ======================================== */

#footer {
  padding-top: 40px;
}

/* ========================================
   QRコード
   ======================================== */

.qr {
  position: fixed;
  bottom: 300px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.qr img {
  max-width: min(13.02083333333333vw,250px);
}
.qr.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.qr.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ========================================
   p-gotop（ページトップへ）
   ======================================== */

.p-gotop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.p-gotop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.p-gotop.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ========================================
   レスポンシブ
   ======================================== */

@media screen and (max-width: 700px) {
  .pc_view {
    display: none !important;
  }
  
  .menuInnerText {
    max-width: 100%;
    aspect-ratio: 130 / 81;
    background: url(../img/bg03_sp.png) no-repeat;
    height: 100%;
    background-size: cover;
    padding: 0 9% 3%;
  }
  .menuInnerText h3 {
    margin: 2% auto 1%;
  }

  .menuInner {
    max-width: 100%;
    background: url(../img/bg02_sp.jpg) no-repeat;
    background-size: cover;
    margin: -5% auto 0;
    padding: 240px 0 120px;
  }

  .menu {
    margin-top: 0;
    padding-left: 0;
  }
  
  .menu img {
    max-width: 233px;
  }
  .price {
    margin-top: 6em;
  }
  .price img {
    max-width: 110px;
  }

  .linksArea .online ul {
    margin: 32px 6px;
  }

  .linksArea .online li.w100 {
    width: 100%;
    margin: 0 6px 6px;
    text-align: center;
  }

  .linksArea .online li.w100 img {
    width: 100%;
  }

  .linksArea .online li.w50 {
    width: 49%;
  }

  .linksArea .shop {
    padding: 50px 20px;
  }

  .linkBtn {
    position: relative;
    z-index: 100;
    width: 318px;
    font-size: 14px;
  }
  .linkBtn.app {
    background-image: unset;
    background-color: #008135;
    margin-top: 20px;
  }

  .p-gotop {
    width: 64px;
  }

  /* ========================================
    linkWrap
    ======================================== */

  .linkWrap {
    background-color: #880308;
    padding: 15px 10px 5px;
  }
  .linkWrap ul {
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100px;
  }
  .linkWrap ul li {
    position: relative;
    width: calc(100% / 2 - 5px);
    margin-bottom: 10px;
  }
  .linkWrap ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0;
    border-radius: 4px;
    background-color: #B50007;
    height: 40px;
  }
  .linkWrap ul li a::after {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .sp_view {
    display: none !important;
  }
}
