@charset "UTF-8";
:root {
  --maincolor: #faee00;
  --subcolor: #06c755;
  --textcolor: #622c00;
  --container: 1140px;
}

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "UD新ゴ M", "UD Shin Go Medium", "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: 1160px) {
  #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: 1160px) {
  #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: 1160px) {
  #contentsWrapper .font-10 {
    font-size: 1.25vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 1.5vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 1.75vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 2vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 2.25vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 2.5vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 2.75vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 3vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 3.25vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 3.5vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 3.75vw !important;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .font-10 {
    font-size: 1.5625vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 1.875vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 2.1875vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 2.5vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 2.8125vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 3.125vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 3.4375vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 3.75vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 4.0625vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 4.375vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 4.6875vw !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-pufu {
  font-family: "プフ ピクニック", "Puhu Picnic", 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.1em;
  left: 50%;
  font-size: max(0.4em,8px);
  font-family: inherit;
  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 .parallaxWrapper:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 24px;
  background: url(../images/parallax_line.png) repeat-x bottom left -4.6%/51px 100%;
}

#contentsWrapper .parallaxWrapper.--end:after {
  content: none;
}

#contentsWrapper .parallaxWrapper.--end .parallax {
  -webkit-mask: none;
          mask: none;
}

#contentsWrapper .parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  -webkit-mask: conic-gradient(from -65deg at bottom, #0000, #000 1deg 129deg, #0000 130deg) bottom left -4.6%/51px 100% repeat-x;
          mask: conic-gradient(from -65deg at bottom, #0000, #000 1deg 129deg, #0000 130deg) bottom left -4.6%/51px 100% repeat-x;
  z-index: -1;
}

#contentsWrapper .parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
  background: url(../images/bg_green.jpg) repeat-y center/cover;
}

#contentsWrapper .parallax.--yellow {
  height: calc(100% + 40px);
  margin-top: -40px;
  z-index: -2;
}

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

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

#contentsWrapper .c-btn a {
  font-size: 30px;
  font-weight: bold;
  font-family: "プフ ピクニック", "Puhu Picnic", sans-serif;
  text-align: center;
  letter-spacing: -0.05em;
  width: 100%;
  max-width: 12.934em;
  min-height: 1.734em;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#ff0033), to(#fd4469));
  background: linear-gradient(90deg, #ff0033, #fd4469);
  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.tap {
  border: 0.134em solid #fff;
}

#contentsWrapper .c-btn a.tap:after {
  content: '';
  position: absolute;
  right: -7%;
  bottom: -70%;
  width: 2.1834em;
  aspect-ratio: 1 / 1.00764;
  background: url(../images/icon_hand.png) no-repeat center/contain;
  -webkit-animation: btnTap 0.75s cubic-bezier(0.5, 0, 0.5, 1) 0s infinite alternate forwards running;
          animation: btnTap 0.75s cubic-bezier(0.5, 0, 0.5, 1) 0s infinite alternate forwards running;
}

@-webkit-keyframes btnTap {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}

@keyframes btnTap {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}

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

@-webkit-keyframes btn {
  10% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes btn {
  10% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (min-width: 801px) and (max-width: 1160px) {
  #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-notes > li {
  padding-left: 1em;
  text-indent: -1em;
}

#contentsWrapper .c-noteBlock {
  font-size: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 2em 1.75em;
}

#contentsWrapper .c-noteBlock h3 {
  font-family: "UD新ゴ B", "UD Shin Go Bold", "Noto Sans JP", sans-serif;
  font-size: 133.34%;
  font-weight: bold;
}

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

#contentsWrapper .p-kv {
  position: relative;
  padding-top: 80%;
}

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

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

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

#contentsWrapper .p-kv .logo {
  top: 1.2%;
  left: 12%;
  width: 23.067%;
}

#contentsWrapper .p-kv .catch1 {
  top: 14.8%;
  left: 12%;
  width: 76.467%;
}

#contentsWrapper .p-kv .catch2 {
  top: -0.2%;
  left: 70.3%;
  width: 18.934%;
}

