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

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "ヒラギノ角ゴ W6 JIS2004", "Hiragino Kaku Gothic W6 JIS2004", "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-bold {
  font-family: "ヒラギノ角ゴ W8 JIS2004", "Hiragino Kaku Gothic W8 JIS2004", "Noto Sans JP", sans-serif;
  font-weight: bold;
}

#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: "ヒラギノ角ゴ W6 JIS2004", "Hiragino Kaku Gothic W6 JIS2004", "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: #e0002a;
  border-radius: 3em;
  padding: 0.1em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

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

@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 .p-kv {
  position: relative;
  overflow: hidden;
}

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

#contentsWrapper .p-kv .logo1 {
  position: absolute;
  top: 2.5%;
  left: 2.25%;
  width: 26.48%;
  z-index: 2;
}

#contentsWrapper .p-kv .logo2 {
  position: absolute;
  bottom: 3.9%;
  right: 4.1%;
  width: 56.16%;
  z-index: 2;
}

#contentsWrapper .p-sec01 {
  padding: 8.5% 0 5.3%;
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  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: -7.5%;
  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: 3.8em;
  aspect-ratio: 1 / 0.4934;
  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;
  top: -0.15em;
  left: -2%;
}

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

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

#contentsWrapper .p-sec01 .block1 .detail .explain.top .label {
  background: url(../images/sec01_labelBg_top.png) no-repeat center/100% 100%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top .label:before {
  top: -0.15em;
  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: url(../images/sec01_labelBg_bottom.png) no-repeat center/100% 100%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.bottom .label:before {
  top: 0;
  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: 72.4%;
  bottom: -17.3%;
  width: 23.7%;
}

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

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

#contentsWrapper .p-sec01 .dec1 {
  top: -4.3%;
  left: -26.3%;
  width: 30.4%;
}

#contentsWrapper .p-sec01 .dec2 {
  bottom: 8%;
  right: -16.8%;
  width: 19.2%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec01 {
    padding: 20% 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 .dec1 {
    top: 3%;
    left: -7%;
  }
  #contentsWrapper .p-sec01 .dec2 {
    top: -25%;
    left: 82%;
  }
}

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

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

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

#contentsWrapper .p-animation01 .dec1 {
  top: 2.7%;
  left: 15.7%;
  width: 12%;
}

#contentsWrapper .p-animation01 .dec2 {
  top: 2.6%;
  right: 6%;
  width: 23.44%;
}

#contentsWrapper .p-animation01 .dec3 {
  bottom: 20.7%;
  left: 1.4%;
  width: 12.6%;
}

#contentsWrapper .p-animation01 .dec4 {
  bottom: 5.7%;
  left: 15.5%;
  width: 13.16%;
}

#contentsWrapper .p-animation01 .dec5 {
  bottom: 3.7%;
  right: 5.6%;
  width: 13.88%;
}

#contentsWrapper .p-sec02 {
  padding: 11% 0 calc(12.9% + 2.6vw);
  background: url(../images/sec02_bg.jpg) no-repeat center top/cover;
}

#contentsWrapper .p-sec02 h2 {
  width: 35.24%;
  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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.4vw 3%;
  padding: 2% 20%;
}

#contentsWrapper .p-sec02 .lineup > li {
  max-width: 13.64vw;
  width: calc(91% / 4);
}

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

#contentsWrapper .p-sec02 .lineup > li figcaption {
  font-size: 1.56vw;
  text-align: center;
  line-height: 1.3;
  color: #004da0;
  margin-top: 0.4em;
}

#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.66, 0, 0.5, 1) 0.3s 1 normal forwards running;
          animation: lineupImg 1s cubic-bezier(0.66, 0, 0.5, 1) 0.3s 1 normal forwards running;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

@-webkit-keyframes lineupImg {
  0% {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
  15% {
    -webkit-transform: translateY(0) rotate(-3deg);
            transform: translateY(0) rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  25% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  30%, 100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes lineupImg {
  0% {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
  15% {
    -webkit-transform: translateY(0) rotate(-3deg);
            transform: translateY(0) rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  25% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  30%, 100% {
    -webkit-transform: none;
            transform: none;
  }
}

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

#contentsWrapper .p-sec02 .dec1 {
  top: 6.9%;
  left: -3.5%;
  width: 14.88%;
}

#contentsWrapper .p-sec02 .dec2 {
  top: 11.7%;
  left: 17.3%;
  width: 6.68%;
}

#contentsWrapper .p-sec02 .dec3 {
  top: 13.3%;
  left: 25.7%;
  width: 5.24%;
}

#contentsWrapper .p-sec02 .dec4 {
  top: 14.6%;
  left: 74.5%;
  width: 9.36%;
}

#contentsWrapper .p-sec02 .dec5 {
  top: 39.3%;
  left: -1.1%;
  width: 13.48%;
}

