@charset "UTF-8";

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

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

main {
  position: relative;
  overflow: hidden;
}

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

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

.mainVisual {
  position: relative;
  margin: 0 auto;
  height: 100vh;
  overflow: hidden;
}

.mainVisual h1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 0;
}
.open .mainVisual h1 {
  animation: fadeIn 2.2s ease-out 1 both;
  animation-delay: 0.7s;
}
.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.copy02 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
}
.open .copy02 {
  animation: fadeIn 2.2s ease-out 1 both;
  animation-delay: 0.7s;
}
.copy03 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-80%, -120%);
  z-index: 20;
}
.open .copy03 {
  animation: bounceInDiagonal 2.8s linear forwards;
  animation-delay: 2s;
}


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

/* 左斜め上から放射状に落下 → 着地後に右へずれながら2回バウンド（左に戻さない） */
@keyframes bounceInDiagonal {
  0% {
    transform: translate(-80%, -120%);
  }
  52% {
    transform: translate(-8%, 0);
  }
  68% {
    transform: translate(-4%, -8%);
  }
  80% {
    transform: translate(-2%, 0);
  }
  90% {
    transform: translate(-0.5%, -3.5%);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ========================================
   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;
  text-align: center;
  background-attachment: fixed;
}

.menuInner {
  width: 100%;
  max-width: 980px;
  /* height: 100vh; */
  margin: 0 auto;
  background-color: #FEFEFE;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 70px 0 90px;
}

.menuInner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.menuInner ul li {
  padding: 70px 0;
}

.linkBtn {
  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;
  left: 6%;
  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;
}

.linkBtn.pr {
  background-image: unset;
  background-color: #009EE7;
}

/* ========================================
   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;
  }

  .mainVisual {
    aspect-ratio: 25 / 41;
    width: 100%;
    max-height: 615px;
    height: 100vh
  }

  .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;
  }

  .menuInner ul li {
    padding: 30px 0;
  }
  .menuInner ul img {
    max-width: 100%;
  }
  .menuInner ul #menu04 img {
    max-width: 80%;
  }

  .menuInner {
    max-width: 100%;
    padding: 0 0 110px;
  }

  .menuInner ul li {
    padding: 30px 0;
  }

  .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.pr {
    margin-top: 20px;
  }
  .linkBtn.app {
    background-image: unset;
    background-color: #D5242E;
    margin-top: 20px;
  }
}

@media screen and (min-width: 992px) {
  .copy,
  .copy02,
  .copy03 {
    width: 100%;
    height: 100vh;
  }
  .copy img,
  .copy02 img,
  .copy03 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

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

@media screen and (min-width:560px) and (max-width: 991px) {
  .mainVisual {
    height: 38vh;
  }
}