@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: 1075px;
  overflow: hidden;
}

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

.mainVisual h1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 0;
}
.open .mainVisual h1 {
  animation: slideZoomReset 1.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 1.2s;
}
.main_visual_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.kv_line {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.open .kv_line {
  animation: zoomInOut 1.5s ease-in-out forwards;
  animation-delay: 2.5s;
}
.kv_copy02 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.kv_product01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.open .kv_product01 {
  animation: fadeIn 2.2s ease-out 1 both;
  animation-delay: 0.7s;
}
.kv_product02 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.open .kv_product02 {
  animation: fadeIn 2.2s ease-out 1 both;
  animation-delay: 0.7s;
}
.kv_title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
}
.open .kv_title {
  animation: fadeIn 2.2s ease-out 1 both;
  animation-delay: 0.4s;
}


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

@keyframes slideZoomReset {
  0% {
    opacity: 0;
    transform: translateX(-100px) scale(1);
  }
  
  50% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  75% {
    opacity: 1;
    transform: translateX(0) scale(1.2);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(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;
  text-align: center;
  background-attachment: fixed;
}

.menuInner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background-color: #FEFEFE;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.menuInner ul li {
  width: 100%;
}

#menu01 {
  position: relative;
  padding: 60px 0 210px;
  background: url(../img/bg02.jpg) no-repeat;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

#menu01 .fukidashi {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
}
#menu01.is-show .fuki01 {
  animation: flyInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 1s;
}
#menu01.is-show .fuki_text01 {
  animation: fadeInText 0.8s ease forwards 0.8s;
  animation-delay: 2s;
}
#menu01.is-show .fuki02 {
  animation: flyInRight 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 2s;
}
#menu01.is-show .fuki_text02 {
  animation: fadeInText 0.8s ease forwards 0.8s;
  animation-delay: 3s;
}

#menu02 {
  margin-top: -140px;
  padding: 240px 0 120px;
  background: url(../img/bg03.jpg) no-repeat;
  background-size: cover;
}

/* 左からふわふわ登場 */
@keyframes flyInLeft {
  0% {
    opacity: 0;
    transform: translateX(-120px) translateY(15px);
  }
  30% {
    transform: translateX(-80px) translateY(-15px);
  }
  60% {
    transform: translateX(-30px) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* 右からふわふわ登場 */
@keyframes flyInRight {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(-15px);
  }
  40% {
    transform: translateX(70px) translateY(15px);
  }
  70% {
    transform: translateX(20px) translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* 文字のフェードイン＆持ち上がり */
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(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;
  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;
}

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

/* ========================================
   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 {
    max-width: 100%;
    padding: 0;
  }
  .menuInner ul li {
    padding: 30px 0;
  }
  .menuInner ul img {
    max-width: 100%;
  }

  #menu01 {
    padding: 50px 0 90px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }
  #menu01 .fukidashi {
    top: 50px;
  }
  #menu02 {
    margin-top: -150px;
    padding: 180px 0 80px;
  }

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

@media screen and (min-width: 1921px) {
  .mainVisual {
    height: 100vh;
  }
}

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

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