@charset "UTF-8";
:root {
  --maincolor: #9b40bd;
  --subcolor: #fff;
  --textcolor: #000;
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "UD新丸ゴ DB", "UD Shin Maru Go Demi Bold", "Noto Sans JP", sans-serif;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  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: 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-family: "UD新丸ゴ B", "UD Shin Maru Go Bold", "Noto Sans JP", sans-serif;
}

#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: -1.2em;
  left: 50%;
  font-size: max(0.3em,8px);
  font-family: "UD新丸ゴ DB", "UD Shin Maru Go Demi Bold", "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 ↓ ======== */
#contentsWrapper .c-btn a {
  font-size: 2.12vw;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.04em;
  width: 100%;
  max-width: 13.2em;
  min-height: 1.6em;
  color: #fff;
  background: var(--maincolor);
  border-radius: 3em;
  padding: 0.1em 0.5em;
  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, 0.5, 0.5, 1.5);
  transition: 0.2s cubic-bezier(0, 0.5, 0.5, 1.5);
}

#contentsWrapper .c-btn a.reverse {
  color: var(--maincolor);
  background: #fff;
}

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

#contentsWrapper .c-btn a:hover {
  color: var(--maincolor);
  background: #fff;
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

#contentsWrapper .c-btn a:hover.reverse {
  color: #fff;
  background: var(--maincolor);
}

@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(5vw,30px);
  }
}

#contentsWrapper .p-kv {
  position: relative;
  overflow: hidden;
}

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

#contentsWrapper .p-kv .logo {
  position: absolute;
  top: 1.6%;
  left: 5.5%;
  width: 20.1%;
  z-index: 2;
}

#contentsWrapper .p-kv .movie video {
  width: 100%;
  vertical-align: bottom;
}

#contentsWrapper .p-sec01 {
  padding: 5.53% 0 3.86%;
  background: url(../images/sec01_bg.jpg) repeat center/4.8%;
  overflow: hidden;
  position: relative;
}

#contentsWrapper .p-sec01_inner {
  background: #fff;
  border: 0.3vw solid #000;
  border-radius: 2vw;
  padding: 6.6% 0 1.7%;
  margin: 0 auto;
  width: 62.4%;
  position: relative;
}

#contentsWrapper .p-sec01 h2 {
  position: absolute;
  top: -8.6%;
  left: 0;
  right: 0;
  margin: auto;
  width: 68.0879%;
}

#contentsWrapper .p-sec01 .block1 {
  padding: 0 0 0 5%;
  position: relative;
}

#contentsWrapper .p-sec01 .block1 .txt1 {
  font-size: 1.8vw;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #783c14;
  position: absolute;
  top: -1.5%;
  right: 1.3%;
}

#contentsWrapper .p-sec01 .block1 .detail {
  position: relative;
}

#contentsWrapper .p-sec01 .block1 .detail .package {
  width: 25.267%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain {
  position: absolute;
  font-size: 1.6vw;
  color: #783c14;
}

#contentsWrapper .p-sec01 .block1 .detail .explain .label {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.2em;
  padding: 0 0.3em;
  position: relative;
  left: -0.3em;
}

#contentsWrapper .p-sec01 .block1 .detail .explain .label:before {
  content: '';
  position: absolute;
  right: 100%;
  width: 60%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top {
  top: 24.5%;
  left: 33%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top .label {
  background: #5fc3be;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top .label:before {
  top: -0.3em;
  aspect-ratio: 1 / 0.865;
  background: url(../images/sec01_arrow_top.png) no-repeat center/contain;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.bottom {
  top: 53%;
  left: 33%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.bottom .label {
  background: #0069b9;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.bottom .label:before {
  top: 0;
  aspect-ratio: 1 / 0.8655;
  background: url(../images/sec01_arrow_bottom.png) no-repeat center/contain;
}

#contentsWrapper .p-sec01 .block1 .detail .choco {
  position: absolute;
  left: 66%;
  bottom: -20%;
  width: 25.54%;
}

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

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

#contentsWrapper .p-sec01 .dec.chara1 {
  top: -8%;
  left: -19%;
  width: 24.0385%;
}

#contentsWrapper .p-sec01 .dec.chara2 {
  bottom: 2%;
  right: -23%;
  width: 24.0385%;
}

#contentsWrapper .p-sec01 .dec.dec1 {
  top: 3%;
  left: -26.3%;
  width: 6.46%;
}

#contentsWrapper .p-sec01 .dec.dec2 {
  top: -24%;
  right: -18%;
  width: 24.0385%;
}

#contentsWrapper .p-sec01 .dec.dec3 {
  top: -2%;
  right: -22%;
  width: 15.553%;
}