#contentsWrapper .p-kv .img1 {
  top: 30.4%;
  left: 14.5%;
  width: 71.734%;
}

#contentsWrapper .p-kv .img2 {
  top: 64.9%;
  left: 14.5%;
  width: 64.467%;
}

#contentsWrapper .p-kv .note {
  bottom: 1.9%;
  left: 11.3%;
  width: 47%;
}

#contentsWrapper .p-kv .copyright {
  bottom: 2%;
  right: 11%;
  width: 6.6%;
}

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

#contentsWrapper .p-kv.js-scroll .catch1 {
  opacity: 0;
}

#contentsWrapper .p-kv.js-scroll .catch2 {
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1.5) 1.2s;
  transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1.5) 1.2s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#contentsWrapper .p-kv.js-scroll .bg {
  -webkit-transition: 0.2s cubic-bezier(0.1, 0, 0, 1) 1.5s;
  transition: 0.2s cubic-bezier(0.1, 0, 0, 1) 1.5s;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

#contentsWrapper .p-kv.js-scroll .img1 {
  -webkit-transition: 0.7s cubic-bezier(0.33, 0, 0.33, 1.5) 1.4s;
  transition: 0.7s cubic-bezier(0.33, 0, 0.33, 1.5) 1.4s;
  opacity: 0;
  -webkit-transform: scale(0) rotate(30deg);
          transform: scale(0) rotate(30deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

#contentsWrapper .p-kv.js-scroll .img2 {
  -webkit-transition: 1s ease 2s;
  transition: 1s ease 2s;
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

#contentsWrapper .p-kv.is-scroll .logo {
  opacity: 1;
}

#contentsWrapper .p-kv.is-scroll .bg {
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-kv.is-scroll .catch1 {
  -webkit-animation: kvCatch1 1s ease-in-out 0.6s 1 normal forwards running;
          animation: kvCatch1 1s ease-in-out 0.6s 1 normal forwards running;
}

@-webkit-keyframes kvCatch1 {
  0% {
    opacity: 0;
  }
  20%, 60% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  40%, 80% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    opacity: 1;
  }
}

@keyframes kvCatch1 {
  0% {
    opacity: 0;
  }
  20%, 60% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  40%, 80% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  100% {
    opacity: 1;
  }
}

#contentsWrapper .p-kv.is-scroll .catch2, #contentsWrapper .p-kv.is-scroll .img1, #contentsWrapper .p-kv.is-scroll .img2 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 1160px) {
  #contentsWrapper .p-kv {
    padding-top: 85%;
  }
  #contentsWrapper .p-kv .note {
    bottom: 3%;
  }
  #contentsWrapper .p-kv .copyright {
    bottom: 3.3%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-kv {
    padding-top: 95%;
  }
  #contentsWrapper .p-kv .img2 {
    top: 58%;
    left: 6.5%;
    width: 80%;
  }
  #contentsWrapper .p-kv .note {
    bottom: 4%;
    left: 2%;
    width: 70.5%;
  }
  #contentsWrapper .p-kv .copyright {
    bottom: 4.3%;
    right: 2%;
    width: 9.9%;
  }
}

#contentsWrapper .p-sec01 {
  padding-top: 60px;
}

#contentsWrapper .p-sec01 .block1 {
  font-family: "プフ ピクニック", "Puhu Picnic", sans-serif;
  font-size: 64px;
  line-height: 1.15;
  letter-spacing: -0.1em;
  text-align: center;
  color: #fff;
  background: var(--subcolor);
  border: 0.109375em solid #fff;
  border-radius: 0.3125em;
  max-width: 968px;
  margin: 0 auto;
  padding: 0.65em 0.25em 0.45em;
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-sec01 .block1 [data-ruby] {
  font-weight: bold;
}

#contentsWrapper .p-sec01 .block1 [data-ruby]:before {
  top: -0.7em;
  font-size: 0.45em;
  letter-spacing: -0.15em;
}

#contentsWrapper .p-sec01 .block1:before, #contentsWrapper .p-sec01 .block1:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 16.3%;
  margin: auto;
  width: 0;
  height: 0;
  border: 0.375em solid transparent;
  border-top: 1.03em solid var(--subcolor);
  border-bottom: none;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: skewX(-39deg);
          transform: skewX(-39deg);
}

