@charset "UTF-8";
:root {
  --maincolor: #f97b15;
  --subcolor: #e95298;
  --textcolor: #4d1b00;
  --container: 1000px;
}

@font-face {
  font-family: "rounded-mgenplus-1cp-bold";
  src: url(../fonts/rounded-mgenplus-1cp-bold.woff2) format("woff2");
}

@font-face {
  font-family: "rounded-mgenplus-1cp-heavy";
  src: url(../fonts/rounded-mgenplus-1cp-heavy.woff2) format("woff2");
}

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "rounded-mgenplus-1cp-bold", "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0;
  width: 100%;
  color: var(--textcolor);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 801px) and (max-width: 1020px) {
  #contentsWrapper {
    font-size: 1.32vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper {
    font-size: max(2.2vw,12px);
  }
}

#contentsWrapper * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contentsWrapper input, #contentsWrapper textarea, #contentsWrapper select, #contentsWrapper button {
  font-family: "rounded-mgenplus-1cp-bold", "Noto Sans JP", sans-serif;
  font-size: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contentsWrapper button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  background: initial;
  border: initial;
  cursor: pointer;
}

#contentsWrapper a {
  opacity: 1;
  color: inherit;
  background-color: transparent;
  text-decoration: none !important;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#contentsWrapper a.hover {
  color: var(--maincolor);
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#contentsWrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

#contentsWrapper .cover {
  width: 100%;
  max-width: none;
  height: auto;
}

#contentsWrapper ul, #contentsWrapper ol {
  list-style: none;
}

#contentsWrapper .sectionWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#contentsWrapper .widthWrapper {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .widthWrapper {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .widthWrapper {
    padding-left: 4%;
    padding-right: 4%;
  }
}

#contentsWrapper .insideWrapper {
  position: relative;
  width: 80%;
  max-width: inherit;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contentsWrapper :root {
  --c-flex-gap: 2%;
}

#contentsWrapper .c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contentsWrapper .c-flex.gap > * {
  margin-left: var(--c-flex-gap);
}

#contentsWrapper .c-flex.gapLarge > * {
  margin-left: calc(var(--c-flex-gap) * 2);
}

#contentsWrapper .c-flex:not(.c-flex-reverse) > *:first-child {
  margin-left: 0;
}

#contentsWrapper .c-flex--2 > * {
  width: calc(100% / 2);
}

#contentsWrapper .c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}

#contentsWrapper .c-flex--2.gap > *:nth-child(2n+1) {
  margin-left: 0;
}

#contentsWrapper .c-flex--3 > * {
  width: calc(100% / 3);
}

#contentsWrapper .c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}

#contentsWrapper .c-flex--3.gap > *:nth-child(3n+1) {
  margin-left: 0;
}

#contentsWrapper .c-flex--4 > * {
  width: calc(100% / 4);
}

#contentsWrapper .c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}

#contentsWrapper .c-flex--4.gap > *:nth-child(4n+1) {
  margin-left: 0;
}

#contentsWrapper .c-flex--5 > * {
  width: calc(100% / 5);
}

#contentsWrapper .c-flex--5.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(5 - 1))) / 5);
}

#contentsWrapper .c-flex--5.gap > *:nth-child(5n+1) {
  margin-left: 0;
}

#contentsWrapper .c-flex--6 > * {
  width: calc(100% / 6);
}

#contentsWrapper .c-flex--6.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(6 - 1))) / 6);
}

#contentsWrapper .c-flex--6.gap > *:nth-child(6n+1) {
  margin-left: 0;
}

#contentsWrapper .c-flex.--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#contentsWrapper .c-flex.--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#contentsWrapper .c-flex.--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#contentsWrapper .c-flex.--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#contentsWrapper .c-flex.--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contentsWrapper .c-flex.--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#contentsWrapper .c-flex.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#contentsWrapper .c-flex.--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#contentsWrapper .alignCenter {
  text-align: center;
}

#contentsWrapper .alignRight {
  text-align: right;
}

#contentsWrapper .alignLeft {
  text-align: left;
}

#contentsWrapper img.alignCenter {
  margin-left: auto;
  margin-right: auto;
}

#contentsWrapper img.alignLeft {
  margin-left: 0;
  margin-right: auto;
}

#contentsWrapper img.alignRight {
  margin-left: auto;
  margin-right: 0;
}

#contentsWrapper .lh-10 {
  line-height: 1;
}

