@charset "UTF-8";
:root {
  --maincolor: #7c18c8;
  --subcolor: #f2d21d;
  --textcolor: #181818;
  --colorPurple: #af22a9;
  --colorGreen: #90c31f;
  --colorRed: #f3303f;
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "m-plus-rounded-1p", "Noto Sans JP", sans-serif;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.05em;
  width: 100%;
  color: var(--textcolor);
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  #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 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: 1220px) {
  #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: 1220px) {
  #contentsWrapper .font-10 {
    font-size: 0.83333vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 1vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 1.16667vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 1.33333vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 1.5vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 1.66667vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 1.83333vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 2vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 2.16667vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 2.33333vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 2.5vw !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 .u-bold {
  font-weight: bold;
}

#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: max(0.3em,8px);
  font-family: "m-plus-rounded-1p", "Noto Sans JP", sans-serif;
  line-height: 1;
  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 ↓ ======== */
#includeHeader,
#specialHeader {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

:root {
  --waveX: 213px;
  --waveY: 30px;
  --bubbleH: 1120px;
}

@media screen and (max-width: 800px) {
  :root {
    --waveX: 26.625vw;
    --waveY: 3.75vw;
    --bubbleH: 100vh;
  }
}

#contentsWrapper {
  /* modal */
}

#contentsWrapper .js-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: #000;
}

#contentsWrapper .js-loading img {
  width: 100%;
  max-width: none;
}

#contentsWrapper .js-loading .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 510px;
  max-width: 90%;
  aspect-ratio: 1 / 0.79412;
}

#contentsWrapper .js-loading .light {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  -webkit-transition: 0.05s;
  transition: 0.05s;
}

#contentsWrapper .js-loading .chara {
  width: 24.706%;
  position: absolute;
}

#contentsWrapper .js-loading .chara img {
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

#contentsWrapper .js-loading .chara img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#contentsWrapper .js-loading .chara img:nth-child(2) {
  width: 33%;
  -webkit-animation: loadingEye 2s ease 0s infinite normal forwards running;
          animation: loadingEye 2s ease 0s infinite normal forwards running;
}

@-webkit-keyframes loadingEye {
  0%, 75%, 100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  25% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  50% {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}

@keyframes loadingEye {
  0%, 75%, 100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  25% {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  50% {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}

#contentsWrapper .js-loading .chara img:nth-child(3) {
  opacity: 0;
}

#contentsWrapper .js-loading .chara.--c1 {
  top: 45%;
  left: 11.5%;
}

#contentsWrapper .js-loading .chara.--c1 img:nth-child(2) {
  top: 9.4%;
}

#contentsWrapper .js-loading .chara.--c2 {
  top: 45%;
  left: 38%;
}

#contentsWrapper .js-loading .chara.--c2 img:nth-child(2) {
  top: 32.5%;
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

#contentsWrapper .js-loading .chara.--c3 {
  top: 45%;
  left: 64.6%;
}

#contentsWrapper .js-loading .chara.--c3 img:nth-child(2) {
  top: 37.5%;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

#contentsWrapper .js-loading .logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 300px;
  max-width: 58.824%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  -webkit-transition: 0.5s ease 0.5s;
  transition: 0.5s ease 0.5s;
}

#contentsWrapper .js-loading.is-loaded {
  pointer-events: none;
}

#contentsWrapper .js-loading.is-loaded .light {
  opacity: 1;
}

#contentsWrapper .js-loading.is-loaded .chara img:nth-child(1), #contentsWrapper .js-loading.is-loaded .chara img:nth-child(2) {
  opacity: 0;
}

#contentsWrapper .js-loading.is-loaded .chara img:nth-child(3) {
  opacity: 1;
}

#contentsWrapper .js-loading.is-loaded .logo {
  opacity: 1;
  -webkit-animation: gummy 1.5s ease 0.5s 1 normal both running;
          animation: gummy 1.5s ease 0.5s 1 normal both running;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .js-loading .inner {
    max-width: 66.66%;
  }
}

#contentsWrapper .parallaxWrapper {
  position: relative;
}

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

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

#contentsWrapper .parallax.--bg01 .bg {
  background: #7929c0;
}

#contentsWrapper .parallax.--bg01 .bg .bubble {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bubble01.png) repeat center 0/1500px auto;
  -webkit-animation: bubble 20s linear 0s infinite normal forwards running;
          animation: bubble 20s linear 0s infinite normal forwards running;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .parallax.--bg01 .bg .bubble {
    background-size: cover;
  }
}

@-webkit-keyframes bubble {
  0% {
    background-position: center var(--bubbleH);
  }
  100% {
    background-position: center 0;
  }
}

@keyframes bubble {
  0% {
    background-position: center var(--bubbleH);
  }
  100% {
    background-position: center 0;
  }
}

#contentsWrapper .parallax.--bg01 .bg .bubble.--b2 {
  background-image: url(../images/bubble02.png);
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
}

#contentsWrapper .parallax.--bg02 .bg {
  background: var(--maincolor);
}

#contentsWrapper .parallax.--bg03 .bg {
  background: #fad60c;
}

