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

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "UD新丸ゴ B", "UD Shin Maru Go 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: 1.04167vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 1.25vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 1.45833vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 1.66667vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 1.875vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 2.08333vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 2.29167vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 2.5vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 2.70833vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 2.91667vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 3.125vw !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-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新丸ゴ B", "UD Shin Maru Go 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 .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: 105vh;
}

#contentsWrapper .parallax.parallax1 .bg {
  background: url(../images/bg001.jpg) repeat-y center/cover;
}

#contentsWrapper .parallax.parallax2 .bg {
  background: url(../images/bg002.jpg) repeat-y center/cover;
}

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

#contentsWrapper .c-btn a {
  font-size: 2.12vw;
  text-align: center;
  letter-spacing: 0.04em;
  display: block;
  width: 100%;
  max-width: 14.7em;
  color: #e63f87;
  background: #fff;
  border-radius: 3em;
  padding: 0.2em 1em;
  margin: 0 auto;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#contentsWrapper .c-btn a:hover {
  color: #fff;
  background-color: #eb8fb7;
}

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

#contentsWrapper .c-frame {
  background: #fff;
  border: 0.35vw solid #000;
  border-radius: 2vw;
  position: relative;
}

#contentsWrapper .c-frame:before {
  content: '';
  position: absolute;
  top: 1vw;
  left: 1vw;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-60deg, #ff5a5a, #ff5a5a 2.1vw, #ff9b9b 2.2vw, #ff9b9b 4.2vw, #ff5a5a 4.3vw);
  border: inherit;
  border-radius: inherit;
  z-index: -1;
}

#contentsWrapper .c-frame.--yellow:before {
  background: repeating-linear-gradient(-60deg, #ffc328, #ffc328 2.1vw, #ffe191 2.2vw, #ffe191 4.2vw, #ffc328 4.3vw);
}

#contentsWrapper .c-frame.--blue:before {
  background: repeating-linear-gradient(-60deg, #5fa0ff, #5fa0ff 2.1vw, #96d2ff 2.2vw, #96d2ff 4.2vw, #5fa0ff 4.3vw);
}

#contentsWrapper .c-frame.--green:before {
  background: repeating-linear-gradient(-60deg, #00966e, #00966e 2.1vw, #6ec355 2.2vw, #6ec355 4.2vw, #00966e 4.3vw);
}

#contentsWrapper .c-frame > * {
  border-radius: 1.7vw;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}

#contentsWrapper .c-frame > a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contentsWrapper .c-frame > a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#contentsWrapper .c-frame img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contentsWrapper .swiper img {
  width: 100%;
}

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

#contentsWrapper .swiper-slide {
  min-width: 100%;
}

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

#contentsWrapper .p-kv .logo1 {
  position: absolute;
  top: 2.4%;
  left: 3.5%;
  width: 24.4%;
  z-index: 2;
}

#contentsWrapper .p-kv .logo2 {
  position: absolute;
  top: 8.7%;
  left: 1.7%;
  width: 28%;
  z-index: 2;
}

#contentsWrapper .p-sec01 {
  padding: 6% 0 3.7%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ff5a5a), color-stop(50%, transparent)), url(../images/sec01_bg.jpg);
  background: linear-gradient(#ff5a5a 50%, transparent 50%), url(../images/sec01_bg.jpg);
  overflow: hidden;
  position: relative;
}

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

#contentsWrapper .p-sec01_inner h2 {
  position: absolute;
  top: -9%;
  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%;
  right: 0.7%;
}

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

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

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

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

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

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

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

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

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

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

#contentsWrapper .p-sec01 .block1 .detail .choco {
  position: absolute;
  left: 34.5%;
  bottom: -11%;
  width: 20.7%;
}

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

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

#contentsWrapper .p-sec01 .dec1 {
  top: -20%;
  left: -31.3%;
  width: 35.6%;
}

#contentsWrapper .p-sec01 .dec2 {
  top: -7.4%;
  left: 106.1%;
  width: 13.695%;
}

#contentsWrapper .p-sec01 .dec3 {
  top: 69%;
  left: -28.1%;
  width: 26.68%;
}

#contentsWrapper .p-sec01 .dec4 {
  left: 64.6%;
  bottom: -2%;
  width: 30.4%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec01 {
    padding: 20% 0 20%;
  }
  #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 .dec1 {
    top: -30%;
    left: -10%;
  }
  #contentsWrapper .p-sec01 .dec2 {
    top: -25%;
    left: 85%;
  }
  #contentsWrapper .p-sec01 .dec3 {
    top: 102%;
    left: 0%;
  }
  #contentsWrapper .p-sec01 .dec4 {
    bottom: -4%;
    left: 53%;
    width: 45%;
  }
}

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

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