#contentsWrapper .lh-15 {
  line-height: 1.5;
}

#contentsWrapper .lh-20 {
  line-height: 2;
}

#contentsWrapper .font-10 {
  font-size: 10px !important;
}

#contentsWrapper .font-12 {
  font-size: 12px !important;
}

#contentsWrapper .font-14 {
  font-size: 14px !important;
}

#contentsWrapper .font-16 {
  font-size: 16px !important;
}

#contentsWrapper .font-18 {
  font-size: 18px !important;
}

#contentsWrapper .font-20 {
  font-size: 20px !important;
}

#contentsWrapper .font-22 {
  font-size: 22px !important;
}

#contentsWrapper .font-24 {
  font-size: 24px !important;
}

#contentsWrapper .font-26 {
  font-size: 26px !important;
}

#contentsWrapper .font-28 {
  font-size: 28px !important;
}

#contentsWrapper .font-30 {
  font-size: 30px !important;
}

@media screen and (min-width: 801px) and (max-width: 1020px) {
  #contentsWrapper .font-10 {
    font-size: 1vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 1.2vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 1.4vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 1.6vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 1.8vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 2vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 2.2vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 2.4vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 2.6vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 2.8vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 3vw !important;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .font-10 {
    font-size: 2.375vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 2.7vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 2.975vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 3.2vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 3.375vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 3.5vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 3.575vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 3.6vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 3.575vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 3.5vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 3.375vw !important;
  }
}

#contentsWrapper .mt-5 {
  margin-top: 0.5em !important;
}

#contentsWrapper .mt-10 {
  margin-top: 1em !important;
}

#contentsWrapper .mt-15 {
  margin-top: 1.5em !important;
}

#contentsWrapper .mt-20 {
  margin-top: 2em !important;
}

#contentsWrapper .mt-25 {
  margin-top: 2.5em !important;
}

#contentsWrapper .mt-30 {
  margin-top: 3em !important;
}

#contentsWrapper .mt-35 {
  margin-top: 3.5em !important;
}

#contentsWrapper .mt-40 {
  margin-top: 4em !important;
}

#contentsWrapper .mt-45 {
  margin-top: 4.5em !important;
}

#contentsWrapper .mt-50 {
  margin-top: 5em !important;
}

#contentsWrapper .font-puhu {
  font-family: "MFW-PPuhuPicnicMin2-H", sans-serif;
}

#contentsWrapper .u-bold {
  font-family: "rounded-mgenplus-1cp-heavy", "Noto Sans JP", sans-serif;
  font-weight: 900;
}

#contentsWrapper .u-bg {
  background: #fffc01;
  padding: 0 0.2em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

#contentsWrapper .u-note {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

#contentsWrapper .u-marker {
  padding: 0 0.2em;
  margin: 0 0.2em;
  background: var(--maincolor);
  color: #fff;
}

#contentsWrapper .u-maincolor {
  color: var(--maincolor);
}

#contentsWrapper .u-subcolor {
  color: var(--subcolor);
}

#contentsWrapper .u-hidden {
  display: none;
  visibility: hidden;
}

#contentsWrapper .c-blockLink a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#contentsWrapper [data-ruby] {
  position: relative;
  display: inline-block;
  line-height: 1;
}

#contentsWrapper [data-ruby]:before {
  content: attr(data-ruby);
  position: absolute;
  top: -1em;
  left: 50%;
  font-size: clamp(6px,0.5em,18px);
  font-family: inherit;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .sp {
    display: none !important;
  }
  #contentsWrapper a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .pc {
    display: none !important;
  }
}

#includeFooter {
  position: relative;
  z-index: 11;
}

/* ======== ↑ End common ↑ ======== */
/* ======== ↓ main ↓ ======== */
:root {
  --cubeSize1: 520px;
  --cubeRadius: calc(1.73205080757 / 6 * var(--cubeSize1));
  --maskX: 100%;
  --maskY: 3.854vw;
}

@media screen and (max-width: 1020px) {
  :root {
    --cubeSize1: 38.8vw;
  }
}

@media screen and (max-width: 800px) {
  :root {
    --cubeSize1: 65vw;
    --maskX: 100%;
    --maskY: 5.7vw;
  }
}

#contentsWrapper .parallaxWrapper {
  position: relative;
}

#contentsWrapper .parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -1;
}

#contentsWrapper .parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .parallax {
    background-size: auto 100vh;
  }
}