#contentsWrapper .c-wave {
  -webkit-mask: url(../images/wave.svg) left top/var(--waveX) repeat-x, -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(transparent), color-stop(#000), to(#000));
  -webkit-mask: url(../images/wave.svg) left top/var(--waveX) repeat-x, linear-gradient(transparent, transparent var(--waveY), #000 var(--waveY), #000 100%);
          mask: url(../images/wave.svg) left top/var(--waveX) repeat-x, -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(transparent), color-stop(#000), to(#000));
          mask: url(../images/wave.svg) left top/var(--waveX) repeat-x, linear-gradient(transparent, transparent var(--waveY), #000 var(--waveY), #000 100%);
  margin-top: calc(-1 * var(--waveY));
  height: calc(100% + var(--waveY));
  -webkit-animation: wave 5s linear 0s infinite normal forwards running;
          animation: wave 5s linear 0s infinite normal forwards running;
}

#contentsWrapper h2.heading img {
  max-width: 45%;
  margin: 0 auto;
  -webkit-animation: gummy 3s ease 0s infinite normal forwards running;
          animation: gummy 3s ease 0s infinite normal forwards running;
}

#contentsWrapper h2.heading.js-scroll {
  -webkit-transition: 0.7s cubic-bezier(0.5, 0, 0.5, 1) 0.3s;
  transition: 0.7s cubic-bezier(0.5, 0, 0.5, 1) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#contentsWrapper h2.heading.is-scroll {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 800px) {
  #contentsWrapper h2.heading img {
    max-width: 50vw;
  }
}

#contentsWrapper h3.heading {
  font-size: 30px;
  text-align: center;
  color: var(--maincolor);
  position: relative;
  z-index: 1;
}

#contentsWrapper h3.heading:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 4px;
  background: #f5dc01;
  z-index: -1;
}

#contentsWrapper h3.heading .wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
  padding: 0.6em;
  background: -webkit-gradient(linear, left top, right top, from(#f9ab15), to(#f5dd00));
  background: linear-gradient(90deg, #f9ab15, #f5dd00);
  border-radius: 5em;
}

#contentsWrapper h3.heading.js-scroll:before {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  width: 0;
}

#contentsWrapper h3.heading.js-scroll .wrap {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: scale(2, 0);
          transform: scale(2, 0);
}

#contentsWrapper h3.heading.is-scroll:before {
  width: 100%;
}

#contentsWrapper h3.heading.is-scroll .wrap {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#contentsWrapper .c-btn a {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 16.67em;
  min-height: 2.67em;
  color: #fff;
  background: #c818c6;
  border-radius: 3em;
  padding: 0.25em 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;
  transition: 0.2s;
}

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

#contentsWrapper .c-btn a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 0.87em;
  height: 0.7em;
  background: url(../images/btn_arrow.svg) no-repeat center/contain;
  -webkit-transition: inherit;
  transition: inherit;
}

#contentsWrapper .c-btn a:hover {
  -webkit-filter: contrast(0.8) brightness(1.2);
          filter: contrast(0.8) brightness(1.2);
  -webkit-animation: gummy 1.5s ease 0s infinite normal forwards running;
          animation: gummy 1.5s ease 0s infinite normal forwards running;
}

#contentsWrapper .c-btn a:hover:after {
  right: 0.5em;
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  #contentsWrapper .c-btn a {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-btn a {
    font-size: min(4.5vw,30px);
  }
}

#contentsWrapper .c-button {
  font-size: inherit;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 16.67em;
  min-height: 2.67em;
  color: #fff;
  background: #c818c6;
  border: 0;
  border-radius: 3em;
  padding: 0.25em 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;
  transition: 0.2s;
  cursor: pointer;
}

#contentsWrapper .c-button.--x {
  background: #000;
}

#contentsWrapper .c-button.--line {
  background: #00B900;
}

#contentsWrapper .c-button.--instagram {
  background: -webkit-gradient(linear, left top, right top, from(#4C64D3), color-stop(#CF2E92), color-stop(#F26939), to(#FFDD83));
  background: linear-gradient(90deg, #4C64D3, #CF2E92, #F26939, #FFDD83);
}

#contentsWrapper .c-button.--center {
  margin-left: auto;
  margin-right: auto;
}

#contentsWrapper .c-button:hover {
  -webkit-filter: contrast(0.8) brightness(1.2);
          filter: contrast(0.8) brightness(1.2);
  -webkit-animation: gummy 1.5s ease 0s infinite normal forwards running;
          animation: gummy 1.5s ease 0s infinite normal forwards running;
}

#contentsWrapper .c-frame {
  margin: 0 auto;
  padding: 0.65em 1.5em;
  background: var(--subcolor);
  border-radius: 1.67em;
  position: relative;
}

#contentsWrapper .c-frame:before, #contentsWrapper .c-frame:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 1em;
  height: 2em;
  background: inherit;
  border-radius: 0 0 0.5em 0.5em;
  -webkit-animation: frameDec 0.75s ease-in-out 0s infinite alternate forwards running;
          animation: frameDec 0.75s ease-in-out 0s infinite alternate forwards running;
  z-index: -1;
}

@-webkit-keyframes frameDec {
  0% {
    -webkit-transform: translateY(-0.25em);
            transform: translateY(-0.25em);
  }
  100% {
    -webkit-transform: translateY(0.25em);
            transform: translateY(0.25em);
  }
}

@keyframes frameDec {
  0% {
    -webkit-transform: translateY(-0.25em);
            transform: translateY(-0.25em);
  }
  100% {
    -webkit-transform: translateY(0.25em);
            transform: translateY(0.25em);
  }
}

#contentsWrapper .c-frame:before {
  left: 2em;
  bottom: -1em;
}

#contentsWrapper .c-frame:after {
  left: 3.67em;
  bottom: -0.67em;
  -webkit-animation-delay: -0.25s;
          animation-delay: -0.25s;
}

#contentsWrapper .c-frame.--purple {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#952fd0), color-stop(#b32cb8), to(#952fd0));
  background: linear-gradient(90deg, #952fd0, #b32cb8, #952fd0);
}

#contentsWrapper .c-frame.--purple:before, #contentsWrapper .c-frame.--purple:after {
  background: #952fd0;
}