#contentsWrapper .p-sec02 .lineup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
  padding: 0 17%;
}

#contentsWrapper .p-sec02 .lineup > li {
  width: calc(94% / 4);
  margin-top: -6.66%;
}

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

#contentsWrapper .p-sec02 .lineup > li figcaption {
  font-size: 1.56vw;
  text-align: center;
  line-height: 1.3;
  color: #783c14;
}

#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 {
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

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

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

@-webkit-keyframes lineupImg {
  0% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  25% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes lineupImg {
  0% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  25% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

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

#contentsWrapper .p-sec02 .dec1 {
  top: 3.2%;
  left: 5%;
  width: 20.88%;
}

#contentsWrapper .p-sec02 .dec2 {
  top: 3.5%;
  left: 76%;
  width: 20.84%;
}

#contentsWrapper .p-sec02 .dec3 {
  top: 16.2%;
  left: 1.5%;
  width: 5.16%;
}

#contentsWrapper .p-sec02 .dec4 {
  top: 21.5%;
  left: 93.4%;
  width: 5.16%;
}

#contentsWrapper .p-sec02 .dec5 {
  top: 40.2%;
  left: 3%;
  width: 9.16%;
}

#contentsWrapper .p-sec02 .dec6 {
  top: 46.7%;
  left: 91%;
  width: 5.32%;
}

#contentsWrapper .p-sec02 .dec7 {
  left: 1.2%;
  bottom: 24%;
  width: 17.52%;
}

#contentsWrapper .p-sec02 .dec8 {
  left: 85.9%;
  bottom: 37.4%;
  width: 10.52%;
}

#contentsWrapper .p-sec02 .dec9 {
  left: 86.4%;
  bottom: 23.4%;
  width: 9.84%;
}

#contentsWrapper .p-sec02 .dec10 {
  left: 5.2%;
  bottom: 8.8%;
  width: 8.28%;
}

#contentsWrapper .p-sec02 .dec11 {
  left: 80.3%;
  bottom: 3.7%;
  width: 19.64%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec02 {
    padding: 10% 0 22%;
  }
  #contentsWrapper .p-sec02 .lineup {
    padding: 0 4%;
  }
  #contentsWrapper .p-sec02 .lineup > li img {
    width: 75%;
  }
  #contentsWrapper .p-sec02 .lineup > li figcaption {
    font-size: 2.8vw;
  }
  #contentsWrapper .p-sec02 .dec3 {
    top: 15%;
  }
  #contentsWrapper .p-sec02 .dec4 {
    top: 17%;
  }
  #contentsWrapper .p-sec02 .dec5 {
    top: 39%;
    left: 1%;
  }
  #contentsWrapper .p-sec02 .dec6 {
    top: 40%;
  }
  #contentsWrapper .p-sec02 .dec7 {
    bottom: 1%;
  }
  #contentsWrapper .p-sec02 .dec8 {
    bottom: 34%;
  }
  #contentsWrapper .p-sec02 .dec9 {
    bottom: 8%;
    left: 66%;
  }
  #contentsWrapper .p-sec02 .dec10 {
    bottom: 9%;
    left: 25%;
  }
}

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

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

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

#contentsWrapper .p-sec03_head {
  padding: 2% 0 4%;
  background: url(../images/sec03_innerBg.png) no-repeat center top/100% auto;
}

#contentsWrapper .p-sec03 h2 {
  margin: 0 auto;
  width: 18.062%;
}

#contentsWrapper .p-sec03 .block1 {
  margin-top: 2%;
  position: relative;
}

#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: 10.7%;
  bottom: 4%;
  width: 13.48%;
}

#contentsWrapper .p-sec03_foot {
  margin-top: 2%;
  padding: 1% 0;
  background: #e63f87;
}

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

#contentsWrapper .p-sec03 .dec1 {
  top: 6.2%;
  left: -23.8%;
  width: 22.178%;
}

#contentsWrapper .p-sec03 .dec2 {
  top: -6.2%;
  left: 93.7%;
  width: 29.748%;
}

#contentsWrapper .p-sec03 .dec3 {
  top: 40.1%;
  left: -21.2%;
  width: 8.035%;
}