#contentsWrapper h2.heading {
  font-size: 58px;
  max-width: 13.8em;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper h2.heading {
    font-size: 5.8vw;
  }
}

#contentsWrapper .c-btn > * {
  font-family: "MFW-PPuhuPicnicMin2-H", sans-serif;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.2em;
  width: 100%;
  max-width: 11.36em;
  min-height: 1.82em;
  color: #fff;
  text-shadow: 0.046em 0.09em 0 #a32721;
  background: var(--maincolor);
  border: 2px solid #9a2216;
  border-radius: 3em;
  padding: 0.1em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.2s cubic-bezier(0.33, 0, 0.33, 2);
  transition: 0.2s cubic-bezier(0.33, 0, 0.33, 2);
}

#contentsWrapper .c-btn > *.center {
  margin-left: auto;
  margin-right: auto;
}

#contentsWrapper .c-btn > *:hover {
  background: var(--subcolor);
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .c-btn > * {
    font-size: 4.4vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-btn > * {
    font-size: min(6vw,44px);
  }
}

#contentsWrapper .c-cube {
  -webkit-perspective: calc(var(--cubeSize1) * 4);
          perspective: calc(var(--cubeSize1) * 4);
}

#contentsWrapper .c-cube_body {
  width: var(--cubeSize1);
  aspect-ratio: 1 / 0.8165;
  margin: 0 auto;
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: center 66.66%;
          transform-origin: center 66.66%;
}

#contentsWrapper .c-cube_body .face {
  width: var(--cubeSize1);
  aspect-ratio: 1 / 1;
  position: absolute;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  margin: auto;
}

#contentsWrapper .c-cube_body .face > * {
  width: 100%;
  height: 100%;
  background: rgba(153, 153, 153, 0.7) no-repeat center/100% 100%;
  -webkit-transform-origin: center 66.66%;
          transform-origin: center 66.66%;
}

#contentsWrapper .c-cube_body.--tetrahedron .face {
  aspect-ratio: 1 / 0.866;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

#contentsWrapper .c-cube_body.--tetrahedron .face.--face1 {
  -webkit-transform: translateZ(var(--cubeRadius)) rotateX(19.5deg);
          transform: translateZ(var(--cubeRadius)) rotateX(19.5deg);
}

#contentsWrapper .c-cube_body.--tetrahedron .face.--face2 {
  -webkit-transform: rotateY(120deg) translateZ(var(--cubeRadius)) rotateX(19.5deg);
          transform: rotateY(120deg) translateZ(var(--cubeRadius)) rotateX(19.5deg);
}

#contentsWrapper .c-cube_body.--tetrahedron .face.--face3 {
  -webkit-transform: rotateY(240deg) translateZ(var(--cubeRadius)) rotateX(19.5deg);
          transform: rotateY(240deg) translateZ(var(--cubeRadius)) rotateX(19.5deg);
}

#contentsWrapper .c-cube_body.--tetrahedron .face.--face4 {
  -webkit-transform: translateZ(var(--cubeRadius)) rotateX(90deg) rotateY(180deg);
          transform: translateZ(var(--cubeRadius)) rotateX(90deg) rotateY(180deg);
}

#contentsWrapper .c-cube.--drag {
  cursor: -webkit-grab;
  cursor: grab;
}

#contentsWrapper .c-cube.--drag:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

#contentsWrapper .c-frame {
  max-width: 1340px;
  margin: 62px auto 66px;
  background: url(../images/frame.png) repeat-y center top/100% auto;
  position: relative;
}

#contentsWrapper .c-frame:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  margin: auto;
  width: 100%;
  aspect-ratio: 1 / 0.0463;
  background: url(../images/frameTop.png) no-repeat center bottom/100% 100%;
}

#contentsWrapper .c-frame:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  aspect-ratio: 1 / 0.04925;
  background: url(../images/frameBottom.png) no-repeat center top/100% 100%;
}

@media screen and (max-width: 1340px) {
  #contentsWrapper .c-frame {
    margin: 4.627vw auto 4.9254vw;
  }
}

#contentsWrapper .c-copyright {
  text-align: center;
  letter-spacing: 0.0175em;
}