#contentsWrapper .sideBtn {
  position: fixed;
  right: 1vw;
  bottom: calc(5vw + 78px);
  max-width: 17.4167vw;
  z-index: 10;
}

#contentsWrapper .sideBtn a {
  display: block;
  -webkit-animation: scaling 1s ease-in-out 0s infinite alternate forwards running;
          animation: scaling 1s ease-in-out 0s infinite alternate forwards running;
}

#contentsWrapper .sideBtn a:hover {
  -webkit-filter: drop-shadow(0 0 10px #fff) brightness(1.1);
          filter: drop-shadow(0 0 10px #fff) brightness(1.1);
  -webkit-animation: gummy 1.5s ease 0s infinite normal forwards running;
          animation: gummy 1.5s ease 0s infinite normal forwards running;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .sideBtn {
    bottom: 12vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .sideBtn {
    bottom: 15vw;
    max-width: 26.125vw;
  }
}

#contentsWrapper .c-copyright {
  text-align: center;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .c-copyright {
    font-size: 1.67vw;
  }
}

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

#contentsWrapper .c-notes > li {
  padding-left: 1em;
  text-indent: -1em;
}

#contentsWrapper #totop {
  position: fixed;
  right: 0.7%;
  bottom: -70px;
  max-width: 12.34%;
  z-index: 9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contentsWrapper #totop:not(.active) {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

#contentsWrapper #totop:hover {
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}

@media screen and (max-width: 1220px) {
  #contentsWrapper #totop {
    bottom: -5.834vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper #totop {
    right: 4vw;
    bottom: -10.5625vw;
    max-width: 18.5%;
  }
}

#contentsWrapper #specialHeader {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  z-index: 90;
}

#contentsWrapper #specialHeader .hamburger {
  position: absolute;
  top: 3vw;
  right: 3vw;
  width: 13%;
  cursor: pointer;
  z-index: 103;
}

#contentsWrapper #specialHeader .hamburger:hover {
  -webkit-animation: gummy 1.5s ease 0s infinite normal forwards running;
          animation: gummy 1.5s ease 0s infinite normal forwards running;
}

#contentsWrapper #specialHeader .hamburger img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contentsWrapper #specialHeader .hamburger img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

#contentsWrapper #specialHeader .hamburger img.close {
  opacity: 0;
}

.is-menuOpen #contentsWrapper #specialHeader .hamburger .open {
  opacity: 0;
}

.is-menuOpen #contentsWrapper #specialHeader .hamburger .close {
  opacity: 1;
}

@media screen and (min-width: 801px) {
  #contentsWrapper #specialHeader {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(29%, #9f0cb6), color-stop(38%, rgba(159, 12, 182, 0.8)), to(rgba(159, 12, 182, 0)));
    background: linear-gradient(#9f0cb6 29%, rgba(159, 12, 182, 0.8) 38%, rgba(159, 12, 182, 0));
    padding: 15px 0;
  }
  #contentsWrapper #specialHeader .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 25px;
    max-width: 96%;
    margin: 0 auto;
  }
  #contentsWrapper #specialHeader .logo {
    width: 130px;
    margin-top: -5px;
  }
}

#contentsWrapper #globalNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

#contentsWrapper #globalNav ul a:hover {
  -webkit-filter: drop-shadow(0 0 5px #fff) brightness(1.1);
          filter: drop-shadow(0 0 5px #fff) brightness(1.1);
}

#contentsWrapper #globalNav ul a:hover img {
  -webkit-animation: gummy 1.5s ease 0s infinite normal forwards running;
          animation: gummy 1.5s ease 0s infinite normal forwards running;
}

#contentsWrapper #globalNav ul a.disabled {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
  pointer-events: none !important;
}

@media screen and (max-width: 800px) {
  #contentsWrapper #globalNav {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100dvh;
    background: rgba(121, 41, 192, 0.85);
    padding: 38vw 4% 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .is-menuOpen #contentsWrapper #globalNav {
    opacity: 1;
    pointer-events: auto;
  }
  #contentsWrapper #globalNav .logo {
    position: absolute;
    top: 12vw;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 55.3%;
  }
  #contentsWrapper #globalNav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 1em;
    margin-top: 1em;
    font-size: min(7.2vw,36px);
    color: #fff;
  }
}

#contentsWrapper .p-kv {
  aspect-ratio: 5 / 3;
  overflow: hidden;
  position: relative;
  z-index: -1;
}

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

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

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

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

#contentsWrapper .p-kv .bg3 {
  top: 20%;
  left: 2%;
  width: 94.867%;
}

#contentsWrapper .p-kv .lighting1 {
  top: 24%;
  left: 8%;
  width: 45.734%;
}

#contentsWrapper .p-kv .lighting2 {
  top: 31%;
  left: 43%;
  width: 45.734%;
}

#contentsWrapper .p-kv .logo {
  top: 12.3%;
  left: 33.8%;
  width: 32.267%;
}

#contentsWrapper .p-kv .package {
  top: 38%;
  left: 17.8%;
  width: 26.534%;
}

#contentsWrapper .p-kv .img1 {
  top: 36.9%;
  left: 45.9%;
  width: 33.6%;
}

#contentsWrapper .p-kv .img2 {
  top: 29.4%;
  left: 7.3%;
  width: 10.67%;
}

#contentsWrapper .p-kv .img3 {
  top: 40.4%;
  left: 41.7%;
  width: 12.267%;
}

#contentsWrapper .p-kv .img4 {
  top: 61.6%;
  left: 8.5%;
  width: 15.134%;
}

#contentsWrapper .p-kv .img5 {
  top: 24%;
  left: 78%;
  width: 18.734%;
}

