@charset "UTF-8";
.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.heading {
  font-size: 40px;
  font-weight: bold;
}
.heading01 {
  font-size: 64px;
}
@media screen and (max-width: 767px) {
  .heading01 {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 32px;
  }
}

.mainvisual {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mainvisual .mainvisual-wrap {
  text-align: center;
  -webkit-animation: uptext 1s ease;
          animation: uptext 1s ease;
}
.mainvisual .mainvisual-wrap p {
  font-size: 32px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .mainvisual .mainvisual-wrap p {
    font-size: 24px;
  }
}
.mainvisual .character {
  display: block;
  width: 200px;
  -webkit-animation: jump ease-in-out forwards;
          animation: jump ease-in-out forwards;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  transform: translateY(-100vh);
}

@-webkit-keyframes jump {
  0% {
    transform: translateY(-100vh);
  }
  15% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-20vh);
  }
  45% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-5vh);
  }
  75% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(-2vh);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes jump {
  0% {
    transform: translateY(-100vh);
  }
  15% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-20vh);
  }
  45% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-5vh);
  }
  75% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(-2vh);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes uptext {
  0% {
    transform: translateY(-100vh);
  }
  20% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5vh);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(-2vh);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uptext {
  0% {
    transform: translateY(-100vh);
  }
  20% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5vh);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(-2vh);
  }
  100% {
    transform: translateY(0);
  }
}
#back-bn {
  position: fixed;
  right: 80px;
  bottom: 80px;
  z-index: 9998;
  opacity: 0;
  transition: all 1s;
}
@media screen and (max-width: 767px) {
  #back-bn {
    bottom: 100px;
    right: 16px;
  }
}
#back-bn.in {
  opacity: 1;
  cursor: pointer;
}

.botton-amine {
  position: relative;
  z-index: 100;
  display: block;
  width: 100%;
  max-width: 400px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  outline: none;
  margin: 40px auto 40px;
}
.botton-amine span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  line-height: 60px;
  font-size: 32px;
  border: 1px solid #333;
  transform-style: preserve-3d;
  transition: 0.5s;
}

.rotateback span:nth-child(1) {
  background: #fff;
  color: #333;
  transform: rotateX(0deg);
  transform-origin: 0 50% -25px;
}
.rotateback:hover span:nth-child(1) {
  transform: rotateX(90deg);
}
.rotateback span:nth-child(2) {
  background: #333;
  color: #fff;
  transform: rotateX(-90deg);
  transform-origin: 0 50% -25px;
}
.rotateback:hover span:nth-child(2) {
  transform: rotateX(0deg);
}

.scrooll {
  position: fixed;
  top: 64%;
  right: 10%;
  -webkit-animation: scroollup 1s ease-in-out infinite;
          animation: scroollup 1s ease-in-out infinite;
}
.scrooll.none {
  opacity: 0;
  z-index: -9999;
  transition: all 1s;
}
@media screen and (max-width: 767px) {
  .scrooll {
    top: 80%;
    left: 0;
    -webkit-animation: scroollupsp 1s ease-in-out infinite;
            animation: scroollupsp 1s ease-in-out infinite;
  }
}
.scrooll span {
  font-size: 64px;
  writing-mode: vertical-rl;
  position: relative;
}
@media screen and (max-width: 767px) {
  .scrooll span {
    font-size: 40px;
  }
}
.scrooll span::before {
  content: "";
  display: block;
  background-color: #333;
  height: 100%;
  width: 2px;
}
.scrooll span::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: 9px;
  right: -30px;
  transform: skewY(-30deg);
  background: #333;
}
@media screen and (max-width: 767px) {
  .scrooll span::after {
    width: 15px;
    right: -15px;
    bottom: 5px;
  }
}

@-webkit-keyframes scroollup {
  0% {
    top: 64%;
  }
  50% {
    top: 56%;
  }
  100% {
    top: 64%;
  }
}