#contentsWrapper .c-waveBg {
  -webkit-mask: url(../images/mask_wave.svg) no-repeat center top/var(--maskX) var(--maskY), linear-gradient(transparent, transparent calc(var(--maskY) - 1px), #000 calc(var(--maskY) - 1px), #000 100%);
          mask: url(../images/mask_wave.svg) no-repeat center top/var(--maskX) var(--maskY), linear-gradient(transparent, transparent calc(var(--maskY) - 1px), #000 calc(var(--maskY) - 1px), #000 100%);
  margin-top: calc(-1 * var(--maskY));
  height: calc(100% + var(--maskY));
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-waveBg {
    -webkit-mask-image: url(../images/mask_wave_sp.svg), linear-gradient(transparent, transparent calc(var(--maskY) - 1px), #000 calc(var(--maskY) - 1px), #000 100%);
            mask-image: url(../images/mask_wave_sp.svg), linear-gradient(transparent, transparent calc(var(--maskY) - 1px), #000 calc(var(--maskY) - 1px), #000 100%);
  }
}

#contentsWrapper .p-kv {
  width: 100%;
  aspect-ratio: 1 / 0.553;
  overflow: hidden;
  position: relative;
}

#contentsWrapper .p-kv img {
  width: 100%;
  max-width: none;
}

#contentsWrapper .p-kv > * {
  position: absolute;
}

#contentsWrapper .p-kv .bg {
  top: 0;
  left: 0;
  width: 100%;
}

#contentsWrapper .p-kv .logo1 {
  top: 5.5%;
  left: 6%;
  width: 30.34%;
}

#contentsWrapper .p-kv .logo2 {
  top: 17%;
  left: 2.5%;
  width: 37.34%;
}

#contentsWrapper .p-kv .img {
  top: 24.6%;
  left: 32%;
  width: 35.867%;
}

#contentsWrapper .p-kv .catch {
  top: 43.4%;
  left: 67.8%;
  width: 30.4%;
}

#contentsWrapper .p-kv.js-scroll .bg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: contrast(0) brightness(2);
          filter: contrast(0) brightness(2);
}

#contentsWrapper .p-kv.js-scroll .logo1, #contentsWrapper .p-kv.js-scroll .logo2 {
  -webkit-transition: 1.5s ease 0.3s;
  transition: 1.5s ease 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

#contentsWrapper .p-kv.js-scroll .img {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 1.2s;
  transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 1.2s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#contentsWrapper .p-kv.js-scroll .catch {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 1.5s;
  transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 1.5s;
  opacity: 0;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#contentsWrapper .p-kv.is-scroll .logo1, #contentsWrapper .p-kv.is-scroll .logo2 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

#contentsWrapper .p-kv.is-scroll .img, #contentsWrapper .p-kv.is-scroll .catch {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-kv.is-scroll .bg {
  -webkit-transition: 3s cubic-bezier(0.33, 0.5, 0.33, 1) 0s;
  transition: 3s cubic-bezier(0.33, 0.5, 0.33, 1) 0s;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: contrast(1) brightness(1);
          filter: contrast(1) brightness(1);
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-kv {
    aspect-ratio: 1 / 2.06;
  }
  #contentsWrapper .p-kv .logo1 {
    top: 3.5%;
    left: 13.5%;
    width: 73%;
  }
  #contentsWrapper .p-kv .logo2 {
    top: 11%;
    left: 5.3%;
    width: 89.9%;
  }
  #contentsWrapper .p-kv .img {
    top: 22.4%;
    left: 5.6%;
    width: 89.1%;
  }
  #contentsWrapper .p-kv .catch {
    top: 65%;
    left: 6.8%;
    width: 85.4%;
  }
}

#contentsWrapper .p-package {
  padding: 218px 0 130px;
  background: #f9d50e;
}

#contentsWrapper .p-package h2 {
  position: absolute;
  top: -2.64em;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#contentsWrapper .p-package .dec {
  position: absolute;
  z-index: -2;
}

#contentsWrapper .p-package .dec img {
  width: 100%;
  max-width: none;
}

#contentsWrapper .p-package .dec.--chara01 {
  left: 4.8%;
  bottom: calc(100% + 40px);
  width: 8.5%;
}

#contentsWrapper .p-package .dec.--chara02 {
  left: 14.8%;
  bottom: calc(100% + 40px);
  width: 6.5%;
}

#contentsWrapper .p-package .dec.--chara03 {
  right: 1.6%;
  bottom: calc(100% + 30px);
  width: 9.63%;
}

#contentsWrapper .p-package .dec.--signBoard {
  right: 8%;
  bottom: calc(100% - 19px);
  width: 22.1%;
}