#contentsWrapper .p-kv.js-scroll .lighting1, #contentsWrapper .p-kv.js-scroll .lighting2 {
  -webkit-transition: 1s ease 3s;
  transition: 1s ease 3s;
  opacity: 0;
}

#contentsWrapper .p-kv.js-scroll .bg2 {
  -webkit-transition: 1.5s cubic-bezier(0.5, 0, 0.33, 1) 0s;
  transition: 1.5s cubic-bezier(0.5, 0, 0.33, 1) 0s;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

#contentsWrapper .p-kv.js-scroll .bg3 {
  -webkit-transition: 0.3s cubic-bezier(0, 0, 0.5, 2) 0.6s;
  transition: 0.3s cubic-bezier(0, 0, 0.5, 2) 0.6s;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#contentsWrapper .p-kv.js-scroll .img1 {
  -webkit-transition: 0.3s cubic-bezier(0.33, 0.5, 0.5, 1.5) 0.6s;
  transition: 0.3s cubic-bezier(0.33, 0.5, 0.5, 1.5) 0.6s;
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

#contentsWrapper .p-kv.js-scroll .package {
  -webkit-transition: 0.7s cubic-bezier(0.33, 0, 0.33, 1.5) 1s;
  transition: 0.7s cubic-bezier(0.33, 0, 0.33, 1.5) 1s;
  opacity: 0;
  -webkit-transform: scale(0) rotate(45deg);
          transform: scale(0) rotate(45deg);
}

#contentsWrapper .p-kv.js-scroll .img2, #contentsWrapper .p-kv.js-scroll .img3, #contentsWrapper .p-kv.js-scroll .img4 {
  -webkit-transition: 0.6s cubic-bezier(0.33, 0, 0.33, 1.5) 1.4s;
  transition: 0.6s cubic-bezier(0.33, 0, 0.33, 1.5) 1.4s;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

#contentsWrapper .p-kv.js-scroll .img3 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

#contentsWrapper .p-kv.js-scroll .img4 {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

#contentsWrapper .p-kv.js-scroll .img5 {
  -webkit-transition: 1s ease 2.5s;
  transition: 1s ease 2.5s;
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: blur(10px) contrast(0) brightness(2);
          filter: blur(10px) contrast(0) brightness(2);
}

#contentsWrapper .p-kv.js-scroll .logo {
  -webkit-transition: 0.3s ease 2s;
  transition: 0.3s ease 2s;
  opacity: 0;
}

#contentsWrapper .p-kv.is-scroll .logo {
  opacity: 1;
  -webkit-animation: kvLogo 0.7s ease 2.3s 1 normal both running;
          animation: kvLogo 0.7s ease 2.3s 1 normal both running;
}

@-webkit-keyframes kvLogo {
  0% {
    -webkit-transform: scale(0.5, 0);
            transform: scale(0.5, 0);
  }
  25% {
    -webkit-transform: scale(1, 1.25);
            transform: scale(1, 1.25);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
            transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
            transform: scale(0.95, 1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes kvLogo {
  0% {
    -webkit-transform: scale(0.5, 0);
            transform: scale(0.5, 0);
  }
  25% {
    -webkit-transform: scale(1, 1.25);
            transform: scale(1, 1.25);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
            transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
            transform: scale(0.95, 1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#contentsWrapper .p-kv.is-scroll .bg2, #contentsWrapper .p-kv.is-scroll .bg3, #contentsWrapper .p-kv.is-scroll .package, #contentsWrapper .p-kv.is-scroll .img1, #contentsWrapper .p-kv.is-scroll .img2, #contentsWrapper .p-kv.is-scroll .img3, #contentsWrapper .p-kv.is-scroll .img4, #contentsWrapper .p-kv.is-scroll .lighting1, #contentsWrapper .p-kv.is-scroll .lighting2 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-kv.is-scroll .img5 {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0) contrast(1) brightness(1);
          filter: blur(0) contrast(1) brightness(1);
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-kv {
    aspect-ratio: 1 / 2;
  }
  #contentsWrapper .p-kv .bg3 {
    top: 13%;
  }
  #contentsWrapper .p-kv .lighting1 {
    top: 18%;
    left: 10%;
    width: 86%;
  }
  #contentsWrapper .p-kv .lighting2 {
    top: 58%;
    left: 21%;
    width: 86%;
  }
  #contentsWrapper .p-kv .logo {
    top: 4.3%;
    left: 15.2%;
    width: 69.2%;
  }
  #contentsWrapper .p-kv .package {
    top: 21.1%;
    left: 20.2%;
    width: 61.7%;
  }
  #contentsWrapper .p-kv .img1 {
    top: 59.95%;
    left: 24.1%;
    width: 72.9%;
  }
  #contentsWrapper .p-kv .img2 {
    top: 23.3%;
    left: 0.4%;
    width: 22%;
  }
  #contentsWrapper .p-kv .img3 {
    top: 27.8%;
    left: 75.7%;
    width: 25%;
  }
  #contentsWrapper .p-kv .img4 {
    top: 41.4%;
    left: 4.1%;
    width: 30.3%;
  }
  #contentsWrapper .p-kv .img5 {
    top: 60.9%;
    left: 1.3%;
    width: 42%;
  }
}

#contentsWrapper .p-story {
  padding-top: 60px;
  padding-bottom: 120px;
}

#contentsWrapper .p-story_list {
  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: 1.3em;
  font-size: 30px;
}

#contentsWrapper .p-story_list > li {
  width: calc(calc(100% - 2.6em) / 3);
  padding: 0.67em;
  margin-top: 1.65em;
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-story_list > li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#f9ab15), to(#f5dd00));
  background: linear-gradient(90deg, #f9ab15, #f5dd00);
  border-radius: 0.67em;
  z-index: -1;
}

