@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（新LP用・必要に応じて追記） */

.mainVisual {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.mainVisual h1 {
  margin: 0;
}

.mainVisual h1 img {
  display: block;
  width: 100%;
}

.mainVisual_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.mainVisual_copy.is-visible {
  visibility: visible;
  opacity: 1;
}

.mainVisual_copy img {
  display: block;
  width: 80%;
  margin: 0 auto;
}


.menuInner {
  padding-bottom: 110px;
  background-size: contain;
}
.menuInner ul {
  overflow: hidden;
}
.menuInner ul img {
  max-width: 64%;
  margin: 0 auto;
  display: block;
}

.menuInner ul li {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 170px 0 75px;
}

.menuInner ul li#menu01,
.menuInner ul li#menu03,
.menuInner ul li#menu05 {
  background: url(../img/bg01.png);
}
.menuInner ul li#menu02,
.menuInner ul li#menu04 {
  background: url(../img/bg02.png);
}

/* menuArea（新LP用・必要に応じて追記） */

.menuArea {
  position: relative;
  background-size: cover;
  /* tree position tuning */
 /*  --tree-1-top: 4%;
  --tree-1-right: -2%;
  --tree-2-top: 50%;
  --tree-2-left: -2%;
  --tree-3-bottom: 2%;
  --tree-3-right: -2%; */
  --bird-1-top: 7%;
  --bird-1-right: 3%;
  padding-bottom: 20px;
}

.menuMain {
  position: relative;
  z-index: 2;
  width: 65%;
  margin: 0 auto;
  padding-top: 170px;
}

.menuMain img {
  width: 100%;
}

.notes {
  font-size: 14px;
  text-align: center;
}

.menuAnime {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.menuAnime__birdWrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 9%;
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.5s ease;
  will-change: transform;
}

.menuAnime__birdWrap.is-animated {
  transition:
    transform 1.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.5s ease;
}

.menuAnime__birdWrap img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: 50% 70%;
}

/* jsで反転（flip）が指定された時に右を向くように設定 */
.menuAnime__birdWrap img.is-flipped {
  transform: scaleX(-1);
}

.menuAnime__birdWrap img.is-flying {
  animation: birdFlap 0.34s ease-in-out infinite;
}

.menuAnime__birdWrap img.is-landing {
  animation: birdLanding 0.32s ease-out;
}

@keyframes birdFlap {
  0% {
    transform: rotate(-3deg) scale(1.01);
  }
  50% {
    transform: rotate(3deg) scale(0.985);
  }
  100% {
    transform: rotate(-3deg) scale(1.01);
  }
}

@keyframes birdLanding {
  0% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(4px) scale(0.96, 1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.linkBtn {
  display: block;
  width: 318px;
  margin: 20px 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;
}

/* p-gotop */

.p-gotop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.p-gotop.is-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.p-gotop.is-hide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* responsive（ブレークポイントは js/main.js の MEDIA_MOBILE_MAX と揃える） */

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

  .mainVisual_copy img {
    width: 100%;
  }

  .menuInner {
    padding-bottom: 0;
  }
  .menuInner ul img {
    max-width: 364px;
  }
  .menuInner ul li {
    padding: 50px 0 30px;
  }

  .menuMain {
    width: 100%;
    padding-top: 130px;
  }

  .menuArea {
    padding-bottom: 40px;
  }

  .menuAnime__birdWrap {
    width: 25%;
  }

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

/* PC: 上の max-width:700px と隣接定義（701px = 700px の直後） */
@media screen and (min-width: 701px) {
  .mainVisual {
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
  }

  .mainVisual h1 {
    height: 100%;
  }

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

  .mainVisual_copy img {
    width: min(80%, 1200px);
  }
  
  .menuInner ul img {
    max-width: 64%;
    margin: 0 auto;
    display: block;
    padding-left: 2em;
  }

  .sp_view {
    display: none !important;
  }
}

/* tablet */
@media screen and (min-width: 701px) and (max-width: 1180px) {
  .mainVisual {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .mainVisual h1 {
    height: auto;
  }

  .mainVisual h1 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .mainVisual_copy img {
    width: min(88%, 980px);
  }
}
