@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_01,
.mainVisual_copy_02,
.mainVisual_copy_03 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  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_01.is-visible,
.mainVisual_copy_02.is-visible,
.mainVisual_copy_03.is-visible {
  visibility: visible;
  opacity: 1;
}

.mainVisual_copy_01 img,
.mainVisual_copy_02 img,
.mainVisual_copy_03 img {
  display: block;
  width: 80%;
  margin: 0 auto;
}

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

.menuArea {
  position: relative;
  background: url(../img/bg.png) no-repeat center top;
  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: 340px;
}

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

.menuMain img {
  width: 100%;
}

.menuPrice {
  width: 230px;
  margin: 20px auto 80px;
}

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

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

.menuAnime__trees {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.tree {
  position: absolute;
  height: auto;
}

.tree--1 {
  top: var(--tree-1-top);
  right: var(--tree-1-right);
  width: 20%;
}

.tree--2 {
  top: var(--tree-2-top);
  left: var(--tree-2-left);
  width: 23%;
  transform: translateY(-50%);
}

.tree--3 {
  right: var(--tree-3-right);
  bottom: var(--tree-3-bottom);
  width: 28%;
}

.menuAnime__birdWrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 8%;
  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%;
}

.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_01 img,
.mainVisual_copy_02 img,
.mainVisual_copy_03 img {
  width: 100%;
}

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

  .menuArea {
    padding-bottom: 200px;
  }

  .tree--1 {
    width: 46%;
  }

  .tree--2 {
    width: 33%;
  }

  .tree--3 {
    width: 50%;
  }

  .menuAnime__birdWrap {
    width: 25%;
  }

  .menuPrice {
    width: 104px;
    margin: 0 auto 20px;
  }

  .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_01 img,
  .mainVisual_copy_02 img,
  .mainVisual_copy_03 img {
    width: min(80%, 1200px);
  }

  .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_01 img,
  .mainVisual_copy_02 img,
  .mainVisual_copy_03 img {
    width: min(88%, 980px);
  }
}