#contentsWrapper .p-story_list > li:after {
  content: '';
  position: absolute;
  left: 0.67em;
  bottom: -1em;
  width: 0.8em;
  height: 2em;
  background: #f9ad14;
  border-radius: 0 0 0.5em 0.5em;
  -webkit-animation: frameDec 0.75s ease-in-out 0s infinite alternate forwards running;
          animation: frameDec 0.75s ease-in-out 0s infinite alternate forwards running;
  z-index: -1;
}

#contentsWrapper .p-story_list > li:not([data-modal]) .img:before, #contentsWrapper .p-story_list > li:not([data-modal]) .img:after {
  content: none;
}

#contentsWrapper .p-story_list > li[data-modal]:hover .img:before {
  opacity: 0.7;
}

#contentsWrapper .p-story_list > li[data-modal]:hover .img:after {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0.7;
}

#contentsWrapper .p-story_list > li[data-modal]:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#contentsWrapper .p-story_list > li:hover .dec {
  -webkit-transform: translateY(-1em);
          transform: translateY(-1em);
}

#contentsWrapper .p-story_list .dec {
  position: absolute;
  z-index: -2;
  width: 105px;
  max-width: 28.075%;
  -webkit-transition: 0.3s cubic-bezier(0.25, -0.66, 0.33, 1.5);
  transition: 0.3s cubic-bezier(0.25, -0.66, 0.33, 1.5);
}

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

#contentsWrapper .p-story_list .dec.--d1 {
  left: 10px;
  top: -2.3em;
}

#contentsWrapper .p-story_list .dec.--d2 {
  left: 0;
  right: 0;
  top: -2.6em;
  margin: auto;
}

#contentsWrapper .p-story_list .dec.--d3 {
  right: 13px;
  top: -2.8em;
}

#contentsWrapper .p-story_list .img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contentsWrapper .p-story_list .img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.772);
  z-index: 1;
  -webkit-transition: inherit;
  transition: inherit;
}

#contentsWrapper .p-story_list .img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 14.372%;
  aspect-ratio: 1 / 1;
  background: url(../images/icon_play.svg) no-repeat center/contain;
  z-index: 2;
  -webkit-transition: inherit;
  transition: inherit;
}

#contentsWrapper .p-story_list .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: inherit;
  transition: inherit;
}

#contentsWrapper .p-story_list .title {
  color: var(--maincolor);
  margin-top: 0.5em;
  min-height: 2.25em;
}

#contentsWrapper .p-story_list.js-scroll > li {
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1.5) 0.3s;
  transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1.5) 0.3s;
  opacity: 0;
  -webkit-transform: scale(1.2, 0.8);
          transform: scale(1.2, 0.8);
}

#contentsWrapper .p-story_list.is-scroll > li {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-story {
    padding-top: 5%;
    padding-bottom: 10%;
  }
  #contentsWrapper .p-story_list {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-story {
    padding-top: 10%;
    padding-bottom: 20%;
  }
  #contentsWrapper .p-story_list {
    font-size: min(6vw,30px);
  }
  #contentsWrapper .p-story_list > li {
    width: 345px;
    max-width: 90%;
    margin-top: 2.5em;
  }
}

#contentsWrapper .p-about {
  padding-top: 95px;
  padding-bottom: 110px;
  background: url(../images/bg01.jpg) no-repeat center/cover;
}

#contentsWrapper .p-about .imgGroup {
  width: 100%;
  aspect-ratio: 1 / 0.338;
  position: relative;
}

#contentsWrapper .p-about .imgGroup:before {
  content: '';
  position: absolute;
  top: 3%;
  left: 0;
  right: 0;
  margin: auto;
  width: 52.834%;
  aspect-ratio: 1 / 0.62;
  background: url(../images/about_img_bg.png) no-repeat center/contain;
}

#contentsWrapper .p-about .imgGroup > * {
  position: absolute;
  top: 0;
  left: 0;
}

#contentsWrapper .p-about .imgGroup > * img {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-animation: aboutImg 3s ease 0s infinite normal forwards running;
          animation: aboutImg 3s ease 0s infinite normal forwards running;
}

@-webkit-keyframes aboutImg {
  0%, 40%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5%, 30% {
    -webkit-transform: scale(1.1, 0.9);
            transform: scale(1.1, 0.9);
  }
  20% {
    -webkit-transform: scale(0.9, 1.1);
            transform: scale(0.9, 1.1);
  }
}

@keyframes aboutImg {
  0%, 40%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5%, 30% {
    -webkit-transform: scale(1.1, 0.9);
            transform: scale(1.1, 0.9);
  }
  20% {
    -webkit-transform: scale(0.9, 1.1);
            transform: scale(0.9, 1.1);
  }
}

#contentsWrapper .p-about .imgGroup > *.img1 {
  top: 9%;
  left: 40.7%;
  width: 19.084%;
}

#contentsWrapper .p-about .imgGroup > *.img2 {
  top: 22.5%;
  left: 26.3%;
  width: 14.75%;
  -webkit-transform: rotate(-11.54deg);
          transform: rotate(-11.54deg);
}

#contentsWrapper .p-about .imgGroup > *.img2 img {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

#contentsWrapper .p-about .imgGroup > *.img3 {
  top: 26.2%;
  left: 59.3%;
  width: 15.25%;
  -webkit-transform: rotate(12.18deg);
          transform: rotate(12.18deg);
}

#contentsWrapper .p-about .imgGroup > *.img3 img {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