#contentsWrapper .p-package .dec.--signBoard.js-scroll {
  -webkit-transition: 0.5s ease 0.6s;
  transition: 0.5s ease 0.6s;
  opacity: 0;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

#contentsWrapper .p-package .dec.--signBoard.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-package .thumbList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding-top: 33px;
}

#contentsWrapper .p-package .thumbList > li {
  max-width: 9vw;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-package .thumbList > li:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  margin: auto;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: #e94d6b;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#contentsWrapper .p-package .thumbList > li:hover:before, #contentsWrapper .p-package .thumbList > li:focus-visible:before, #contentsWrapper .p-package .thumbList > li.active:before {
  opacity: 1;
}

#contentsWrapper .p-package_area {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
}

#contentsWrapper .p-package_area .rotate {
  position: absolute;
  top: 0%;
  right: 0;
  width: 20%;
  -webkit-animation: packageRotate 0.66s ease-in-out 0s infinite alternate forwards running;
          animation: packageRotate 0.66s ease-in-out 0s infinite alternate forwards running;
}

@-webkit-keyframes packageRotate {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes packageRotate {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

#contentsWrapper .p-package_area .c-btn {
  margin-top: 18%;
}

#contentsWrapper .p-package_area .c-btn a {
  max-width: 7.27em;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .p-package {
    padding: 21.8vw 0 13vw;
  }
  #contentsWrapper .p-package .dec.--chara01 {
    bottom: calc(100% + 2.985vw);
  }
  #contentsWrapper .p-package .dec.--chara02 {
    bottom: calc(100% + 2.985vw);
  }
  #contentsWrapper .p-package .dec.--chara03 {
    bottom: calc(100% + 2.2388vw);
  }
  #contentsWrapper .p-package .dec.--signBoard {
    bottom: calc(100% - 1.41791vw);
  }
  #contentsWrapper .p-package .thumbList {
    padding-top: 3.3vw;
    gap: 2vw;
  }
  #contentsWrapper .p-package .thumbList > li:before {
    width: calc(100% + 1vw);
    height: calc(100% + 1vw);
  }
  #contentsWrapper .p-package_area {
    margin-top: 5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-package h2 {
    top: -2.1em;
  }
  #contentsWrapper .p-package .dec.--signBoard {
    width: 30%;
    right: 6%;
  }
  #contentsWrapper .p-package .thumbList {
    gap: 4vw;
    padding: 3.3vw 10vw 0;
  }
  #contentsWrapper .p-package .thumbList > li {
    max-width: calc(calc(100% - 12vw) / 4);
  }
  #contentsWrapper .p-package .thumbList > li:before {
    width: calc(100% + 2vw);
    height: calc(100% + 2vw);
  }
}

#contentsWrapper .p-zukan {
  padding: 160px 0 125px;
  background: #75c4e2;
}

#contentsWrapper .p-zukan h2 {
  position: absolute;
  top: -2.64em;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#contentsWrapper .p-zukan .dec {
  position: absolute;
  z-index: -2;
}

#contentsWrapper .p-zukan .dec img {
  width: 100%;
  max-width: none;
}

#contentsWrapper .p-zukan .dec.--chara01 {
  left: 5.5%;
  bottom: calc(100% + 10px);
  width: 7.46%;
}

#contentsWrapper .p-zukan .dec.--chara02 {
  left: 13%;
  bottom: calc(100% + 32px);
  width: 8.134%;
}

#contentsWrapper .p-zukan .dec.--chara03 {
  right: 12.3%;
  bottom: calc(100% + 15px);
  width: 8.732%;
}

#contentsWrapper .p-zukan .dec.--chara04 {
  right: 4.9%;
  bottom: calc(100% + 5px);
  width: 5.9%;
}

#contentsWrapper .p-zukan .dec.--chara05 {
  left: -12%;
  bottom: 1%;
  width: 19.24%;
  z-index: 1;
}

#contentsWrapper .p-zukan .dec.--chara06 {
  right: -18.1%;
  bottom: 24.1%;
  width: 26.2%;
}

#contentsWrapper .p-zukan_inner {
  padding: 28px 120px 0;
}

#contentsWrapper .p-zukan .txt1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-right: 10px;
}

#contentsWrapper .p-zukan .txt1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-top: 18px;
}

#contentsWrapper .p-zukan_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 17px;
  margin: 25px auto 0;
  max-width: 864px;
}

