@charset "UTF-8";
:root {
  --maincolor: #863c10;
  --subcolor: #fff;
  --textcolor: #863c10;
  --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 h3.heading {
  font-size: 2vw;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 0.5em;
  padding-bottom: 0.25em;
  position: relative;
}

#contentsWrapper h3.heading:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 0.2em;
  background: radial-gradient(circle, currentcolor 0.1em, transparent 0.1em) repeat-x center/0.6em 0.2em;
}

@media screen and (max-width: 800px) {
  #contentsWrapper h3.heading {
    font-size: 5vw;
  }
}

#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 .hoverPop {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contentsWrapper .hoverPop:hover {
  -webkit-filter: contrast(0.8) brightness(1.2);
          filter: contrast(0.8) brightness(1.2);
  -webkit-animation: hoverPop 0.3s cubic-bezier(0, 0.5, 0.5, 1) 0s 1 normal forwards running;
          animation: hoverPop 0.3s cubic-bezier(0, 0.5, 0.5, 1) 0s 1 normal forwards running;
}

#contentsWrapper .p-kv {
  position: relative;
  background: #ffffb4;
}

#contentsWrapper .p-kv .logo {
  position: absolute;
  top: 3%;
  left: 2.5%;
  width: 27.04%;
  z-index: 2;
}

#contentsWrapper .p-kv_slider {
  position: relative;
  overflow: visible;
}

#contentsWrapper .p-kv_slider .swiper-slide {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s;
  transition: 1s;
  padding: 8.8vw 4.36vw;
}

#contentsWrapper .p-kv_slider .swiper-slide-active, #contentsWrapper .p-kv_slider .swiper-slide-duplicate-active {
  -webkit-transform: scale(1.35) rotate(-360deg);
          transform: scale(1.35) rotate(-360deg);
}

#contentsWrapper .p-kv_slider .swiper-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 100;
  cursor: pointer;
}

#contentsWrapper .p-kv_slider .swiper-arrow img {
  width: 6.48vw;
}

#contentsWrapper .p-kv_slider .swiper-arrow.prev {
  left: 13.3vw;
}

#contentsWrapper .p-kv_slider .swiper-arrow.next {
  right: 13.3vw;
}

#contentsWrapper .p-kv_slider .swiper-arrow:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

#contentsWrapper .p-kv_slider .swiper-pagination {
  position: absolute;
  top: 103%;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.7vw;
}

#contentsWrapper .p-kv_slider .swiper-pagination-bullet {
  display: block;
  width: 3vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #863c10;
  border: 2px solid #fff;
  cursor: pointer;
  z-index: 101;
}

#contentsWrapper .p-kv_slider .swiper-pagination-bullet-active {
  background: #ff5a5a;
}

#contentsWrapper .p-kv_slider .swiper-pagination-bullet:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-kv_slider .swiper-pagination-bullet {
    width: 4.5vw;
  }
}

#contentsWrapper .p-sec01 {
  padding: 6.8% 0 7.8%;
  background: #ffb1b1 url(../images/sec01_bg.png) no-repeat center top 6.5%/92.24%;
  position: relative;
}

#contentsWrapper .p-sec01:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 1px);
  margin: auto;
  width: 100%;
  aspect-ratio: 1 / 0.1096;
  background: url(../images/sec01_top.svg) no-repeat center bottom/100% 100%;
  z-index: 1;
}

#contentsWrapper .p-sec01_inner {
  width: 44vw;
  background: #fff;
  border: 0.4vw solid #863c10;
  border-radius: 15vw;
  margin: 0 auto;
  position: relative;
}

#contentsWrapper .p-sec01_inner h2 {
  width: 84.6%;
  margin: 4.5% auto 0;
  position: relative;
}

#contentsWrapper .p-sec01_inner h2 .toha {
  display: block;
  position: absolute;
  top: 87%;
  right: 1%;
  width: 13.56%;
}

#contentsWrapper .p-sec01 .txt1 {
  font-family: "プフ ピクニック", "Puhu Picnic", sans-serif;
  font-size: 2.3vw;
  text-align: center;
}

#contentsWrapper .p-sec01 .txt1 .heart {
  color: #ff5a5a;
}

#contentsWrapper .p-sec01 .wrapper1 {
  padding-top: 108%;
  position: relative;
}

#contentsWrapper .p-sec01 .wrapper1 .block {
  position: absolute;
  background: #ffffe1;
  border: 0.25vw solid #863c10;
  -webkit-box-shadow: 0.2vw 0.2vw 0 0.15vw #863c10;
          box-shadow: 0.2vw 0.2vw 0 0.15vw #863c10;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  text-align: center;
}

#contentsWrapper .p-sec01 .wrapper1 .block h3 {
  font-size: 2.45vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.1em 0.4em;
  color: #fff;
  background: #ff1e1e;
  border-radius: 0.2em;
}

#contentsWrapper .p-sec01 .wrapper1 .block1 {
  top: 9%;
  left: -8.5%;
  width: 59.6%;
}