#contentsWrapper .p-about .c-frame {
  max-width: 38.34em;
  font-size: 24px;
  line-height: 1.67;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-about {
    padding-top: 6%;
    padding-bottom: 7%;
  }
  #contentsWrapper .p-about .c-frame {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-about {
    padding-top: 12%;
    padding-bottom: 14%;
  }
  #contentsWrapper .p-about .imgGroup {
    width: 150%;
    left: -25%;
  }
  #contentsWrapper .p-about .c-frame {
    font-size: 4.3vw;
    padding: 1em 1em 1.25em;
  }
}

#contentsWrapper .p-character {
  padding-top: 65px;
  padding-bottom: 110px;
  position: relative;
}

#contentsWrapper .p-character .dec {
  position: absolute;
}

#contentsWrapper .p-character .dec.--d1 {
  top: -138px;
  right: 0.2%;
  width: 24%;
}

#contentsWrapper .p-character .block1 {
  margin-top: 44px;
}

#contentsWrapper .p-character .block2 {
  margin-top: 90px;
  background: #ffa800;
  border-radius: 20px;
  padding: 30px 40px 60px;
}

#contentsWrapper .p-character .block2 .c-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

#contentsWrapper .p-character_list {
  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: 39px;
}

#contentsWrapper .p-character_list > li {
  width: calc(calc(100% - 78px) / 3);
  border-radius: 22px 22px 20px 20px;
  position: relative;
}

#contentsWrapper .p-character_list > li:before {
  content: '';
  position: absolute;
  left: 1.5em;
  bottom: -1.5em;
  width: 1.5em;
  height: 4em;
  background: inherit;
  border-radius: 0 0 1em 1em;
  -webkit-animation: frameDec 0.75s ease-in-out 0s infinite alternate forwards running;
          animation: frameDec 0.75s ease-in-out 0s infinite alternate forwards running;
  z-index: -1;
}

#contentsWrapper .p-character_list > li.--purple {
  color: #af22a9;
  background: #f1d9f8;
}

#contentsWrapper .p-character_list > li.--purple .head {
  background: #af22a9;
}

#contentsWrapper .p-character_list > li.--green {
  color: #60a300;
  background: #ebf6df;
}

#contentsWrapper .p-character_list > li.--green .head {
  background: #90c31f;
}

#contentsWrapper .p-character_list > li.--red {
  color: #ed2333;
  background: #f6dede;
}

#contentsWrapper .p-character_list > li.--red .head {
  background: #f3303f;
}

#contentsWrapper .p-character_list .head {
  font-size: 40px;
  line-height: 1.3;
  text-align: center;
  padding: 0.1em 1em;
  color: #fff;
  border-radius: 20px 20px 0 0;
}

#contentsWrapper .p-character_list .body {
  padding: 0.5em 0;
}

#contentsWrapper .p-character_list .txt {
  line-height: 1.67;
  letter-spacing: 0.015em;
  padding: 1.5em 1.5em 1em;
}

#contentsWrapper .p-character_list.js-scroll > li {
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1.5) 0.3s;
  transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1.5) 0.3s;
  opacity: 0;
  -webkit-transform: scale(1.2, 0.8);
          transform: scale(1.2, 0.8);
}

#contentsWrapper .p-character_list.is-scroll > li {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#contentsWrapper .p-character h3 {
  font-size: 40px;
  letter-spacing: -0.075em;
  text-align: center;
  color: var(--maincolor);
  background: -webkit-gradient(linear, left top, right top, from(#f5dd00), to(#ffe3ad));
  background: linear-gradient(90deg, #f5dd00, #ffe3ad);
  padding: 0.3em 0.6em;
  border-radius: 5em;
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#contentsWrapper .p-character .txt1 {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.075em;
  color: #fff;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-character {
    padding-top: 5.5%;
    padding-bottom: 10%;
  }
  #contentsWrapper .p-character .dec.--d1 {
    top: -13.584vw;
  }
  #contentsWrapper .p-character .block1 {
    margin-top: 3.34vw;
  }
  #contentsWrapper .p-character .block2 {
    margin-top: 3.34vw;
    padding: 3% 4% 6%;
  }
  #contentsWrapper .p-character .block2 .c-head {
    gap: 5.6vw;
  }
  #contentsWrapper .p-character_list {
    gap: 3.25vw;
  }
  #contentsWrapper .p-character_list > li {
    width: calc(calc(100% - 6.5vw) / 3);
    border-radius: 1.8vw 1.8vw 1.67vw 1.67vw;
  }
  #contentsWrapper .p-character_list .head {
    font-size: 3.34vw;
    border-radius: 1.67vw 1.67vw 0 0;
  }
  #contentsWrapper .p-character h3 {
    font-size: 3vw;
  }
  #contentsWrapper .p-character .txt1 {
    font-size: 2.3vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-character .block2 {
    margin-top: 4em;
    padding-top: 5%;
  }
  #contentsWrapper .p-character .block2 .c-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.5vw;
  }
  #contentsWrapper .p-character_list {
    gap: 2.5em;
  }
  #contentsWrapper .p-character_list > li {
    width: 300px;
    max-width: 100%;
  }
  #contentsWrapper .p-character_list .head {
    font-size: min(6vw,30px);
  }
  #contentsWrapper .p-character_list .img {
    max-width: 75%;
    margin: 0 auto;
  }
  #contentsWrapper .p-character_list .txt {
    font-size: min(4vw,15px);
    padding: 1em 0.5em 0.5em;
  }
  #contentsWrapper .p-character h3 {
    font-size: 5vw;
  }
  #contentsWrapper .p-character .txt1 {
    font-size: 4.5vw;
    line-height: 1.5;
    text-align: center;
  }
}

#contentsWrapper .p-howto {
  padding-top: 70px;
  position: relative;
}

#contentsWrapper .p-howto .dec {
  position: absolute;
  top: -94px;
  left: 0.3%;
  width: 28%;
}