#contentsWrapper .p-sec01 .dec.dec4 {
  top: 32%;
  left: -22%;
  width: 11.247%;
}

#contentsWrapper .p-sec01 .dec.dec5 {
  top: 29%;
  right: -18%;
  width: 7.777%;
}

#contentsWrapper .p-sec01 .dec.dec6 {
  top: 43%;
  left: -31%;
  width: 24.0385%;
}

#contentsWrapper .p-sec01 .dec.dec7 {
  top: 31%;
  right: -32%;
  width: 24.0385%;
}

#contentsWrapper .p-sec01 .dec.dec8 {
  top: 73%;
  left: -18%;
  width: 8.709%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec01 {
    padding: 18% 0 10%;
  }
  #contentsWrapper .p-sec01_inner {
    padding-bottom: 4%;
    width: 96%;
  }
  #contentsWrapper .p-sec01 .block1 {
    padding-top: 20%;
  }
  #contentsWrapper .p-sec01 .block1 .txt1 {
    font-size: 3vw;
    top: 6%;
    right: 2%;
  }
  #contentsWrapper .p-sec01 .block1 .detail .explain {
    font-size: 3vw;
  }
  #contentsWrapper .p-sec01 .block1 .detail .explain.top {
    top: 10%;
  }
  #contentsWrapper .p-sec01 .block1 .detail .explain.bottom {
    top: 40%;
  }
  #contentsWrapper .p-sec01 .block1 .detail .explain.bottom .label:before {
    -webkit-transform-origin: 100% 20%;
            transform-origin: 100% 20%;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  #contentsWrapper .p-sec01 .block1 .detail .choco {
    left: 52%;
    bottom: -25%;
  }
  #contentsWrapper .p-sec01 .dec.chara1 {
    top: 3%;
    left: 0%;
  }
  #contentsWrapper .p-sec01 .dec.chara2 {
    top: 80%;
    right: 0%;
  }
  #contentsWrapper .p-sec01 .dec.dec1 {
    top: 3%;
    left: -2%;
  }
  #contentsWrapper .p-sec01 .dec.dec2 {
    top: -10%;
    right: -5%;
  }
  #contentsWrapper .p-sec01 .dec.dec3 {
    top: -22%;
    right: -2%;
  }
  #contentsWrapper .p-sec01 .dec.dec4 {
    top: -15%;
    left: 0%;
  }
  #contentsWrapper .p-sec01 .dec.dec5 {
    top: 65%;
    right: 5%;
  }
  #contentsWrapper .p-sec01 .dec.dec6 {
    top: 87%;
    left: -5%;
  }
  #contentsWrapper .p-sec01 .dec.dec7 {
    top: 62%;
    right: -9%;
  }
  #contentsWrapper .p-sec01 .dec.dec8 {
    top: 92%;
    left: 30%;
  }
}

#contentsWrapper .p-animation01 {
  position: relative;
}

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

#contentsWrapper .p-animation02 {
  position: relative;
}

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

#contentsWrapper .p-animation02 .movie video {
  position: absolute;
  top: 0%;
  left: -50%;
  right: -50%;
  bottom: -13%;
  margin: auto;
  width: 115%;
  height: 115%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contentsWrapper .p-sec02 {
  padding: 3.8% 0 6.3%;
  background: url(../images/sec02_bg.webp) no-repeat center top/cover;
}

#contentsWrapper .p-sec02 h2 {
  width: 39.74%;
  margin: 0 auto;
}

#contentsWrapper .p-sec02 .lineup {
  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.4vw 10.2%;
  margin-top: 1%;
  padding: 0 23%;
}

#contentsWrapper .p-sec02 .lineup > li {
  max-width: 14.32vw;
  width: calc(79.6% / 3);
}

#contentsWrapper .p-sec02 .lineup > li img {
  margin: 0 auto;
}

#contentsWrapper .p-sec02 .lineup > li figcaption {
  font-size: 1.84vw;
  text-align: center;
  line-height: 1.3;
  color: #004da0;
  margin-top: 0.2em;
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-sec02 .lineup > li figcaption .stroke {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-text-stroke: 0.2em #fff;
  z-index: -1;
}

#contentsWrapper .p-sec02 .lineup.js-scroll > li {
  -webkit-transition: 0.3s ease 0.3s;
  transition: 0.3s ease 0.3s;
  opacity: 0;
}