#contentsWrapper .p-sec01 .block1:before {
  left: 15%;
  border: 0.6em solid transparent;
  border-top: 1.171875em solid #fff;
}

#contentsWrapper .p-sec01 .images {
  padding-top: 50.5%;
  position: relative;
  z-index: 2;
}

#contentsWrapper .p-sec01 .images img {
  position: absolute;
  max-width: none;
}

#contentsWrapper .p-sec01 .images .img1 {
  top: 9.3%;
  left: 3.2%;
  width: 42.544%;
}

#contentsWrapper .p-sec01 .images .img2 {
  top: 12.9%;
  left: 28.2%;
  width: 67.018%;
}

#contentsWrapper .p-sec01 .block2 {
  max-width: 720px;
  background: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding: 28px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  position: relative;
  z-index: 3;
}

#contentsWrapper .p-sec01 .block2 .img {
  width: 32.622%;
}

#contentsWrapper .p-sec01 .block2 .txt {
  width: calc(67.378% - 30px);
  font-size: 20px;
}

#contentsWrapper .p-sec01 .block2 .txt1 {
  font-family: "プフ ピクニック", "Puhu Picnic", sans-serif;
  font-size: 210%;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

#contentsWrapper .p-sec01 .block2 .txt1 [data-ruby]:before {
  top: -0.9em;
  font-family: "UD新ゴ M", "UD Shin Go Medium", "Noto Sans JP", sans-serif;
  font-size: 0.3em;
  letter-spacing: 0;
}

#contentsWrapper .p-sec01 .block3 {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1160px) {
  #contentsWrapper .p-sec01 {
    padding-top: 6%;
  }
  #contentsWrapper .p-sec01 .block1 {
    font-size: 5.62vw;
  }
}

#contentsWrapper .p-sec02 {
  padding-top: 100px;
}

#contentsWrapper .p-sec02_step {
  font-size: 30px;
  max-width: 720px;
  margin: 43px auto 0;
}

#contentsWrapper .p-sec02_step .step {
  background: #fff;
  border-radius: 20px;
  padding: 35px 1em 0.8em;
  position: relative;
}

#contentsWrapper .p-sec02_step .step:not(:last-child) {
  margin-bottom: 64px;
}

#contentsWrapper .p-sec02_step .step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 25px solid transparent;
  border-top: 30px solid #fff;
  border-bottom: none;
}

#contentsWrapper .p-sec02_step h3 {
  font-family: "UD新ゴ B", "UD Shin Go Bold", "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1160px) {
  #contentsWrapper .p-sec02 {
    padding-top: 10%;
  }
  #contentsWrapper .p-sec02_step {
    margin-top: 4%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec02_step {
    font-size: 4.5vw;
  }
}

#contentsWrapper .p-sec03 {
  padding-top: 130px;
  padding-bottom: 120px;
}

#contentsWrapper .p-sec03 .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 54px;
  margin-top: 48px;
}

#contentsWrapper .p-sec03 .block1 .img {
  margin-left: 4%;
}

#contentsWrapper .p-sec03 .block1 .detail {
  background: #fff;
  border-radius: 20px;
  margin-top: 7px;
  padding: 45px 30px;
  text-align: center;
}

#contentsWrapper .p-sec03 .block1 .title {
  font-family: "UD新ゴ B", "UD Shin Go Bold", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 30px;
}

#contentsWrapper .p-sec03 .block1 .release {
  font-size: 30px;
}

#contentsWrapper .p-sec03 .block1 .price {
  font-size: 21px;
}

#contentsWrapper .p-sec03 .block1 .price .value {
  font-size: 142.85%;
}

#contentsWrapper .p-sec03 .c-notes {
  font-size: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

#contentsWrapper .p-sec03 .c-notes > li + li {
  margin-top: 0.5em;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-sec03 .block1 .item {
    width: 486px;
    max-width: calc(calc(100% - 54px) / 2);
  }
}