#contentsWrapper .p-howto .dec.js-scroll {
  -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 200%;
          transform-origin: center 200%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#contentsWrapper .p-howto .dec.is-scroll {
  opacity: 1;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

#contentsWrapper .p-howto .block1 {
  margin-top: 40px;
}

#contentsWrapper .p-howto .block2 {
  padding-top: 50.8%;
  background: url(../images/howto_bg01.png) no-repeat center/cover;
  position: relative;
}

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

#contentsWrapper .p-howto .block2 > * img {
  width: 100%;
  max-width: none;
}

#contentsWrapper .p-howto .block2 .img1 {
  top: 19.3%;
  left: 35.6%;
  width: 28.8%;
  z-index: 2;
}

#contentsWrapper .p-howto .block2 .img2 {
  top: 7.8%;
  left: 17.9%;
  width: 14.534%;
}

#contentsWrapper .p-howto .block2 .img3 {
  top: 8.6%;
  left: 64.8%;
  width: 20.867%;
}

#contentsWrapper .p-howto .block2 .img4 {
  top: 48%;
  left: 17.1%;
  width: 21%;
}

#contentsWrapper .p-howto .block2 .img5 {
  top: 49.1%;
  left: 58.5%;
  width: 27.34%;
}

#contentsWrapper .p-howto .block2.js-scroll {
  -webkit-transition: 0.3s cubic-bezier(0, 0.5, 0.5, 1) 0.3s;
  transition: 0.3s cubic-bezier(0, 0.5, 0.5, 1) 0.3s;
  opacity: 0;
}

#contentsWrapper .p-howto .block2.js-scroll .img1 {
  -webkit-transition: 1s cubic-bezier(0.5, 0, 0.2, 1.5) 0.6s;
  transition: 1s cubic-bezier(0.5, 0, 0.2, 1.5) 0.6s;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

#contentsWrapper .p-howto .block2.js-scroll .img2, #contentsWrapper .p-howto .block2.js-scroll .img3, #contentsWrapper .p-howto .block2.js-scroll .img4, #contentsWrapper .p-howto .block2.js-scroll .img5 {
  -webkit-transition: 0.7s cubic-bezier(0.2, 0.5, 0, 1) 1s;
  transition: 0.7s cubic-bezier(0.2, 0.5, 0, 1) 1s;
  opacity: 0;
}

#contentsWrapper .p-howto .block2.js-scroll .img2 {
  -webkit-transform: scale(0.5) translate(40vw, 20vw);
          transform: scale(0.5) translate(40vw, 20vw);
}

#contentsWrapper .p-howto .block2.js-scroll .img3 {
  -webkit-transform: scale(0.5) translate(-40vw, 20vw);
          transform: scale(0.5) translate(-40vw, 20vw);
}

#contentsWrapper .p-howto .block2.js-scroll .img4 {
  -webkit-transform: scale(0.5) translate(40vw, -20vw);
          transform: scale(0.5) translate(40vw, -20vw);
}

#contentsWrapper .p-howto .block2.js-scroll .img5 {
  -webkit-transform: scale(0.5) translate(-40vw, -20vw);
          transform: scale(0.5) translate(-40vw, -20vw);
}

#contentsWrapper .p-howto .block2.is-scroll {
  opacity: 1;
}

#contentsWrapper .p-howto .block2.is-scroll .img1 {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#contentsWrapper .p-howto .block2.is-scroll .img2, #contentsWrapper .p-howto .block2.is-scroll .img3, #contentsWrapper .p-howto .block2.is-scroll .img4, #contentsWrapper .p-howto .block2.is-scroll .img5 {
  opacity: 1;
  -webkit-transform: scale(1) translate(0);
          transform: scale(1) translate(0);
}

#contentsWrapper .p-howto_step {
  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: 39px;
}

#contentsWrapper .p-howto_step > li {
  width: calc(calc(100% - 78px) / 3);
}

#contentsWrapper .p-howto_step .txt {
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  color: var(--maincolor);
  margin-top: 0.5em;
}

#contentsWrapper .p-howto_step.js-scroll > li {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

#contentsWrapper .p-howto_step.is-scroll > li {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-howto {
    padding-top: 7.5%;
  }
  #contentsWrapper .p-howto .dec {
    top: -5.34vw;
  }
  #contentsWrapper .p-howto .block1 {
    margin-top: 3.834vw;
  }
  #contentsWrapper .p-howto_step {
    gap: 3.25vw;
  }
  #contentsWrapper .p-howto_step > li {
    width: calc(calc(100% - 6.5vw) / 3);
  }
  #contentsWrapper .p-howto_step .txt {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-howto .block2 {
    padding-top: 80%;
  }
  #contentsWrapper .p-howto .block2 .img1 {
    top: 21%;
    left: 26%;
    width: 51.875%;
  }
  #contentsWrapper .p-howto .block2 .img2 {
    top: 9%;
    left: 6%;
    width: 22.875%;
  }
  #contentsWrapper .p-howto .block2 .img3 {
    top: 7%;
    left: 65%;
    width: 34.75%;
  }
  #contentsWrapper .p-howto .block2 .img4 {
    top: 54%;
    left: 0%;
    width: 35%;
  }
  #contentsWrapper .p-howto .block2 .img5 {
    top: 53%;
    left: 61%;
    width: 46.75%;
  }
  #contentsWrapper .p-howto_step > li {
    width: calc(calc(100% - 3.25vw) / 2);
  }
  #contentsWrapper .p-howto_step .txt {
    font-size: 3.75vw;
  }
}

#contentsWrapper .p-product {
  padding-top: 78px;
}