#contentsWrapper .p-zukan_list > li {
  width: calc(calc(100% - 51px) / 4);
}

#contentsWrapper .p-zukan_list a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
  -webkit-transform-origin: center 10%;
          transform-origin: center 10%;
}

#contentsWrapper .p-zukan_list a:hover, #contentsWrapper .p-zukan_list a:focus-visible {
  -webkit-animation: zukanHover 1s ease-in-out -0.5s infinite alternate forwards running;
          animation: zukanHover 1s ease-in-out -0.5s infinite alternate forwards running;
}

@-webkit-keyframes zukanHover {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

@keyframes zukanHover {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

#contentsWrapper .p-zukan_list:has(> li:hover) > li:not(:hover) > a {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

#contentsWrapper .p-zukan_list img {
  margin: 0 auto;
}

#contentsWrapper .p-zukan_list.js-scroll > li {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 0.3s;
  transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 0.3s;
  opacity: 0;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#contentsWrapper .p-zukan_list.is-scroll > li {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-zukan .block2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  z-index: 1;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .p-zukan {
    padding: 16vw 0 12.5vw;
  }
  #contentsWrapper .p-zukan .dec.--chara01 {
    bottom: calc(100% + 0.7463vw);
  }
  #contentsWrapper .p-zukan .dec.--chara02 {
    bottom: calc(100% + 2.388vw);
  }
  #contentsWrapper .p-zukan .dec.--chara03 {
    bottom: calc(100% + 1.1194vw);
  }
  #contentsWrapper .p-zukan .dec.--chara04 {
    bottom: calc(100% + 0.3732vw);
  }
  #contentsWrapper .p-zukan_inner {
    padding: 2.8vw 12vw 0;
  }
  #contentsWrapper .p-zukan .txt1 {
    gap: 2.5vw;
    margin-top: 1vw;
  }
  #contentsWrapper .p-zukan .txt1 ul {
    gap: 0.5vw;
    margin-top: 1.8vw;
  }
  #contentsWrapper .p-zukan_list {
    gap: 2.5vw 1.7vw;
    margin-top: 2.5vw;
  }
  #contentsWrapper .p-zukan_list > li {
    width: calc(calc(100% - 5.1vw) / 4);
  }
  #contentsWrapper .p-zukan .block2 {
    margin-top: 5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-zukan_inner {
    padding: 2.8vw 8vw 0 12vw;
  }
}

#contentsWrapper .p-product {
  padding: 163px 0 60px;
  background: #accf1d;
}

#contentsWrapper .p-product_bg {
  background: #faf4d9;
  border-radius: 20px;
  padding: 80px 0 60px;
}

#contentsWrapper .p-product h2 {
  position: absolute;
  top: -1.57em;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#contentsWrapper .p-product .dec {
  position: absolute;
  z-index: -2;
  width: 6.1%;
  bottom: calc(100% - 26px);
}

#contentsWrapper .p-product .dec img {
  width: 100%;
  max-width: none;
  -webkit-animation: productDec 1.25s cubic-bezier(0.8, -0.5, 0.2, 1.5) 0s infinite alternate forwards running;
          animation: productDec 1.25s cubic-bezier(0.8, -0.5, 0.2, 1.5) 0s infinite alternate forwards running;
}

@-webkit-keyframes productDec {
  0%, 10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90%, 100% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
}

@keyframes productDec {
  0%, 10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90%, 100% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
}

#contentsWrapper .p-product .dec.--chara01 {
  left: 1.8%;
}

#contentsWrapper .p-product .dec.--chara02 {
  left: 9.3%;
}

#contentsWrapper .p-product .dec.--chara02 img {
  -webkit-animation-delay: -1.25s;
          animation-delay: -1.25s;
}

#contentsWrapper .p-product .dec.--chara03 {
  left: 16.8%;
}

#contentsWrapper .p-product .dec.--chara04 {
  right: 16.8%;
}

#contentsWrapper .p-product .dec.--chara04 img {
  -webkit-animation-delay: -1.25s;
          animation-delay: -1.25s;
}

#contentsWrapper .p-product .dec.--chara05 {
  right: 9.3%;
}

#contentsWrapper .p-product .dec.--chara06 {
  right: 1.8%;
}

#contentsWrapper .p-product .dec.--chara06 img {
  -webkit-animation-delay: -1.25s;
          animation-delay: -1.25s;
}

#contentsWrapper .p-product .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 50px 0 20px;
}

