@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;
  min-height: 822.5px;
  background-image: url(../img/main_visual.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mainVisual h1 {
  position: absolute;
  width: min(18.38541666666667vw,353px);
  top: 3%;
  left: 8.33%;
  z-index: 10;
}
.copy01 {
  position: absolute;
  width: min(16.71875vw,321px);
  top: 0.89vw;
  right: 4.9vw;
  z-index: 10;
}
.copy02 {
  position: absolute;
  width: min(16.71875vw,321px);
  top: 0.89vw;
  right: 4.9vw;
  z-index: 20;
  animation: zoom 0.8s ease-out forwards;
  animation-delay: 1s;
}
.copy03 {
  position: absolute;
  width: min(16.71875vw,321px);
  top: 0.89vw;
  right: 4.9vw;
  z-index: 20;
  animation: zoom 0.8s ease-out forwards;
  animation-delay: 1s;
}
.copy04 {
  position: absolute;
  width: min(16.71875vw,321px);
  top: 0.89vw;
  right: 4.9vw;
  z-index: 20;
  animation: zoom 0.8s ease-out forwards;
  animation-delay: 1s;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.08);
  }

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


/* ========================================
   mainCopy
   ======================================== */

.mainCopy {
  position: relative;
  background: url(../img/bg02.png);
  background-size: cover;
  text-align: center;
  height: 980px;
  overflow: hidden;
  padding: 100px 0 415px;
}
.mainCopy .tuna01 {
  position: absolute;
  top: 2vw;
  animation: swim-right linear infinite;
  animation-duration: 14s;
  width: 180px;
}
.mainCopy .tuna02 {
  position: absolute;
  bottom: 16vw;
  animation: swim-left linear infinite;
  animation-duration: 16s;
  width: 180px;
}

@keyframes swim-left {
  0% { left: -180px; transform: scaleX(-1); } 
  49% { transform: scaleX(-1); } 
  50% { left: calc(100vw + 180px); transform: scaleX(1); }
  100% { left: -180px; transform: scaleX(1); }
}
@keyframes swim-right {
  0% { right: -180px; transform: scaleX(-1); } 
  49% { transform: scaleX(-1); } 
  50% { right: calc(100vw + 180px); transform: scaleX(1); }
  100% { right: -180px; transform: scaleX(1); }
}

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

.menuArea {
  position: relative;
  background: url(../img/bg01.jpg) repeat-y;
  background-size: 100%;
  text-align: center;
}

.menuInner {
  width: 100%;
  max-width: 1184px;
  margin: 0 auto;
  padding: 0 0 120px;
}

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

.menuInner ul li {
  padding: 50px 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: 200px;
  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;
  width: min(13vw,250px);
}

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

/* ========================================
   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 (min-width: 1921px) {
  .mainVisual {
    min-height: 1400px;
  }
  .mainVisual h1 {
    left: calc(50% - 24vw);
    transform: translateX(-50%);
  }
  .copy01,
  .copy02,
  .copy03,
  .copy04 {
    right: 5vw;
  }
  .copy01 img,
  .copy02 img,
  .copy03 img,
  .copy04 img {
    max-width: 100%;
  }
  .mainCopy {
    height: 1300px;
    background-position: center bottom;
  }
}

@media screen and (max-width: 700px) {
  .pc_view {
    display: none !important;
  }

  .mainVisual {
    background-image: url(../img/main_visual_sp.jpg);
    min-height: 690px;
  }

  .mainVisual h1 {
    width: 170px;
    top: 27px;
    left: 17px;
  }
  .copy01 {
    width: 146px;
    top: 24px;
    right: 22px;
  }
  .copy02 {
    width: 59px;
    top: 87px;
    right: 28px
  }
  .copy03 {
    width: 59px;
    top: 4px;
    right: 77px;
  }
  .copy04 {
    width: 59px;
    top: 170px;
    right: 77px;
  }  

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


  /* ========================================
    mainCopy
    ======================================== */

  .mainCopy {
    background: url(../img/bg02_sp.png);
    background-size: 100%;
    height: 370px;
    padding: 15px 0 0;
  }
  .mainCopy .tuna01 {
    top: 10px;
    width: 53px;
  }
  .mainCopy .tuna02 {
    bottom: 110px;
    width: 63px;
  }

  @keyframes swim-left {
    0% { left: -63px; transform: scaleX(-1); } 
    49% { transform: scaleX(-1); } 
    50% { left: calc(100vw + 63px); transform: scaleX(1); }
    100% { left: -63px; transform: scaleX(1); }
  }
  @keyframes swim-right {
    0% { right: -53px; transform: scaleX(-1); } 
    49% { transform: scaleX(-1); } 
    50% { right: calc(100vw + 53px); transform: scaleX(1); }
    100% { right: -53px; transform: scaleX(1); }
  }

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

  .menuArea {
    background: url(../img/bg01_sp.jpg) repeat-y;
    background-size: cover;
  }

  .menuInner ul li {
    padding: 15px 0;
  }
  .menuInner ul img {
    max-width: 100%;
  }
  .menuInner ul #menu05 img {
    max-width: 190px;
  }

  .menuInner {
    max-width: 100%;
    padding: 30px 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.app {
    background-image: unset;
    background-color: #D70C18;
    margin-top: 20px;
  }

  .sudachi:nth-child(1) { top: 22px; left: 15px; right: unset; }
  .sudachi:nth-child(2) { top: 146px; right: 10px; left: unset; }
  .sudachi:nth-child(3) { top: 340px; left: 35px; right: unset; }
  .sudachi:nth-child(4) { top: 600px; left: 25px; }
  .sudachi:nth-child(5) { display: none; }
  .sudachi:nth-child(6) { top: 840px; right: 10px; left: unset; }
  .sudachi:nth-child(7) { top: 1160px; left: 15px; right: unset; }
  .sudachi:nth-child(8) { top: 1290px; right: 10px; left: unset; }
  .sudachi:nth-child(9) { top: 1500px; left: 25px; right: unset; }
  .sudachi:nth-child(10) { top: 1775px; right: 5px; left: unset; }
  .sudachi:nth-child(11) { top: 1900px; left: 15px; right: unset; }
  .sudachi:nth-child(12) { top: 2000px; left: unset; right: 15px; }
  .sudachi:nth-child(13) { top: 2400px; left: 20px; right: unset; }
  .sudachi:nth-child(14) { top: 2530px; right: 25px; left: unset; }
  .sudachi:nth-child(15) { top: 2690px; left: 15px; right: unset; }
  .sudachi:nth-child(16) { display: none; }

  .size01 img {
    width: 35px;
  }
  .size02 img {
    width: 28px;
  }

  .p-gotop img {
    width: 80px;
  }
}

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