#contentsWrapper .p-product_inner {
  background: #f1d9f8;
  border-radius: 20px;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 60px 20px 50px;
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-product_inner:before, #contentsWrapper .p-product_inner:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 1.5em;
  height: 3em;
  background: inherit;
  border-radius: 0 0 1em 1em;
  -webkit-animation: frameDec 0.75s ease-in-out 0s infinite alternate forwards running;
          animation: frameDec 0.75s ease-in-out 0s infinite alternate forwards running;
  z-index: -1;
}

#contentsWrapper .p-product_inner:before {
  left: 2em;
  bottom: -1.5em;
}

#contentsWrapper .p-product_inner:after {
  left: 4.5em;
  bottom: -1em;
  -webkit-animation-delay: -0.25s;
          animation-delay: -0.25s;
}

#contentsWrapper .p-product .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

#contentsWrapper .p-product .block1 .img {
  width: calc(52% - 20px);
}

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

#contentsWrapper .p-product .block1 .detail .logo {
  max-width: 383px;
}

#contentsWrapper .p-product .block1 .detail dl {
  font-size: 20px;
  line-height: 1.67;
  color: var(--maincolor);
}

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

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-product {
    padding-top: 7.25%;
  }
  #contentsWrapper .p-product_inner {
    margin-top: 4.167vw;
    padding: 6% 4% 5%;
  }
  #contentsWrapper .p-product .block1 .detail 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;
  }
  #contentsWrapper .p-product .block1 .img {
    margin: 0 auto;
    width: 50%;
  }
  #contentsWrapper .p-product .block1 .detail {
    width: 100%;
    position: relative;
  }
  #contentsWrapper .p-product .block1 .detail .logo {
    position: absolute;
    top: 0;
    right: 0;
    width: 54%;
    margin: 0 auto;
  }
  #contentsWrapper .p-product .block1 .detail dl {
    font-size: 4.5vw;
  }
}

#contentsWrapper .contentsFooter {
  padding-top: 65px;
  padding-bottom: 50px;
  color: #fff;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .contentsFooter {
    padding-top: 8.34%;
    padding-bottom: 4%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentsFooter {
    padding-top: 15%;
    padding-bottom: 6%;
  }
}

#contentsWrapper .c-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  pointer-events: none;
  z-index: 102;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

#contentsWrapper .c-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

#contentsWrapper .c-modal_close {
  position: absolute;
  top: -3em;
  right: 0;
  width: 2.5em;
  height: 2.5em;
  cursor: pointer;
  z-index: 503;
}

#contentsWrapper .c-modal_close:before, #contentsWrapper .c-modal_close:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 0.15em;
  background: #fff;
}

#contentsWrapper .c-modal_close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#contentsWrapper .c-modal_close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#contentsWrapper .c-modal.--movie .inner {
  width: 800px;
  max-width: 92vw;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

#contentsWrapper .c-modal.--movie .inner > iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#is-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Animation */
.js-scroll.fadeInUp {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.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: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(40%, transparent), color-stop(60%, #000));
  -webkit-mask-image: linear-gradient(-90deg, transparent 40%, #000 60%);
          mask-image: -webkit-gradient(linear, right top, left top, color-stop(40%, transparent), color-stop(60%, #000));
          mask-image: linear-gradient(-90deg, transparent 40%, #000 60%);
  -webkit-mask-size: 300%;
          mask-size: 300%;
  -webkit-mask-position: 100%;
          mask-position: 100%;
}

.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 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

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

@-webkit-keyframes gummy {
  30% {
    -webkit-transform: scale(1.1, 0.9);
            transform: scale(1.1, 0.9);
  }
  35% {
    -webkit-transform: scale(0.9, 1.1);
            transform: scale(0.9, 1.1);
  }
  40% {
    -webkit-transform: scale(1.05, 0.95);
            transform: scale(1.05, 0.95);
  }
  50% {
    -webkit-transform: scale(0.97, 1.03);
            transform: scale(0.97, 1.03);
  }
  70% {
    -webkit-transform: scale(1.01, 0.99);
            transform: scale(1.01, 0.99);
  }
  0%, 90%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes gummy {
  30% {
    -webkit-transform: scale(1.1, 0.9);
            transform: scale(1.1, 0.9);
  }
  35% {
    -webkit-transform: scale(0.9, 1.1);
            transform: scale(0.9, 1.1);
  }
  40% {
    -webkit-transform: scale(1.05, 0.95);
            transform: scale(1.05, 0.95);
  }
  50% {
    -webkit-transform: scale(0.97, 1.03);
            transform: scale(0.97, 1.03);
  }
  70% {
    -webkit-transform: scale(1.01, 0.99);
            transform: scale(1.01, 0.99);
  }
  0%, 90%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes wave {
  from {
    -webkit-mask-position: var(--waveX) top;
            mask-position: var(--waveX) top;
  }
  to {
    -webkit-mask-position: 0 top;
            mask-position: 0 top;
  }
}

@keyframes wave {
  from {
    -webkit-mask-position: var(--waveX) top;
            mask-position: var(--waveX) top;
  }
  to {
    -webkit-mask-position: 0 top;
            mask-position: 0 top;
  }
}

@-webkit-keyframes scaling {
  from {
    -webkit-transform: scale(1.02, 0.98);
            transform: scale(1.02, 0.98);
  }
  to {
    -webkit-transform: scale(0.98, 1.02);
            transform: scale(0.98, 1.02);
  }
}

@keyframes scaling {
  from {
    -webkit-transform: scale(1.02, 0.98);
            transform: scale(1.02, 0.98);
  }
  to {
    -webkit-transform: scale(0.98, 1.02);
            transform: scale(0.98, 1.02);
  }
}

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