@keyframes scroollup {
  0% {
    top: 64%;
  }
  50% {
    top: 56%;
  }
  100% {
    top: 64%;
  }
}
@-webkit-keyframes scroollupsp {
  0% {
    top: 80%;
  }
  50% {
    top: 72%;
  }
  100% {
    top: 80%;
  }
}
@keyframes scroollupsp {
  0% {
    top: 80%;
  }
  50% {
    top: 72%;
  }
  100% {
    top: 80%;
  }
}
footer {
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
}
footer .footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 48px 24px;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .f-menu {
    margin-bottom: 24px;
  }
}
footer .footer-wrap .f-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .f-menu ul {
    justify-content: center;
  }
}
footer .footer-wrap .f-menu ul li + li {
  margin-left: 40px;
}
footer .footer-wrap .f-menu ul li a {
  display: block;
  width: 100%;
  position: relative;
  padding: 8px 0;
  font-size: 24px;
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .f-menu ul li a {
    font-size: 16px;
  }
}
footer .footer-wrap .f-menu ul li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #333;
  border-radius: 50%;
  transform: scaleX(0);
  transition: all 0.3s ease;
}
footer .footer-wrap .f-menu ul li a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .copyright {
    text-align: center;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 48px 0;
}
@media screen and (max-width: 767px) {
  header .header-wrap {
    margin: 24px 16px 0;
  }
}
header .header-wrap .h-logo a {
  display: block;
  width: 80px;
}
header .header-wrap .h-logo a:hover {
  transform: rotate(360deg);
  transition: all 0.7s ease;
}
@media screen and (max-width: 767px) {
  header .header-wrap .h-logo a {
    width: 60px;
  }
}
header .header-wrap .hamburger {
  display: none;
  width: 60px;
  height: 60px;
  background: #333;
}
@media screen and (max-width: 767px) {
  header .header-wrap .hamburger {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    z-index: 9999;
  }
}
header .header-wrap .hamburger span {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 3px;
  margin-left: -20px;
  background: #fff;
  transition: all ease 0.5s;
}
header .header-wrap .hamburger span:nth-of-type(1) {
  top: 18px;
}
header .header-wrap .hamburger span:nth-of-type(2) {
  top: 28px;
}
header .header-wrap .hamburger span:nth-of-type(3) {
  top: 38px;
}
header .header-wrap .hamburger-none span:nth-of-type(1) {
  top: 28px;
  transform: rotate(-45deg);
}
header .header-wrap .hamburger-none span:nth-of-type(2) {
  top: 28px;
  opacity: 0;
}
header .header-wrap .hamburger-none span:nth-of-type(3) {
  top: 28px;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  header .header-wrap .h-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    z-index: 100;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 768px) {
  header .header-wrap .h-menu {
    display: block !important;
  }
}
header .header-wrap .h-menu.menuIn {
  top: 0;
}
header .header-wrap .h-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 767px) {
  header .header-wrap .h-menu ul {
    flex-direction: column;
    justify-content: center;
    margin-top: 100px;
  }
}
header .header-wrap .h-menu ul li + li {
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  header .header-wrap .h-menu ul li + li {
    margin-left: 0;
    margin-top: 40px;
  }
}
header .header-wrap .h-menu ul li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 0;
  text-decoration: none;
  color: #333;
  font-size: 32px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  header .header-wrap .h-menu ul li a {
    color: #fff;
    font-size: 56px;
  }
}
header .header-wrap .h-menu ul li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #333;
  border-radius: 50%;
  transform: scaleX(0);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  header .header-wrap .h-menu ul li a::after {
    background: #fff;
  }
}
header .header-wrap .h-menu ul li a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  color: #ffffff;
}

body {
  background-color: #8e0909;
}

.baktext {
  position: fixed;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  white-space: nowrap;
  font-size: 32vw;
  z-index: -999;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px #FFF;
}

section + section {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  section + section {
    margin-top: 26vw;
  }
}

h2 {
  margin-bottom: 64px;
  text-align: center;
  font-size: 96px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #FFF;
  text-stroke: 1px #FFF;
}
@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 9vw;
    font-size: 12vw;
  }
}
h2 .subTitle {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  h2 .subTitle {
    font-size: 3vw;
  }
}

.wholeContainer {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  background-color: #b22222;
}
@media screen and (max-width: 767px) {
  .wholeContainer {
    padding: 0 8px;
  }
}

