@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;
  z-index: 0;
  overflow: hidden;
}

.image-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--hero-height, 100vh); 
  z-index: 10;
  overflow: hidden;
}

.mainVisual h1 {
  margin: 0;
  width: 100%;
  height: 100%;
}

.mainVisual h1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.open .copy {
  position: absolute;
  width: min(25.20833333333333vw,484px);
  top: min(3.645833333333333vw,70px);
  left: min(3.645833333333333vw,70px);
  animation: fadeIn 1.5s ease-out 1 both;
  animation-delay: 1.5s;
  z-index: 20;
}
.open .copy02 {
  position: absolute;
  width: min(25.20833333333333vw,484px);
  top: min(10.41666666666667vw,200px);
  left: min(6.770833333333333vw,130px);
  animation: fadeIn 1.5s ease-out 1 both;
  animation-delay: 2s;
  z-index: 20;
}
.open .copy03 {
  position: absolute;
  width: min(37.86458333333333vw,727px);
  top: min(15.625vw,300px);
  left: min(8.59375vw,165px);
  animation: fadeIn 1.5s ease-out 1 both;
  animation-delay: 2.5s;
  z-index: 20;
}
.open .copy04 {
  position: absolute;
  width: min(30.05208333333333vw,577px);
  bottom: min(2.083333333333333vw,40px);
  left: min(3.645833333333333vw,70px);
  animation: fadeIn 1.5s ease-out 1 both;
  animation-delay: 3s;
  z-index: 20;
}

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

/* ========================================
   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;
  margin: 0 auto;
  background: url(../img/bg02.jpg) no-repeat;
  background-size: cover;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 60px 0 50px;
  display: flex;
  flex-direction: column;
}

.js-fade-up {
  opacity: 0;
}
.js-fade-up.is-visible {
  opacity: 1;
  animation: 
    fadeIn2 1.5s ease-out 1 both;
}

.js-fade-up.pulseLoop {
  opacity: 0;
  transform: translateY(30px) scale(0.96);  
  will-change: opacity, transform;
}
.js-fade-up.pulseLoop.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: pulseLoop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@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 {
  margin-top: 2em;
  padding-left: 2em;
}
.price {
  margin-top: -5em;
}
.attention {
  margin-top: 1.5em;
}

.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;
  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;
  }
  
  .open .copy {
    width: 218.5px;
    top: 30px;
    left: 30px;
  }
  .open .copy02 {
    width: 218.5px;
    top: 85px;
    left: 50px;
  }
  .open .copy03 {
    width: 364.5px;
    top: 110px;
    left: 55px;
  }
  .open .copy04 {
    width: 80px;
    top: 240px;
    bottom: unset;
    left: 30px;
  }

  .menuInner {
    max-width: 100%;
    background: url(../img/bg02_sp.jpg) no-repeat;
    background-size: cover;
    padding: 60px 0 50px;
  }

  .ttl img {
    max-width: 361px;
  }
  .text01 {
    margin-top: -2em;
  }
  .text01 img {
    max-width: 178px;
  }
  .text02 img {
    max-width: 284px;
  }
  .text03 img {
    max-width: 202px;
  }
  .menu {
    margin-top: .8em;
    padding-left: 2em;
  }
  .menu img {
    max-width: 225px;
  }
  .price {
    margin-top: -3em;
  }
  .price img {
    max-width: 166px;
  }
  .attention {
    margin-top: 1em;
  }
  .attention img {
    max-width: 218px;
  }

  .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: #009481;
    margin-top: 20px;
  }
}

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