#contentsWrapper .p-product .block1 .package {
  width: 54%;
}

#contentsWrapper .p-product .block1 .detail {
  width: 46%;
}

#contentsWrapper .p-product .block1 .logo1 {
  width: 337px;
  max-width: 100%;
  margin: 0 auto;
}

#contentsWrapper .p-product .block1 .logo2 {
  width: 420px;
  max-width: 100%;
  margin: 10px auto 0;
}

#contentsWrapper .p-product .block1 dl {
  font-size: 20px;
  margin-top: 20px;
  padding-left: 1em;
}

#contentsWrapper .p-product .block1 dl dt {
  font-family: "rounded-mgenplus-1cp-heavy", "Noto Sans JP", sans-serif;
  font-weight: 900;
}

#contentsWrapper .p-product .block1 dl dd + dt {
  margin-top: 0.75em;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .p-product {
    padding: 16.3vw 0 6vw;
  }
  #contentsWrapper .p-product_bg {
    border-radius: 2vw;
    padding: 8vw 0 6vw;
  }
  #contentsWrapper .p-product .dec {
    bottom: calc(100% - 2.6vw);
  }
  #contentsWrapper .p-product .block1 {
    padding: 0 5vw 0 2vw;
  }
  #contentsWrapper .p-product .block1 .logo2 {
    margin-top: 1vw;
  }
  #contentsWrapper .p-product .block1 dl {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-product .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 2vw;
  }
  #contentsWrapper .p-product .block1 .package {
    width: 90%;
  }
  #contentsWrapper .p-product .block1 .detail {
    width: 100%;
  }
  #contentsWrapper .p-product .block1 .logo1 {
    width: 56.17vw;
  }
  #contentsWrapper .p-product .block1 .logo2 {
    width: 70vw;
  }
  #contentsWrapper .p-product .block1 dl {
    font-size: 4vw;
  }
}

#contentsWrapper .c-modal {
  overflow: hidden;
  position: relative;
}

#contentsWrapper .c-modalTrigger {
  cursor: pointer;
}

#contentsWrapper .c-modal .inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 90vw;
  max-height: 90vh;
  margin: 0 auto;
  overflow: auto;
  position: relative;
}

#contentsWrapper .c-modal .inner::-webkit-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--maincolor) rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  width: 4px;
}

#contentsWrapper .c-modal .inner::-webkit-scrollbar-thumb {
  background: var(--maincolor);
  border-radius: 4px;
}

#contentsWrapper .c-modal.--package {
  background: #faf4d9;
  border-radius: 20px;
  max-width: 1000px;
}

#contentsWrapper .c-modal.--package .inner {
  padding: 80px 40px;
}

#contentsWrapper .c-modal.--package .mfp-close {
  top: 20px;
  right: 20px;
  background: #8f001a;
}

#contentsWrapper .c-modal.--package .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

#contentsWrapper .c-modal.--package .img > * {
  max-width: calc(calc(100% - 40px) / 2);
}

#contentsWrapper .c-modal.--package .answer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-family: "MFW-PPuhuPicnicMin2-H", sans-serif;
  font-size: 60px;
  text-align: center;
  letter-spacing: -0.1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #8f001a;
}

#contentsWrapper .c-modal.--package .answer .val {
  font-size: 150%;
}

#contentsWrapper .c-modal.--package .txt1, #contentsWrapper .c-modal.--package .txt2 {
  position: absolute;
  top: 520px;
  font-family: "MFW-PPuhuPicnicMin2-H", sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.1em;
  color: #fff;
  border-radius: 1em;
  padding: 0.5em;
}

#contentsWrapper .c-modal.--package .txt1 {
  left: 6%;
  background: #ff8400;
}

#contentsWrapper .c-modal.--package .txt2 {
  right: 6%;
  background: #51cdec;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .c-modal.--package {
    border-radius: 2vw;
  }
  #contentsWrapper .c-modal.--package .inner {
    padding: 8vw 4vw;
  }
  #contentsWrapper .c-modal.--package .mfp-close {
    top: 2vw;
    right: 2vw;
  }
  #contentsWrapper .c-modal.--package .img {
    gap: 4vw;
  }
  #contentsWrapper .c-modal.--package .img > * {
    max-width: calc(calc(100% - 4vw) / 2);
  }
  #contentsWrapper .c-modal.--package .answer {
    font-size: 6vw;
  }
  #contentsWrapper .c-modal.--package .txt1, #contentsWrapper .c-modal.--package .txt2 {
    top: 52vw;
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-modal.--package .inner {
    padding: 4vw;
  }
  #contentsWrapper .c-modal.--package .answer {
    position: relative;
    top: 0;
    left: 0;
  }
  #contentsWrapper .c-modal.--package .img > * {
    max-width: 100%;
  }
  #contentsWrapper .c-modal.--package .txt1, #contentsWrapper .c-modal.--package .txt2 {
    position: relative;
    top: 0;
    left: 0;
    font-size: 6vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 1em auto 0;
  }
}