.firstView {
  max-width: 768px;
  width: 100%;
  min-height: 880px;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  background-color: #b22222;
  background-image: url(../img/mainback.png);
  background-repeat: no-repeat;
  background-position: center 20px;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .firstView {
    background-position: center 13vw;
    min-height: 960px;
    overflow: hidden;
    background-size: 110%;
  }
}
@media screen and (max-width: 486px) {
  .firstView {
    background-position: center 22vw;
    min-height: 500px;
  }
}
.firstView::before, .firstView::after {
  content: "";
  display: block;
  width: 64%;
  height: 55%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/main_yuge.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  animation: yugeUp 2s ease-in-out infinite alternate-reverse;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  transition: all 1s;
}
@media screen and (max-width: 767px) {
  .firstView::before, .firstView::after {
    width: 80%;
    height: 42%;
  }
}
.firstView::before {
  top: 5%;
  transform: rotate(140deg);
}
@media screen and (max-width: 767px) {
  .firstView::before {
    transform: rotate(148deg);
    top: 8%;
  }
}
.firstView::after {
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .firstView::after {
    top: 8%;
  }
}
@-webkit-keyframes yugeUp {
  0% {
    translate: 0 0;
    opacity: 0.6;
  }
  100% {
    translate: 0 2%;
    rotate: 1deg;
    opacity: 0.6;
  }
}
@keyframes yugeUp {
  0% {
    translate: 0 0;
    opacity: 0.6;
  }
  100% {
    translate: 0 2%;
    rotate: 1deg;
    opacity: 0.6;
  }
}
.firstView h1 {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  transition: all 1s 1.2s;
  transform: scale(0.5);
  opacity: 0;
  font-size: 180px;
  text-align: center;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px #FFF;
  text-stroke: 1px #FFF;
}
.firstView h1.in {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  .firstView h1 {
    font-size: 24vw;
    padding-bottom: 16%;
  }
}
.firstView .mainImgWrap {
  position: absolute;
  top: 150px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
  overflow: visible;
  perspective: 800px;
  /* 奥行き追加で立体感 */
}
@media screen and (max-width: 767px) {
  .firstView .mainImgWrap {
    top: 22vw;
    padding-inline: 24px;
  }
}
@media screen and (max-width: 486px) {
  .firstView .mainImgWrap {
    top: 30vw;
  }
}
.firstView .mainImgWrap .mainImg {
  transition: all 1s;
  transform: scale(0) rotate(-720deg);
}
@media screen and (max-width: 767px) {
  .firstView .mainImgWrap .mainImg {
    max-width: 600px;
    width: 100%;
  }
}
.firstView .mainImgWrap .mainImg.in {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.firstView .sabText {
  position: absolute;
  top: 364px;
  right: 0%;
  transition: all 1s 2.5s;
  opacity: 0;
  font-size: 46px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #a9a9a9;
  text-stroke: 1px #a9a9a9;
  writing-mode: vertical-rl;
}
.firstView .sabText.in {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .firstView .sabText {
    font-size: 6vw;
    top: 42vw;
    right: 2%;
    -webkit-text-stroke: 1px #b8b6b6;
    text-stroke: 1px #b8b6b6;
  }
}
@media screen and (max-width: 486px) {
  .firstView .sabText {
    top: 48vw;
  }
}
.firstView .commentText {
  position: absolute;
  top: 732px;
  right: 10%;
  transition: all 1s 2.5s;
  opacity: 0;
  font-size: 10px;
  color: #a9a9a9;
}
.firstView .commentText.in {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .firstView .commentText {
    font-size: 1.6vw;
    top: 116vw;
    right: 6%;
  }
}
@media screen and (max-width: 486px) {
  .firstView .commentText {
    top: 124vw;
  }
}

.scroll {
  display: block;
  position: absolute;
  transition: opacity 1s 2.5s;
  opacity: 0;
  bottom: 20%;
  left: 20px;
  writing-mode: sideways-rl;
  font-size: 12px;
}
.scroll.in {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .scroll {
    bottom: 24%;
  }
}
.scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 54px;
  position: absolute;
  top: 36px;
  right: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  -webkit-animation: line-anime 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: line-anime 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@-webkit-keyframes line-anime {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  40% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  40.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  80%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes line-anime {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  40% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  40.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  80%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.historyWrap {
  position: relative;
  padding-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .historyWrap {
    padding-bottom: 23vw;
  }
}
.historyWrap ol {
  list-style: none;
}
.historyWrap ol li {
  max-width: 386px;
  width: 100%;
  margin-top: 96px;
}
@media screen and (max-width: 767px) {
  .historyWrap ol li {
    width: 50%;
    margin-top: 6vw;
  }
}
.historyWrap ol li:nth-child(2n+1) {
  margin: 0 0 0 auto;
}
.historyWrap ol li:first-of-type {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .historyWrap ol li:first-of-type {
    margin-top: 26vw;
  }
}
.historyWrap ol li:last-of-type {
  margin-top: 88px;
}
.historyWrap ol li h3 {
  font-size: 40px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .historyWrap ol li h3 {
    font-size: 5vw;
    margin-bottom: 8px;
  }
}
.historyWrap ol li h3 span {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .historyWrap ol li h3 span {
    font-size: 3vw;
  }
}
.historyWrap ol li p {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .historyWrap ol li p {
    font-size: 2.8vw;
  }
}
.historyWrap .backimg {
  position: absolute;
  top: 16%;
  left: 30%;
  display: block;
  width: 256px;
}
@media screen and (max-width: 767px) {
  .historyWrap .backimg {
    width: 33vw;
    top: 14%;
  }
}

.chosenWrap ul {
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .chosenWrap ul {
    padding-inline: 5vw;
  }
}
.chosenWrap ul li {
  position: relative;
}
.chosenWrap ul li + li {
  margin-top: 124px;
}
@media screen and (max-width: 767px) {
  .chosenWrap ul li + li {
    margin-top: 16vw;
  }
}
.chosenWrap ul li:nth-of-type(2) img {
  margin-inline: auto 0;
}
.chosenWrap ul li:nth-of-type(2) p {
  left: 0;
}
.chosenWrap ul li img {
  max-width: 400px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .chosenWrap ul li img {
    width: 72%;
  }
}
.chosenWrap ul li p {
  max-width: 400px;
  width: 100%;
  position: absolute;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .chosenWrap ul li p {
    width: 60%;
    font-size: 3vw;
  }
}
.chosenWrap ul li p:first-of-type {
  bottom: -40px;
  right: 0;
}

.tabletopWrap {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .tabletopWrap {
    padding-top: 32px;
  }
}
.tabletopWrap .tabletopText {
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .tabletopWrap .tabletopText {
    font-size: 2.8vw;
  }
}
.tabletopWrap .seasoningList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
  -webkit-animation: scrollLeft 10s linear infinite;
          animation: scrollLeft 10s linear infinite;
}
@media screen and (max-width: 767px) {
  .tabletopWrap .seasoningList {
    -moz-column-gap: 2vw;
         column-gap: 2vw;
  }
}
.tabletopWrap .seasoningList li {
  flex-shrink: 0;
  width: 110px;
}
@media screen and (max-width: 767px) {
  .tabletopWrap .seasoningList li {
    width: 20vw;
  }
}
.tabletopWrap .seasoningList li img {
  width: 100%;
}

@-webkit-keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ramenpWrap .ramenList {
  display: flex;
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
  justify-content: space-between;
  padding-bottom: 120px;
  overflow-y: hidden;
}
@media screen and (max-width: 767px) {
  .ramenpWrap .ramenList {
    padding-bottom: 22vw;
  }
}
.ramenpWrap .ramenList li {
  position: relative;
  flex-shrink: 0;
  width: 460px;
}
@media screen and (max-width: 767px) {
  .ramenpWrap .ramenList li {
    width: 72vw;
  }
}
.ramenpWrap .ramenList li img {
  max-width: 370px;
  width: 100%;
}
.ramenpWrap .ramenList li .text {
  max-width: 180px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: -28px;
}
.ramenpWrap .ramenList li .text h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .ramenpWrap .ramenList li .text h3 {
    font-size: 3vw;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  .ramenpWrap .ramenList li .text {
    width: 32vw;
    font-size: 2.6vw;
  }
}

.eatItWrap {
  margin: 200px auto 0;
  max-width: 650px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .eatItWrap {
    margin-top: 40vw;
    padding-inline: 16px;
  }
}
.eatItWrap .eatItTitle {
  color: #FFF;
  writing-mode: vertical-rl;
  text-align: justify;
  position: absolute;
  top: -13%;
  right: -10%;
  font-size: 112px;
  font-weight: bold;
  text-shadow: 6px 5px 10px #000;
}
@media screen and (max-width: 767px) {
  .eatItWrap .eatItTitle {
    top: -12%;
    right: -2%;
    font-size: 14vw;
  }
}
.eatItWrap img {
  width: 100%;
}

.footerWrap {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 146px;
  background-color: #b22222;
}
.footerWrap .iconList {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.footerWrap .iconList img {
  width: 40px;
}

.eventBtn {
  width: 120px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}
.eventBtn img {
  width: 100%;
}

.eventModalWrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.eventModalWrap .eventModal {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  transition: all 1s;
  opacity: 0;
  transform: rotate3d(0, 0, 0, 0deg);
}
.eventModalWrap .eventModal.in {
  opacity: 1;
  transform: rotate3d(19, 6, 7, 360deg);
}
.eventModalWrap .eventModal .bakBtn {
  position: absolute;
  top: 20px;
  right: 30px;
  display: inline-block;
}
.eventModalWrap .eventModal img {
  width: 100%;
}

.animText {
  opacity: 0;
}
.animText.in {
  opacity: 1;
  -webkit-animation: anim-text 1.7s;
          animation: anim-text 1.7s;
}
.animText.in span {
  -webkit-animation: anim-span 2s 0.8s;
          animation: anim-span 2s 0.8s;
}

@-webkit-keyframes anim-text {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes anim-text {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes anim-span {
  0% {
    transform: rotateX(360deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@keyframes anim-span {
  0% {
    transform: rotateX(360deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
.imgZoomIn {
  transform: scale(0.5);
  opacity: 0;
  height: auto;
  transition: all 0.8s;
  will-change: transform, opacity;
}

.imgZoomIn.in {
  transform: scale(1);
  opacity: 1;
}

.text0pacity {
  transition: all 2s;
  opacity: 0;
}
.text0pacity.in {
  opacity: 1;
}

.eatItTitle span {
  display: inline-block;
  letter-spacing: 0.06em;
  transition: all 1s;
  opacity: 0;
}
.eatItTitle.in span {
  -webkit-animation: textanimation 1s forwards;
          animation: textanimation 1s forwards;
}
.eatItTitle.in span:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.eatItTitle.in span:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.eatItTitle.in span:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.eatItTitle.in span:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.eatItTitle.in span:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.eatItTitle.in span:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.eatItTitle.in span:nth-child(7) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.eatItTitle.in span:nth-child(8) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.eatItTitle.in span:nth-child(9) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.eatItTitle.in span:nth-child(10) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.eatItTitle.in span:nth-child(11) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.eatItTitle.in span:nth-child(12) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.eatItTitle.in span:nth-child(13) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.eatItTitle.in span:nth-child(14) {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.eatItTitle.in span:nth-child(15) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.eatItTitle.in span:nth-child(16) {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}
.eatItTitle.in span:nth-child(17) {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}
.eatItTitle.in span:nth-child(18) {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}
.eatItTitle.in span:nth-child(19) {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}
.eatItTitle.in span:nth-child(20) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.eatItTitle.in span:nth-child(21) {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}
.eatItTitle.in span:nth-child(22) {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}
.eatItTitle.in span:nth-child(23) {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}
.eatItTitle.in span:nth-child(24) {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}
.eatItTitle.in span:nth-child(25) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.eatItTitle.in span:nth-child(26) {
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}
.eatItTitle.in span:nth-child(27) {
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}
.eatItTitle.in span:nth-child(28) {
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}
.eatItTitle.in span:nth-child(29) {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}
.eatItTitle.in span:nth-child(30) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.eatItTitle.in span:nth-child(31) {
  -webkit-animation-delay: 6.2s;
          animation-delay: 6.2s;
}
.eatItTitle.in span:nth-child(32) {
  -webkit-animation-delay: 6.4s;
          animation-delay: 6.4s;
}
.eatItTitle.in span:nth-child(33) {
  -webkit-animation-delay: 6.6s;
          animation-delay: 6.6s;
}
.eatItTitle.in span:nth-child(34) {
  -webkit-animation-delay: 6.8s;
          animation-delay: 6.8s;
}
.eatItTitle.in span:nth-child(35) {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
.eatItTitle.in span:nth-child(36) {
  -webkit-animation-delay: 7.2s;
          animation-delay: 7.2s;
}
.eatItTitle.in span:nth-child(37) {
  -webkit-animation-delay: 7.4s;
          animation-delay: 7.4s;
}
.eatItTitle.in span:nth-child(38) {
  -webkit-animation-delay: 7.6s;
          animation-delay: 7.6s;
}
.eatItTitle.in span:nth-child(39) {
  -webkit-animation-delay: 7.8s;
          animation-delay: 7.8s;
}
.eatItTitle.in span:nth-child(40) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}
.eatItTitle.in span:nth-child(41) {
  -webkit-animation-delay: 8.2s;
          animation-delay: 8.2s;
}
.eatItTitle.in span:nth-child(42) {
  -webkit-animation-delay: 8.4s;
          animation-delay: 8.4s;
}
.eatItTitle.in span:nth-child(43) {
  -webkit-animation-delay: 8.6s;
          animation-delay: 8.6s;
}
.eatItTitle.in span:nth-child(44) {
  -webkit-animation-delay: 8.8s;
          animation-delay: 8.8s;
}
.eatItTitle.in span:nth-child(45) {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}
.eatItTitle.in span:nth-child(46) {
  -webkit-animation-delay: 9.2s;
          animation-delay: 9.2s;
}
.eatItTitle.in span:nth-child(47) {
  -webkit-animation-delay: 9.4s;
          animation-delay: 9.4s;
}
.eatItTitle.in span:nth-child(48) {
  -webkit-animation-delay: 9.6s;
          animation-delay: 9.6s;
}
.eatItTitle.in span:nth-child(49) {
  -webkit-animation-delay: 9.8s;
          animation-delay: 9.8s;
}
.eatItTitle.in span:nth-child(50) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.eatItTitle.in span:nth-child(51) {
  -webkit-animation-delay: 10.2s;
          animation-delay: 10.2s;
}
.eatItTitle.in span:nth-child(52) {
  -webkit-animation-delay: 10.4s;
          animation-delay: 10.4s;
}
.eatItTitle.in span:nth-child(53) {
  -webkit-animation-delay: 10.6s;
          animation-delay: 10.6s;
}
.eatItTitle.in span:nth-child(54) {
  -webkit-animation-delay: 10.8s;
          animation-delay: 10.8s;
}
.eatItTitle.in span:nth-child(55) {
  -webkit-animation-delay: 11s;
          animation-delay: 11s;
}
.eatItTitle.in span:nth-child(56) {
  -webkit-animation-delay: 11.2s;
          animation-delay: 11.2s;
}
.eatItTitle.in span:nth-child(57) {
  -webkit-animation-delay: 11.4s;
          animation-delay: 11.4s;
}
.eatItTitle.in span:nth-child(58) {
  -webkit-animation-delay: 11.6s;
          animation-delay: 11.6s;
}
.eatItTitle.in span:nth-child(59) {
  -webkit-animation-delay: 11.8s;
          animation-delay: 11.8s;
}
.eatItTitle.in span:nth-child(60) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}
.eatItTitle.in span:nth-child(61) {
  -webkit-animation-delay: 12.2s;
          animation-delay: 12.2s;
}
.eatItTitle.in span:nth-child(62) {
  -webkit-animation-delay: 12.4s;
          animation-delay: 12.4s;
}
.eatItTitle.in span:nth-child(63) {
  -webkit-animation-delay: 12.6s;
          animation-delay: 12.6s;
}
.eatItTitle.in span:nth-child(64) {
  -webkit-animation-delay: 12.8s;
          animation-delay: 12.8s;
}
.eatItTitle.in span:nth-child(65) {
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
}
.eatItTitle.in span:nth-child(66) {
  -webkit-animation-delay: 13.2s;
          animation-delay: 13.2s;
}
.eatItTitle.in span:nth-child(67) {
  -webkit-animation-delay: 13.4s;
          animation-delay: 13.4s;
}
.eatItTitle.in span:nth-child(68) {
  -webkit-animation-delay: 13.6s;
          animation-delay: 13.6s;
}
.eatItTitle.in span:nth-child(69) {
  -webkit-animation-delay: 13.8s;
          animation-delay: 13.8s;
}
.eatItTitle.in span:nth-child(70) {
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}
.eatItTitle.in span:nth-child(71) {
  -webkit-animation-delay: 14.2s;
          animation-delay: 14.2s;
}
.eatItTitle.in span:nth-child(72) {
  -webkit-animation-delay: 14.4s;
          animation-delay: 14.4s;
}
.eatItTitle.in span:nth-child(73) {
  -webkit-animation-delay: 14.6s;
          animation-delay: 14.6s;
}
.eatItTitle.in span:nth-child(74) {
  -webkit-animation-delay: 14.8s;
          animation-delay: 14.8s;
}
.eatItTitle.in span:nth-child(75) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
.eatItTitle.in span:nth-child(76) {
  -webkit-animation-delay: 15.2s;
          animation-delay: 15.2s;
}
.eatItTitle.in span:nth-child(77) {
  -webkit-animation-delay: 15.4s;
          animation-delay: 15.4s;
}
.eatItTitle.in span:nth-child(78) {
  -webkit-animation-delay: 15.6s;
          animation-delay: 15.6s;
}
.eatItTitle.in span:nth-child(79) {
  -webkit-animation-delay: 15.8s;
          animation-delay: 15.8s;
}
.eatItTitle.in span:nth-child(80) {
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
}
.eatItTitle.in span:nth-child(81) {
  -webkit-animation-delay: 16.2s;
          animation-delay: 16.2s;
}
.eatItTitle.in span:nth-child(82) {
  -webkit-animation-delay: 16.4s;
          animation-delay: 16.4s;
}
.eatItTitle.in span:nth-child(83) {
  -webkit-animation-delay: 16.6s;
          animation-delay: 16.6s;
}
.eatItTitle.in span:nth-child(84) {
  -webkit-animation-delay: 16.8s;
          animation-delay: 16.8s;
}
.eatItTitle.in span:nth-child(85) {
  -webkit-animation-delay: 17s;
          animation-delay: 17s;
}
.eatItTitle.in span:nth-child(86) {
  -webkit-animation-delay: 17.2s;
          animation-delay: 17.2s;
}
.eatItTitle.in span:nth-child(87) {
  -webkit-animation-delay: 17.4s;
          animation-delay: 17.4s;
}
.eatItTitle.in span:nth-child(88) {
  -webkit-animation-delay: 17.6s;
          animation-delay: 17.6s;
}
.eatItTitle.in span:nth-child(89) {
  -webkit-animation-delay: 17.8s;
          animation-delay: 17.8s;
}
.eatItTitle.in span:nth-child(90) {
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}
.eatItTitle.in span:nth-child(91) {
  -webkit-animation-delay: 18.2s;
          animation-delay: 18.2s;
}
.eatItTitle.in span:nth-child(92) {
  -webkit-animation-delay: 18.4s;
          animation-delay: 18.4s;
}
.eatItTitle.in span:nth-child(93) {
  -webkit-animation-delay: 18.6s;
          animation-delay: 18.6s;
}
.eatItTitle.in span:nth-child(94) {
  -webkit-animation-delay: 18.8s;
          animation-delay: 18.8s;
}
.eatItTitle.in span:nth-child(95) {
  -webkit-animation-delay: 19s;
          animation-delay: 19s;
}
.eatItTitle.in span:nth-child(96) {
  -webkit-animation-delay: 19.2s;
          animation-delay: 19.2s;
}
.eatItTitle.in span:nth-child(97) {
  -webkit-animation-delay: 19.4s;
          animation-delay: 19.4s;
}
.eatItTitle.in span:nth-child(98) {
  -webkit-animation-delay: 19.6s;
          animation-delay: 19.6s;
}
.eatItTitle.in span:nth-child(99) {
  -webkit-animation-delay: 19.8s;
          animation-delay: 19.8s;
}
.eatItTitle.in span:nth-child(100) {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}

@-webkit-keyframes textanimation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes textanimation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes showUpRotate {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg) translateZ(-200px);
    filter: blur(6px);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1) rotate(10deg) translateZ(0);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateZ(0);
    filter: blur(0);
  }
}
@keyframes showUpRotate {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg) translateZ(-200px);
    filter: blur(6px);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1) rotate(10deg) translateZ(0);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateZ(0);
    filter: blur(0);
  }
}
/*# sourceMappingURL=style.css.map */