#contentsWrapper .p-sec02 .lineup.js-scroll > li img {
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li {
  opacity: 1;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li:nth-child(1) img {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li:nth-child(2) img {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li:nth-child(3) img {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li:nth-child(4) img {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li:nth-child(5) img {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li:nth-child(6) img {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li:nth-child(7) img {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li:nth-child(8) img {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li:nth-child(9) img {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li img {
  -webkit-animation: lineupImg 2s cubic-bezier(0.5, 0, 0.5, 1) 0.3s 1 normal forwards running;
          animation: lineupImg 2s cubic-bezier(0.5, 0, 0.5, 1) 0.3s 1 normal forwards running;
  -webkit-transform-origin: center -50%;
          transform-origin: center -50%;
}

@-webkit-keyframes lineupImg {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  12.66% {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  33.33% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(-7.5deg);
            transform: rotate(-7.5deg);
  }
  66.66% {
    -webkit-transform: rotate(3.25deg);
            transform: rotate(3.25deg);
  }
  83.33% {
    -webkit-transform: rotate(-1.125deg);
            transform: rotate(-1.125deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes lineupImg {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  12.66% {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  33.33% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(-7.5deg);
            transform: rotate(-7.5deg);
  }
  66.66% {
    -webkit-transform: rotate(3.25deg);
            transform: rotate(3.25deg);
  }
  83.33% {
    -webkit-transform: rotate(-1.125deg);
            transform: rotate(-1.125deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec02 {
    padding: 15% 0 25%;
  }
  #contentsWrapper .p-sec02 h2 {
    width: 66.66%;
  }
  #contentsWrapper .p-sec02 .lineup {
    padding: 2% 4%;
  }
  #contentsWrapper .p-sec02 .lineup > li {
    max-width: 341px;
  }
  #contentsWrapper .p-sec02 .lineup > li figcaption {
    font-size: 2.8vw;
  }
}

#contentsWrapper .p-sec03 {
  padding: 56px 0 4%;
  background: url(../images/sec03_bg.jpg) repeat center top/8.48%;
}

#contentsWrapper .p-sec03_inner {
  background: #fff;
  border: 0.24vw solid #000;
  border-radius: 1.6vw;
  overflow: hidden;
}

#contentsWrapper .p-sec03_innerWrapper {
  width: 60.24%;
  margin: 0 auto;
  position: relative;
}

#contentsWrapper .p-sec03_head {
  padding: 1.2% 0;
  background: #00314e;
}

#contentsWrapper .p-sec03_head h2 {
  font-size: 2.6vw;
  text-align: center;
  color: #fff;
}

#contentsWrapper .p-sec03 .block1 {
  padding-top: 5.6%;
  position: relative;
}

#contentsWrapper .p-sec03 .block1:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 0.019934;
  background: -webkit-gradient(linear, left top, right top, from(#e3007f), color-stop(33.29%, #594397), color-stop(57.13%, #00aeeb), color-stop(84.54%, #6fb92c));
  background: linear-gradient(90deg, #e3007f, #594397 33.29%, #00aeeb 57.13%, #6fb92c 84.54%);
}

#contentsWrapper .p-sec03 .block1 dl {
  font-size: 1.4vw;
}

#contentsWrapper .p-sec03 .block1 dl dt:not(:first-child), #contentsWrapper .p-sec03 .block1 dl dd:not(:first-child) {
  margin-top: 0.25em;
}

#contentsWrapper .p-sec03 .block1 dl dd {
  margin-left: 1.35em;
}

#contentsWrapper .p-sec03 .block1 .figure {
  position: absolute;
  right: 12%;
  bottom: 5%;
  width: 12.542%;
}

#contentsWrapper .p-sec03_foot {
  margin-top: 2.5%;
  padding: 1.5% 0;
  background: #c38cd7;
}

#contentsWrapper .p-sec03 .dec {
  position: absolute;
  z-index: 1;
}

#contentsWrapper .p-sec03 .dec.chara1 {
  top: 22%;
  left: -24%;
  width: 27.76%;
}

#contentsWrapper .p-sec03 .dec.chara2 {
  top: 3%;
  right: -31%;
  width: 27.76%;
}

#contentsWrapper .p-sec03 .dec.chara3 {
  top: 49%;
  left: -31%;
  width: 27.76%;
}

#contentsWrapper .p-sec03 .dec.dec1 {
  top: -7%;
  left: -29%;
  width: 27.76%;
}

#contentsWrapper .p-sec03 .dec.dec2 {
  top: 2%;
  right: -8.5%;
  width: 3.04%;
}

#contentsWrapper .p-sec03 .dec.dec3 {
  top: 20%;
  left: -27%;
  width: 7.16%;
}

#contentsWrapper .p-sec03 .dec.dec4 {
  top: 60%;
  right: -14%;
  width: 7.83%;
}

#contentsWrapper .p-sec03 .dec.dec5 {
  top: 61%;
  right: -32%;
  width: 27.76%;
}