#contentsWrapper .p-sec01 .wrapper1 .block1 img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 61.2%;
}

#contentsWrapper .p-sec01 .wrapper1 .block2 {
  top: -1%;
  right: -13.5%;
  width: 52.3%;
  padding: 7% 5%;
  font-size: 1.7vw;
}

#contentsWrapper .p-sec01 .wrapper1 .block2:after {
  content: '';
  position: absolute;
  top: 40.5%;
  left: -39%;
  width: 47%;
  aspect-ratio: 1 / 0.3066;
  background: url(../images/sec01_arrow01.png) no-repeat center right/contain;
}

#contentsWrapper .p-sec01 .wrapper1 .block3 {
  top: 63%;
  left: 29.5%;
  width: 47.71%;
  font-size: 1.5vw;
  padding: 7% 5%;
}

#contentsWrapper .p-sec01 .wrapper1 .block3:after {
  content: '';
  position: absolute;
  top: 12%;
  left: -24.5%;
  width: 39%;
  aspect-ratio: 1 / 0.6985;
  background: url(../images/sec01_arrow02.png) no-repeat center right/contain;
}

#contentsWrapper .p-sec01 .wrapper1 .block3 h3 {
  font-size: 2.3vw;
  background: #ffa0af;
}

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

#contentsWrapper .p-sec01 .dec1 {
  top: 11.4%;
  left: -38.7%;
  width: 32.12%;
}

#contentsWrapper .p-sec01 .dec2 {
  top: 1.4%;
  right: -26.4%;
  width: 32.12%;
}

#contentsWrapper .p-sec01 .dec3 {
  top: 61.7%;
  left: -46%;
  width: 32.12%;
}

#contentsWrapper .p-sec01 .dec4 {
  top: 79.5%;
  right: -38.5%;
  width: 32.12%;
}

#contentsWrapper .p-sec01 .dec5 {
  top: 34.5%;
  right: -9.5%;
  width: 40.458%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec01 {
    padding: 12% 0 14%;
  }
  #contentsWrapper .p-sec01_inner {
    width: 84vw;
  }
  #contentsWrapper .p-sec01 .txt1 {
    font-size: 4.5vw;
  }
  #contentsWrapper .p-sec01 .wrapper1 .block h3 {
    font-size: 4vw;
  }
  #contentsWrapper .p-sec01 .wrapper1 .block2 {
    font-size: 3.5vw;
  }
  #contentsWrapper .p-sec01 .wrapper1 .block3 {
    font-size: 3.4vw;
  }
  #contentsWrapper .p-sec01 .dec1 {
    top: 2.4%;
    left: -27.7%;
  }
  #contentsWrapper .p-sec01 .dec2 {
    top: -0.6%;
    right: -17.4%;
  }
  #contentsWrapper .p-sec01 .dec3 {
    top: 78.7%;
    left: -15%;
  }
  #contentsWrapper .p-sec01 .dec4 {
    top: 86.5%;
    right: -11.5%;
  }
}

#contentsWrapper .p-sec02 {
  padding: 4.3% 0;
  background: #cdf2ff url(../images/sec02_bg.png) no-repeat left 36% top/81.48%;
  position: relative;
}

#contentsWrapper .p-sec02:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 1px);
  margin: auto;
  width: 100%;
  aspect-ratio: 1 / 0.1096;
  background: url(../images/sec02_top.svg) no-repeat center bottom/100% 100%;
  z-index: 1;
}

#contentsWrapper .p-sec02 .block1 ul {
  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: 4%;
  width: 57.04%;
  margin: 0 auto;
}

#contentsWrapper .p-sec02 .block1 ul li {
  width: 48%;
  margin-top: -4%;
}

#contentsWrapper .p-sec02 .block1 ul.js-scroll li {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#contentsWrapper .p-sec02 .block1 ul.is-scroll li {
  -webkit-animation: pop 1s cubic-bezier(0.5, 0, 0.33, 1) 0.3s 1 normal forwards running;
          animation: pop 1s cubic-bezier(0.5, 0, 0.33, 1) 0.3s 1 normal forwards running;
}

#contentsWrapper .p-sec02 .block1 ul.is-scroll li:nth-child(1) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

#contentsWrapper .p-sec02 .block1 ul.is-scroll li:nth-child(2) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

#contentsWrapper .p-sec02 .block1 ul.is-scroll li:nth-child(3) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

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

#contentsWrapper .p-sec02 .dec1 {
  top: 8.4%;
  left: 4.4%;
  width: 14%;
}

#contentsWrapper .p-sec02 .dec2 {
  top: 9.8%;
  right: 8.7%;
  width: 14%;
}

#contentsWrapper .p-sec02 .dec3 {
  top: 43%;
  right: 3.6%;
  width: 14%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec02 {
    padding: 8% 0;
  }
  #contentsWrapper .p-sec02 .block1 ul {
    width: 84%;
  }
  #contentsWrapper .p-sec02 .dec1 {
    top: 50%;
  }
  #contentsWrapper .p-sec02 .dec2 {
    top: 2.8%;
    right: 0.7%;
  }
  #contentsWrapper .p-sec02 .dec3 {
    top: 61%;
  }
}