#contentsWrapper .p-sec03 .dec4 {
  top: 44.2%;
  left: 110.4%;
  width: 13.414%;
}

#contentsWrapper .p-sec03 .dec5 {
  left: -19.3%;
  bottom: -5.5%;
  width: 16.8%;
}

#contentsWrapper .p-sec03 .dec6 {
  left: 97.7%;
  bottom: 9%;
  width: 27.5%;
}

#contentsWrapper .p-sec03 .dec7 {
  left: 117%;
  bottom: -6.3%;
  width: 8.7%;
}

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

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec03 {
    padding: 12% 0 10%;
  }
  #contentsWrapper .p-sec03_innerWrapper {
    width: 96%;
  }
  #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: 7%;
    bottom: auto;
    width: 25%;
  }
  #contentsWrapper .p-sec03 .dec1 {
    top: -7%;
    left: 2%;
  }
  #contentsWrapper .p-sec03 .dec2 {
    top: -4%;
    left: 75%;
  }
  #contentsWrapper .p-sec03 .dec3 {
    top: 5%;
    left: -2%;
  }
  #contentsWrapper .p-sec03 .dec4 {
    top: 10%;
    left: 88%;
  }
  #contentsWrapper .p-sec03 .dec5 {
    bottom: 11%;
    left: 60%;
  }
  #contentsWrapper .p-sec03 .dec6 {
    bottom: 19%;
    left: 72%;
  }
  #contentsWrapper .p-sec03 .dec7 {
    bottom: 12%;
    left: 88%;
  }
}

#contentsWrapper .p-sec04 {
  padding: 6.5% 0 10.4%;
  border-top: 1.75vw solid #ff5a5a;
  background: url(../images/sec04_bg.jpg) no-repeat center top/cover;
  position: relative;
}

#contentsWrapper .p-sec04 .neon1 {
  position: absolute;
  top: 1vw;
  left: 0;
  right: 0;
  margin: auto;
  width: 97.6%;
  -webkit-animation: blinking 0.75s steps(2, start) 0s infinite normal forwards running;
          animation: blinking 0.75s steps(2, start) 0s infinite normal forwards running;
}

#contentsWrapper .p-sec04 .neon2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1vw;
  margin: auto;
  width: 97.6%;
  -webkit-animation: blinking 0.75s steps(2, start) 0s infinite normal forwards running;
          animation: blinking 0.75s steps(2, start) 0s infinite normal forwards running;
}

#contentsWrapper .p-sec04 .block1 {
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-sec04 .block1 h2 {
  width: 27%;
  margin: 0 auto;
}

#contentsWrapper .p-sec04 .block1 .c-frame {
  width: 38.8%;
  margin: 1.8% auto 0;
  aspect-ratio: 1 / 1;
  border-radius: 3.5vw;
}

#contentsWrapper .p-sec04 .block1 .c-frame > * {
  border-radius: 3.3vw;
}

#contentsWrapper .p-sec04 .postList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.8vw 8%;
  padding: 0 10%;
  margin-top: 5.3%;
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-sec04 .postList > li {
  width: calc(84% / 3);
  aspect-ratio: 1 / 1.76;
}

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

#contentsWrapper .p-sec04 .dec1 {
  top: 2.3%;
  left: 2.5%;
  width: 26%;
}

#contentsWrapper .p-sec04 .dec2 {
  top: 4.4%;
  left: 72.6%;
  width: 10.76%;
}

#contentsWrapper .p-sec04 .dec3 {
  top: 26.7%;
  left: 86.7%;
  width: 5.08%;
}

#contentsWrapper .p-sec04 .dec4 {
  top: 79.7%;
  left: 15.9%;
  width: 5.88%;
}

#contentsWrapper .p-sec04 .dec5 {
  top: 39.8%;
  left: 74%;
  width: 26%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec04 .postList {
    gap: 3.8vw;
  }
  #contentsWrapper .p-sec04 .postList > li {
    width: calc(calc(100% - 3.8vw) / 2);
  }
}

#contentsWrapper .contentsFooter {
  padding: 3% 2.5%;
  background: #96d2ff;
}

#contentsWrapper .contentsFooter .copyright {
  font-family: "UD新丸ゴ M","UD Shin Maru Go Medium","Noto Sans JP", sans-serif;
  font-size: 1.2vw;
}

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

.animatePiko {
  -webkit-animation: piko 1s steps(2, start) 0s infinite normal forwards running;
          animation: piko 1s steps(2, start) 0s infinite normal 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 piko {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

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

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