#contentsWrapper .mfp-content {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-animation: modalOpen 0.3s cubic-bezier(0.33, 0, 0.33, 1.5) 0s 1 normal forwards running;
          animation: modalOpen 0.3s cubic-bezier(0.33, 0, 0.33, 1.5) 0s 1 normal forwards running;
}

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

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

#contentsWrapper .mfp-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#contentsWrapper .mfp-close {
  font-size: 0;
  opacity: 1;
  width: 55px;
  height: 55px;
  background: #fefae9;
  -webkit-mask: url(../images/icons/close.svg) no-repeat center/contain;
          mask: url(../images/icons/close.svg) no-repeat center/contain;
}

#contentsWrapper .mfp-arrow {
  font-size: 52px;
  width: 1em;
  height: 1em;
  opacity: 1;
  background: url(../images/arrow001.png) no-repeat center/contain;
  -webkit-transform: initial;
          transform: initial;
  -webkit-transform-origin: center;
          transform-origin: center;
}

#contentsWrapper .mfp-arrow-left {
  left: -1.5em;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#contentsWrapper .mfp-arrow-right {
  right: -1.5em;
}

#contentsWrapper .mfp-arrow:before, #contentsWrapper .mfp-arrow:after {
  content: none;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .mfp-close {
    width: 5.5vw;
    height: 5.5vw;
  }
  #contentsWrapper .mfp-arrow {
    font-size: 5.2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .mfp-close {
    width: 6.875vw;
    height: 6.875vw;
  }
  #contentsWrapper .mfp-arrow {
    font-size: 8.6vw;
  }
  #contentsWrapper .mfp-arrow-left {
    left: 0;
  }
  #contentsWrapper .mfp-arrow-right {
    right: 0;
  }
}

/* Animation */
.js-scroll.fadeInUp {
  opacity: 0;
  -webkit-transition: 0.8s cubic-bezier(0.33, 0, 0.33, 1) 0.3s;
  transition: 0.8s cubic-bezier(0.33, 0, 0.33, 1) 0.3s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.js-scroll.fadeInLeft {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.fadeInRight {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-scroll.fadeInZoom {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-scroll.fadeInPop {
  -webkit-transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.js-scroll.fadeInMask {
  -webkit-transition: 1.5s ease 0.3s;
  transition: 1.5s ease 0.3s;
  -webkit-mask-image: linear-gradient(-45deg, transparent 45%, #000 55%);
          mask-image: linear-gradient(-45deg, transparent 45%, #000 55%);
  -webkit-mask-size: 300% 300%;
          mask-size: 300% 300%;
  -webkit-mask-position: 100% 100%;
          mask-position: 100% 100%;
}

.js-scroll.fadeInJump {
  -webkit-transition: 0.3s cubic-bezier(0.33, 0, 0.33, 1.5) 0.3s;
  transition: 0.3s cubic-bezier(0.33, 0, 0.33, 1.5) 0.3s;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.js-scroll.fadeInFlip {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
}

.js-scroll.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom, .js-scroll.is-scroll.fadeInPop, .js-scroll.is-scroll.fadeInJump, .js-scroll.is-scroll.fadeInFlip {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.js-scroll.is-scroll.fadeInMask {
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
}

.animateKobito {
  -webkit-animation: kobito 5s ease 0s infinite normal forwards running;
          animation: kobito 5s ease 0s infinite normal forwards running;
}

.animateKobito2 {
  -webkit-animation: kobito2 5s ease 0s infinite normal forwards running;
          animation: kobito2 5s ease 0s infinite normal forwards running;
}

@-webkit-keyframes kobito {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%, 20% {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
}

@keyframes kobito {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%, 20% {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
  }
}

@-webkit-keyframes kobito2 {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%, 20% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}

@keyframes kobito2 {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%, 20% {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}

/* ======== ↑ End main ↑ ======== */