@media screen and (max-width: 1160px) {
  #contentsWrapper .p-sec03 {
    padding-top: 13%;
    padding-bottom: 12%;
  }
  #contentsWrapper .p-sec03 .block1 {
    margin-top: 5%;
  }
  #contentsWrapper .p-sec03 .block1 .detail {
    padding: 4% 3%;
  }
  #contentsWrapper .p-sec03 .block1 .title {
    font-size: 2.632vw;
  }
  #contentsWrapper .p-sec03 .block1 .release {
    font-size: 2.632vw;
  }
  #contentsWrapper .p-sec03 .block1 .price {
    font-size: 1.843vw;
  }
  #contentsWrapper .p-sec03 .c-notes {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec03 .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 5%;
    gap: 8vw;
  }
  #contentsWrapper .p-sec03 .block1 .img {
    max-width: 55vw;
    margin: 0 auto;
  }
  #contentsWrapper .p-sec03 .block1 .title {
    font-size: 5vw;
  }
  #contentsWrapper .p-sec03 .block1 .release {
    font-size: 5vw;
  }
  #contentsWrapper .p-sec03 .block1 .price {
    font-size: 3.5vw;
  }
  #contentsWrapper .p-sec03 .c-notes {
    font-size: 3.5vw;
  }
}

#contentsWrapper .p-sec04 {
  padding-top: 210px;
}

#contentsWrapper .p-sec04 h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

#contentsWrapper .p-sec04 h2 .catch {
  position: absolute;
  top: -50%;
  left: -15%;
  width: 38.606%;
}

#contentsWrapper .p-sec04 .block1 {
  background: #fff;
  border-radius: 20px;
  margin-top: 20px;
  padding: 20px;
}

#contentsWrapper .p-sec04 .download {
  max-width: 675px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  position: relative;
  z-index: 3;
}

#contentsWrapper .p-sec04 .download .img {
  width: 31.852%;
}

#contentsWrapper .p-sec04 .download .txt {
  width: calc(68.148% - 30px);
  font-size: 20px;
}

#contentsWrapper .p-sec04 .download .txt1 {
  font-family: "プフ ピクニック", "Puhu Picnic", sans-serif;
  font-size: 210%;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

#contentsWrapper .p-sec04 .download .txt1 [data-ruby]:before {
  top: -0.9em;
  font-family: "UD新ゴ M", "UD Shin Go Medium", "Noto Sans JP", sans-serif;
  font-size: 0.3em;
  letter-spacing: 0;
}

@media screen and (max-width: 1160px) {
  #contentsWrapper .p-sec04 {
    padding-top: 21%;
  }
  #contentsWrapper .p-sec04 h2 {
    max-width: 75vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec04 .block1 h3 {
    max-width: 33vw;
    margin: 0 auto;
  }
}

#contentsWrapper .p-sec05 {
  padding-top: 80px;
  padding-bottom: 50px;
}

#contentsWrapper .p-sec05 .c-noteBlock {
  margin-top: 30px;
}

#contentsWrapper .p-sec05 .copyright {
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 1160px) {
  #contentsWrapper .p-sec05 {
    padding-top: 8%;
    padding-bottom: 5%;
  }
  #contentsWrapper .p-sec05 .c-noteBlock {
    margin: 3%;
  }
  #contentsWrapper .p-sec05 .copyright {
    margin-top: 4%;
  }
}

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

.js-scroll.fadeInLeft {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.fadeInRight {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-scroll.fadeInZoom {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-scroll.fadeInPop {
  -webkit-transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.js-scroll.fadeInMask {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(40%, transparent), color-stop(60%, #000));
  -webkit-mask-image: linear-gradient(-90deg, transparent 40%, #000 60%);
          mask-image: -webkit-gradient(linear, right top, left top, color-stop(40%, transparent), color-stop(60%, #000));
          mask-image: linear-gradient(-90deg, transparent 40%, #000 60%);
  -webkit-mask-size: 300%;
          mask-size: 300%;
  -webkit-mask-position: 100%;
          mask-position: 100%;
}

.js-scroll.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom, .js-scroll.is-scroll.fadeInPop {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

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

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