#contentsWrapper .p-sec02 .dec6 {
  top: 45.5%;
  left: 10%;
  width: 12.12%;
}

#contentsWrapper .p-sec02 .dec7 {
  top: 47.4%;
  left: 29.3%;
  width: 8.44%;
}

#contentsWrapper .p-sec02 .dec8 {
  top: 31.8%;
  left: 80.8%;
  width: 16.12%;
}

#contentsWrapper .p-sec02 .dec9 {
  top: 48.6%;
  left: 71.4%;
  width: 14%;
}

#contentsWrapper .p-sec02 .dec10 {
  left: 14.1%;
  bottom: 6.2%;
  width: 10.24%;
}

#contentsWrapper .p-sec02 .dec11 {
  right: 26.4%;
  bottom: 3.3%;
  width: 14.64%;
}

@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-sec02 .dec1 {
    top: 11%;
    left: -3.5%;
  }
  #contentsWrapper .p-sec02 .dec2 {
    top: 8.7%;
    left: 11.3%;
  }
  #contentsWrapper .p-sec02 .dec3 {
    top: 23.3%;
    left: 0.7%;
  }
  #contentsWrapper .p-sec02 .dec4 {
    top: 11%;
    left: 87%;
  }
  #contentsWrapper .p-sec02 .dec5 {
    top: 48%;
    left: -2%;
  }
  #contentsWrapper .p-sec02 .dec6 {
    top: 46.5%;
    left: 14%;
  }
  #contentsWrapper .p-sec02 .dec7 {
    top: 47.4%;
    left: 31%;
  }
  #contentsWrapper .p-sec02 .dec8 {
    top: 46%;
    left: 85%;
  }
  #contentsWrapper .p-sec02 .dec9 {
    top: 54%;
    left: 79%;
  }
  #contentsWrapper .p-sec02 .dec10 {
    left: 4%;
    bottom: 6.2%;
  }
  #contentsWrapper .p-sec02 .dec11 {
    right: 7%;
    bottom: 4%;
  }
}

#contentsWrapper .p-sec03 {
  padding: 6.4% 0 4%;
  background: #ffdc69 url(../images/sec03_bg_2.png) repeat center top/120%;
  position: relative;
  z-index: 2;
}

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

#contentsWrapper .p-sec03 .line {
  position: absolute;
  top: -3vw;
  left: 0;
  width: 88.72%;
  aspect-ratio: 1 / 0.04012;
}

#contentsWrapper .p-sec03 .crayon {
  position: absolute;
  left: 89.4%;
  bottom: 101%;
  width: 13.6%;
  aspect-ratio: 1 / 1.0824;
}

#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: 2% 0;
  background: #004da0;
}

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

#contentsWrapper .p-sec03 .block1 {
  margin-top: 2.5%;
  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: 9%;
  bottom: 7.6%;
  width: 16.437%;
}

#contentsWrapper .p-sec03_foot {
  padding: 3% 0;
}

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

#contentsWrapper .p-sec03 .dec1 {
  top: 16.1%;
  left: -23.6%;
  width: 20.7%;
}

#contentsWrapper .p-sec03 .dec2 {
  top: 16.8%;
  left: 84.6%;
  width: 8.62%;
}

#contentsWrapper .p-sec03 .dec3 {
  top: 35.3%;
  left: 81.4%;
  width: 13.82%;
}

#contentsWrapper .p-sec03 .dec4 {
  top: 84.7%;
  left: 87.2%;
  width: 7.95%;
}

#contentsWrapper .p-sec03 .dec5 {
  left: 88.4%;
  bottom: -41%;
  width: 59.28%;
}

@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.5%;
    padding-left: 6%;
  }
  #contentsWrapper .p-sec03 .block1 .detail {
    width: 60.5%;
    margin-left: 6%;
    margin-top: 3%;
  }
}

@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 {
    margin-top: 5%;
  }
  #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 .dec1 {
    top: -7%;
    left: 2%;
  }
  #contentsWrapper .p-sec03 .dec2 {
    top: 9%;
    left: 64%;
  }
  #contentsWrapper .p-sec03 .dec3 {
    top: -7%;
    left: 24%;
  }
  #contentsWrapper .p-sec03 .dec4 {
    top: 12%;
    left: 88%;
  }
  #contentsWrapper .p-sec03 .dec5 {
    bottom: 11%;
    left: 60%;
  }
}

#contentsWrapper .contentsFooter {
  padding: 3% 1.25%;
  background: #b4e674;
  position: relative;
  z-index: 3;
}

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

@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 ↑ ======== */