#contentsWrapper .p-sec03 .dec.dec6 {
  top: 90%;
  left: -13%;
  width: 5.0502%;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-sec03 .block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #contentsWrapper .p-sec03 .block1 .img {
    width: 32.6%;
    padding-left: 5%;
  }
  #contentsWrapper .p-sec03 .block1 .detail {
    width: 61.4%;
    margin-left: 6%;
    margin-top: 2%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec03 {
    padding: 12% 0 10%;
  }
  #contentsWrapper .p-sec03_innerWrapper {
    width: 96%;
  }
  #contentsWrapper .p-sec03_head h2 {
    font-size: 5vw;
  }
  #contentsWrapper .p-sec03 .block1 {
    padding-top: 7%;
  }
  #contentsWrapper .p-sec03 .block1 .img {
    width: 50%;
    padding-left: 10%;
  }
  #contentsWrapper .p-sec03 .block1 dl {
    font-size: 3vw;
    margin-top: 1em;
    padding: 0 10%;
  }
  #contentsWrapper .p-sec03 .block1 .figure {
    top: 9%;
    bottom: auto;
    width: 27%;
  }
  #contentsWrapper .p-sec03 .dec.chara1 {
    top: -10%;
    left: 10%;
  }
  #contentsWrapper .p-sec03 .dec.chara2 {
    top: -7%;
    right: 0%;
  }
  #contentsWrapper .p-sec03 .dec.chara3 {
    top: 74%;
    left: 66%;
  }
  #contentsWrapper .p-sec03 .dec.dec1 {
    top: -7%;
    left: -7%;
  }
  #contentsWrapper .p-sec03 .dec.dec2 {
    top: -5%;
    right: 0%;
  }
  #contentsWrapper .p-sec03 .dec.dec3 {
    top: -7%;
    left: 7%;
  }
  #contentsWrapper .p-sec03 .dec.dec4 {
    top: 60%;
    right: 10%;
  }
  #contentsWrapper .p-sec03 .dec.dec5 {
    top: 61%;
    right: 15%;
  }
  #contentsWrapper .p-sec03 .dec.dec6 {
    top: 70%;
    left: 90%;
  }
}

#contentsWrapper .contentsFooter {
  padding: 1em 2.5%;
  background: #005fa0;
  position: relative;
  z-index: 3;
}

#contentsWrapper .contentsFooter .copyright {
  font-family: "UD新丸ゴ R","UD Shin Maru Go Regular","Noto Sans JP", sans-serif;
  font-size: 1.2vw;
  letter-spacing: 0.04em;
  color: #fff;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentsFooter .copyright {
    font-size: max(2.5vw,10px);
  }
}

/* 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.fadeInSwingL {
  opacity: 0;
  -webkit-transition: 1s cubic-bezier(0.33, 0, 0.33, 1) 0.3s;
  transition: 1s cubic-bezier(0.33, 0, 0.33, 1) 0.3s;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

.js-scroll.fadeInSwingR {
  opacity: 0;
  -webkit-transition: 1s cubic-bezier(0.33, 0, 0.33, 1) 0.3s;
  transition: 1s cubic-bezier(0.33, 0, 0.33, 1) 0.3s;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

.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: -webkit-gradient(linear, right top, left top, color-stop(45%, transparent), color-stop(55%, #000));
  -webkit-mask-image: linear-gradient(-90deg, transparent 45%, #000 55%);
          mask-image: -webkit-gradient(linear, right top, left top, color-stop(45%, transparent), color-stop(55%, #000));
          mask-image: linear-gradient(-90deg, transparent 45%, #000 55%);
  -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.fadeInSwingL, .js-scroll.is-scroll.fadeInSwingR, .js-scroll.is-scroll.fadeInPop {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

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

.animateTeke {
  -webkit-animation: teke 1s steps(2, start) 0s infinite normal forwards running;
          animation: teke 1s steps(2, start) 0s infinite normal forwards running;
}

.animatePiko {
  -webkit-animation: piko 1s steps(2, start) 0s infinite normal forwards running;
          animation: piko 1s steps(2, start) 0s infinite normal forwards running;
}

.animateFuwa {
  -webkit-animation: fuwa 2s ease-in-out 0s infinite alternate forwards running;
          animation: fuwa 2s ease-in-out 0s infinite alternate forwards running;
}

@-webkit-keyframes blinking {
  0% {
    -webkit-filter: brightness(0.1);
            filter: brightness(0.1);
  }
  100% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}

@keyframes blinking {
  0% {
    -webkit-filter: brightness(0.1);
            filter: brightness(0.1);
  }
  100% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}

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

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

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

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

@-webkit-keyframes fuwa {
  0% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  100% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}

@keyframes fuwa {
  0% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  100% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}

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