#contentsWrapper .p-sec03 {
  padding: 3.4% 0 5.8%;
  background: #fffa96 url(../images/sec03_bg.png) repeat-y left 35% top 23%/83.88%;
  position: relative;
}

#contentsWrapper .p-sec03:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 1px);
  margin: auto;
  width: 100%;
  aspect-ratio: 1 / 0.1096;
  background: url(../images/sec03_top.svg) no-repeat center bottom/100% 100%;
  z-index: 1;
}

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

#contentsWrapper .p-sec03 .lineup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: 69.92%;
  margin: 1% auto 0;
}

#contentsWrapper .p-sec03 .lineup .item {
  width: 60%;
  aspect-ratio: 1 / 1;
  font-size: 1.3vw;
  text-align: center;
  background: #fff;
  border: 0.4vw solid var(--maincolor);
  border-radius: 50%;
  -webkit-box-shadow: 0.4vw 0.4vw 0 0.2vw var(--maincolor);
          box-shadow: 0.4vw 0.4vw 0 0.2vw var(--maincolor);
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#contentsWrapper .p-sec03 .lineup .item:not(:last-child) {
  margin-top: -20%;
}

#contentsWrapper .p-sec03 .lineup .item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
}

#contentsWrapper .p-sec03 .lineup .item:nth-child(4n+1) {
  margin-left: 5%;
}

#contentsWrapper .p-sec03 .lineup .item.comingsoon img {
  width: 80%;
}

#contentsWrapper .p-sec03 .lineup .item figure {
  width: 60%;
  margin: 0 auto 1em;
  padding: 0 20px 1.5em;
  position: relative;
}

#contentsWrapper .p-sec03 .lineup .item figure:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 0.3em;
  background: radial-gradient(circle, currentcolor 0.15em, transparent 0.15em) repeat-x center/0.9em 0.3em;
}

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

#contentsWrapper .p-sec03 .dec1 {
  top: -2vw;
  left: 13%;
  width: 14%;
}

#contentsWrapper .p-sec03 .dec2 {
  top: 23.5vw;
  left: 68.4%;
  width: 14%;
}

#contentsWrapper .p-sec03 .dec3 {
  top: 30.3vw;
  left: 3.4%;
  width: 14%;
}

#contentsWrapper .p-sec03 .dec4 {
  top: 33vw;
  left: 85%;
  width: 14%;
}

#contentsWrapper .p-sec03 .dec5 {
  top: 58vw;
  left: 15%;
  width: 14%;
}

#contentsWrapper .p-sec03 .dec6 {
  top: 87vw;
  left: 61.3%;
  width: 14%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec03 {
    padding: 7% 0 11%;
  }
  #contentsWrapper .p-sec03 h2 {
    width: 66%;
  }
  #contentsWrapper .p-sec03 .lineup {
    width: 84%;
  }
  #contentsWrapper .p-sec03 .lineup .item {
    width: 75%;
    font-size: 3vw;
  }
  #contentsWrapper .p-sec03 .lineup .item:not(:last-child) {
    margin-top: -10%;
  }
  #contentsWrapper .p-sec03 .dec1 {
    top: 3%;
    left: 2%;
  }
  #contentsWrapper .p-sec03 .dec2 {
    top: 56vw;
    left: 78.4%;
  }
  #contentsWrapper .p-sec03 .dec3 {
    left: -4.6%;
  }
  #contentsWrapper .p-sec03 .dec5 {
    top: 118vw;
    left: 9%;
  }
  #contentsWrapper .p-sec03 .dec6 {
    top: 172vw;
    left: 81.3%;
  }
}

#contentsWrapper .contentsFooter {
  padding: 3% 2.5%;
  background: #fff;
  position: relative;
}

#contentsWrapper .contentsFooter:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 1px);
  margin: auto;
  width: 100%;
  aspect-ratio: 1 / 0.1096;
  background: url(../images/footer_top.svg) no-repeat center bottom/100% 100%;
  z-index: 1;
}

#contentsWrapper .contentsFooter .copyright {
  font-family: "UD新丸ゴ M","UD Shin Maru Go Medium","Noto Sans JP", sans-serif;
  font-size: min(1.2vw,14px);
  text-align: center;
  color: #000;
  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: 0.5em 1em;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentsFooter .copyright {
    font-size: max(2.2vw,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.fadeInPop {
  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 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.js-scroll.is-scroll.fadeInPop {
  -webkit-animation: pop 1s cubic-bezier(0.5, 0, 0.33, 1) 0.3s 1 normal forwards running;
          animation: pop 1s cubic-bezier(0.5, 0, 0.33, 1) 0.3s 1 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;
}

@-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);
  }
}

@-webkit-keyframes pop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  40% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  40% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes hoverPop {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes hoverPop {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

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