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

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "MFW-PUDShinMGoPr6N-DeBold", "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0;
  width: 100%;
  color: var(--textcolor);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  #contentsWrapper {
    font-size: 1.32vw;
  }
}

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

#contentsWrapper * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contentsWrapper a {
  opacity: 1;
  color: inherit;
  background-color: transparent;
  text-decoration: none !important;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#contentsWrapper a.hover {
  color: var(--maincolor);
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#contentsWrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

#contentsWrapper .cover {
  width: 100%;
  max-width: none;
  height: auto;
}

#contentsWrapper ul, #contentsWrapper ol {
  list-style: none;
}

#contentsWrapper .sectionWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#contentsWrapper .widthWrapper {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .widthWrapper {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .widthWrapper {
    padding-left: 4%;
    padding-right: 4%;
  }
}

#contentsWrapper .insideWrapper {
  position: relative;
  width: 80%;
  max-width: inherit;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contentsWrapper :root {
  --c-flex-gap: 2%;
}

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

#contentsWrapper .c-flex.gap > * {
  margin-left: var(--c-flex-gap);
}

#contentsWrapper .c-flex.gapLarge > * {
  margin-left: calc(var(--c-flex-gap) * 2);
}

#contentsWrapper .c-flex:not(.c-flex-reverse) > *:first-child {
  margin-left: 0;
}

#contentsWrapper .c-flex--2 > * {
  width: calc(100% / 2);
}

#contentsWrapper .c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}

#contentsWrapper .c-flex--2.gap > *:nth-child(2n+1) {
  margin-left: 0;
}

#contentsWrapper .c-flex--3 > * {
  width: calc(100% / 3);
}

#contentsWrapper .c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}

#contentsWrapper .c-flex--3.gap > *:nth-child(3n+1) {
  margin-left: 0;
}

#contentsWrapper .c-flex--4 > * {
  width: calc(100% / 4);
}

#contentsWrapper .c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}

#contentsWrapper .c-flex--4.gap > *:nth-child(4n+1) {
  margin-left: 0;
}

#contentsWrapper .c-flex--5 > * {
  width: calc(100% / 5);
}

#contentsWrapper .c-flex--5.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(5 - 1))) / 5);
}

#contentsWrapper .c-flex--5.gap > *:nth-child(5n+1) {
  margin-left: 0;
}

#contentsWrapper .c-flex--6 > * {
  width: calc(100% / 6);
}

#contentsWrapper .c-flex--6.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(6 - 1))) / 6);
}

#contentsWrapper .c-flex--6.gap > *:nth-child(6n+1) {
  margin-left: 0;
}

#contentsWrapper .c-flex.--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#contentsWrapper .c-flex.--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#contentsWrapper .c-flex.--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#contentsWrapper .c-flex.--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#contentsWrapper .c-flex.--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contentsWrapper .c-flex.--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#contentsWrapper .c-flex.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#contentsWrapper .c-flex.--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#contentsWrapper .alignCenter {
  text-align: center;
}

#contentsWrapper .alignRight {
  text-align: right;
}

#contentsWrapper .alignLeft {
  text-align: left;
}

#contentsWrapper img.alignCenter {
  margin-left: auto;
  margin-right: auto;
}

#contentsWrapper img.alignLeft {
  margin-left: 0;
  margin-right: auto;
}

#contentsWrapper img.alignRight {
  margin-left: auto;
  margin-right: 0;
}

#contentsWrapper .lh-10 {
  line-height: 1;
}

#contentsWrapper .lh-15 {
  line-height: 1.5;
}

#contentsWrapper .lh-20 {
  line-height: 2;
}

#contentsWrapper .font-10 {
  font-size: 10px !important;
}

#contentsWrapper .font-12 {
  font-size: 12px !important;
}

#contentsWrapper .font-14 {
  font-size: 14px !important;
}

#contentsWrapper .font-16 {
  font-size: 16px !important;
}

#contentsWrapper .font-18 {
  font-size: 18px !important;
}

#contentsWrapper .font-20 {
  font-size: 20px !important;
}

#contentsWrapper .font-22 {
  font-size: 22px !important;
}

#contentsWrapper .font-24 {
  font-size: 24px !important;
}

#contentsWrapper .font-26 {
  font-size: 26px !important;
}

#contentsWrapper .font-28 {
  font-size: 28px !important;
}

#contentsWrapper .font-30 {
  font-size: 30px !important;
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  #contentsWrapper .font-10 {
    font-size: 0.83333vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 1vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 1.16667vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 1.33333vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 1.5vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 1.66667vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 1.83333vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 2vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 2.16667vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 2.33333vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 2.5vw !important;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .font-10 {
    font-size: 2.375vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 2.7vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 2.975vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 3.2vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 3.375vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 3.5vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 3.575vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 3.6vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 3.575vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 3.5vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 3.375vw !important;
  }
}

#contentsWrapper .mt-5 {
  margin-top: 0.5em !important;
}

#contentsWrapper .mt-10 {
  margin-top: 1em !important;
}

#contentsWrapper .mt-15 {
  margin-top: 1.5em !important;
}

#contentsWrapper .mt-20 {
  margin-top: 2em !important;
}

#contentsWrapper .mt-25 {
  margin-top: 2.5em !important;
}

#contentsWrapper .mt-30 {
  margin-top: 3em !important;
}

#contentsWrapper .mt-35 {
  margin-top: 3.5em !important;
}

#contentsWrapper .mt-40 {
  margin-top: 4em !important;
}

#contentsWrapper .mt-45 {
  margin-top: 4.5em !important;
}

#contentsWrapper .mt-50 {
  margin-top: 5em !important;
}

#contentsWrapper .u-bold {
  font-weight: bold;
}

#contentsWrapper .u-bg {
  background: #fffc01;
  padding: 0 0.2em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

#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: clamp(6px,0.5em,16px);
  font-family: "MFW-PUDShinMGoPr6N-DeBold", "Noto Sans JP", sans-serif;
  line-height: 1;
  letter-spacing: -0.05em;
  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: 100vh;
}

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

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

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

#contentsWrapper h2.heading {
  font-size: 2.8vw;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.03em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.1em 1.15em;
  color: #fff;
  background: #ff7498;
  border: 0.07em solid #fff;
  -webkit-box-shadow: 0 0 0 0.1em #ff7498;
          box-shadow: 0 0 0 0.1em #ff7498;
  border-radius: 3em;
}

#contentsWrapper h2.heading.--brown {
  background: var(--textcolor);
  -webkit-box-shadow: 0 0 0 0.1em var(--textcolor);
          box-shadow: 0 0 0 0.1em var(--textcolor);
}

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

#contentsWrapper .c-btn a {
  font-size: 2.4vw;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 9.67em;
  min-height: 1.8417em;
  color: #fff;
  background: #ffaacd;
  border-radius: 3em;
  padding: 0.1em 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

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

@media screen and (max-width: 800px) {
  #contentsWrapper .c-btn a {
    font-size: 4.8vw;
  }
}

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

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

#contentsWrapper .p-kv .logo1 {
  position: absolute;
  top: 3.4%;
  left: 3.4%;
  width: 25.8%;
}

#contentsWrapper .p-kv .logo2 {
  position: absolute;
  top: 17.6%;
  left: 7.7%;
  width: 15.3%;
}

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

#contentsWrapper .p-image01 {
  margin-top: -14.1vw;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

#contentsWrapper .p-image01 img {
  width: 100%;
}

#contentsWrapper .p-image01.js-scroll {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: contrast(0) brightness(2);
          filter: contrast(0) brightness(2);
}

#contentsWrapper .p-image01.is-scroll {
  -webkit-transition: 2s ease 0.3s;
  transition: 2s ease 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: contrast(1) brightness(1);
          filter: contrast(1) brightness(1);
}

#contentsWrapper .p-size {
  padding-top: 20.5vw;
  margin-top: -11.6vw;
  background: #fff0fa;
  position: relative;
  z-index: 2;
}

#contentsWrapper .p-size:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  aspect-ratio: 1 / 0.136;
  background: url(../images/size_bg.png) no-repeat center top/cover;
  display: block;
  z-index: -1;
}

#contentsWrapper .p-size_inner {
  background: #fff;
  border-radius: 4vw;
  width: 56vw;
  margin: 0 auto;
  aspect-ratio: 1 / 0.5432;
  position: relative;
}

#contentsWrapper .p-size h2.heading {
  position: absolute;
  top: -0.9em;
  left: 0;
  right: 0;
  margin: auto;
}

#contentsWrapper .p-size .block1 > * {
  position: absolute;
  bottom: 7.2%;
}

#contentsWrapper .p-size .block1 > * img {
  width: 100%;
  max-width: none;
}

#contentsWrapper .p-size .block1 .choco {
  left: 8.2%;
  width: 44.75%;
}

#contentsWrapper .p-size .block1 .capsule {
  left: 42.8%;
  width: 22.9%;
}

#contentsWrapper .p-size .block1 .figure {
  left: 69.1%;
  width: 23.6%;
}

#contentsWrapper .p-size .block1.js-scroll > * {
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

#contentsWrapper .p-size .block1.is-scroll > * {
  -webkit-transition: 0.3s ease 0.3s;
  transition: 0.3s ease 0.3s;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-size .catch {
  font-size: 3.6vw;
  text-indent: 0.4em;
  font-weight: bold;
  text-align: center;
  color: var(--maincolor);
  margin-top: 0.1em;
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-size .catch:before {
  content: attr(data-stroke);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-text-stroke: 0.2em #fff;
  z-index: -1;
}

#contentsWrapper .p-size .animation {
  padding-top: 40.3%;
  position: relative;
}

#contentsWrapper .p-size .animation img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

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

#contentsWrapper .p-size .dec.--dec1 {
  top: -17.2%;
  left: 1.7%;
  width: 19.54%;
}

#contentsWrapper .p-size .dec.--dec2 {
  top: -25.6%;
  right: -20.4%;
  width: 43%;
}

#contentsWrapper .p-size .dec.--dec3 {
  bottom: -25%;
  left: -30%;
  width: 43%;
}

#contentsWrapper .p-size .dec.--dec4 {
  top: -17%;
  left: -30.3%;
  width: 155.82%;
}

#contentsWrapper .p-size .dec.--dec5 {
  bottom: -5.2%;
  left: 23.7%;
  width: 56.12%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-size {
    padding-top: 41vw;
    margin-top: -23.2vw;
  }
  #contentsWrapper .p-size_inner {
    width: 96vw;
  }
  #contentsWrapper .p-size .catch {
    font-size: 5vw;
  }
  #contentsWrapper .p-size .dec.--dec2 {
    right: -10%;
  }
  #contentsWrapper .p-size .dec.--dec3 {
    left: -13%;
    bottom: -80%;
  }
}

#contentsWrapper .p-point {
  padding: 15.5vw 0 6.2vw;
  background: #c6f4fd url(../images/point_bg.png) no-repeat center bottom/100% auto;
  position: relative;
  z-index: 1;
}

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

#contentsWrapper .p-point_inner .dec {
  position: absolute;
  top: -15.5%;
  left: -20.2%;
  width: 137.4%;
}

#contentsWrapper .p-point_inner .points {
  width: 57.8%;
  margin: 0 auto;
  padding-top: 51%;
  position: relative;
}

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

#contentsWrapper .p-point_inner .point .num {
  position: absolute;
}

#contentsWrapper .p-point_inner .point .img {
  position: absolute;
}

#contentsWrapper .p-point_inner .point.--point1 {
  top: 1.5%;
  left: 0.9%;
  width: 50.485%;
}

#contentsWrapper .p-point_inner .point.--point1 .num {
  top: 3.5%;
  left: 21.1%;
  width: 19.4%;
}

#contentsWrapper .p-point_inner .point.--point1 .img {
  bottom: -8%;
  left: 0.5%;
  width: 42.84%;
}

#contentsWrapper .p-point_inner .point.--point2 {
  top: 25.8%;
  right: -1.5%;
  width: 52.56%;
}

#contentsWrapper .p-point_inner .point.--point2 .num {
  top: 12.8%;
  left: 9.7%;
  width: 18.17%;
}

#contentsWrapper .p-point_inner .point.--point2 .img {
  top: -72%;
  right: -19.8%;
  width: 79%;
}

#contentsWrapper .p-point_inner .point.--point3 {
  top: 54.1%;
  left: 11%;
  width: 47.34%;
}

#contentsWrapper .p-point_inner .point.--point3 .num {
  top: 0.4%;
  left: 12.4%;
  width: 20.03%;
}

#contentsWrapper .p-point_inner .point.--point3 .img {
  bottom: 21.3%;
  left: 108.5%;
  width: 47.15%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-point {
    padding: 31vw 0 35vw;
  }
  #contentsWrapper .p-point_inner .points {
    width: 92%;
    padding-top: 80%;
  }
}

#contentsWrapper .p-lineup h2 {
  font-size: 3vw;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.067em;
}

#contentsWrapper .p-lineup h2 .sub {
  font-size: 2.2vw;
  color: var(--maincolor);
  display: block;
}

#contentsWrapper .p-lineup h2 .sub .l {
  font-size: 127.273%;
  line-height: 1;
}

#contentsWrapper .p-lineup_inner {
  width: 77.36vw;
  margin: 0 auto;
  padding: 5.8vw 8.8% 4%;
  background: url(../images/lineup_bg.png) no-repeat center top/contain;
  aspect-ratio: 1 / 1.15;
  position: relative;
}

#contentsWrapper .p-lineup .lineupList {
  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;
  margin-top: 0.5vw;
}

#contentsWrapper .p-lineup .lineupList > li {
  width: 25%;
}

#contentsWrapper .p-lineup .lineupList img {
  width: 107.545%;
  max-width: none;
  margin-left: -3.7725%;
}

#contentsWrapper .p-lineup .lineupList figcaption {
  font-family: "MFW-PUDShinMGoPr6N-Bold", "Noto Sans JP", sans-serif;
  font-size: 1.2vw;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.03em;
  margin: 0.4em -1em 0;
  white-space: nowrap;
}

#contentsWrapper .p-lineup .lineupList.js-scroll > li {
  opacity: 0;
  -webkit-transform: scale(0.5) rotate(60deg);
          transform: scale(0.5) rotate(60deg);
}

#contentsWrapper .p-lineup .lineupList.is-scroll > li {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 0.3s;
  transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 0.3s;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-lineup .catch1 {
  position: absolute;
  top: 50.2%;
  left: -2%;
  width: 15.848%;
}

#contentsWrapper .p-lineup .catch2 {
  position: absolute;
  top: 52.6%;
  right: -11.7%;
  width: 23.94%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-lineup h2 {
    font-size: 6vw;
  }
  #contentsWrapper .p-lineup h2 .sub {
    font-size: 4.4vw;
  }
  #contentsWrapper .p-lineup_inner {
    width: 120vw;
    left: -10vw;
    padding: 12vw 8% 14vw;
    background-size: cover;
  }
  #contentsWrapper .p-lineup .lineupList > li {
    width: calc(100% / 3);
  }
  #contentsWrapper .p-lineup .lineupList img {
    width: 100%;
    margin-left: 0;
  }
  #contentsWrapper .p-lineup .lineupList figcaption {
    font-size: 2.4vw;
  }
  #contentsWrapper .p-lineup .catch1 {
    top: auto;
    bottom: -10%;
    left: 12%;
    width: 24.52%;
  }
  #contentsWrapper .p-lineup .catch2 {
    top: auto;
    bottom: -10%;
    right: 12%;
    width: 37.04%;
  }
}

#contentsWrapper .p-image02 {
  margin-top: -13.7vw;
  position: relative;
  z-index: 2;
}

#contentsWrapper .p-image02 img {
  width: 100%;
}

#contentsWrapper .p-image02.js-scroll {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: contrast(0) brightness(2);
          filter: contrast(0) brightness(2);
}

#contentsWrapper .p-image02.is-scroll {
  -webkit-transition: 2s ease 0.3s;
  transition: 2s ease 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: contrast(1) brightness(1);
          filter: contrast(1) brightness(1);
}

#contentsWrapper .p-product {
  padding: 16.6vw 0 9.5vw;
  margin-top: -11.5vw;
  background: repeating-linear-gradient(90deg, #fff0fa, #fff0fa 8.2vw, #ffdceb 8.2vw, #ffdceb 9vw, #fff0fa 9vw);
  position: relative;
}

#contentsWrapper .p-product_inner {
  background: #fff;
  border: 0.2vw solid var(--textcolor);
  border-radius: 3.34vw;
  width: 48.16vw;
  margin: 0 auto;
  padding: 5.5% 4% 1.5%;
  position: relative;
}

#contentsWrapper .p-product h2.heading {
  position: absolute;
  top: -0.9em;
  left: 0;
  right: 0;
}

#contentsWrapper .p-product .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
}

#contentsWrapper .p-product .block1 .package {
  width: calc(52% - 2vw);
}

#contentsWrapper .p-product .block1 .package img {
  width: 79%;
}

#contentsWrapper .p-product .block1 .detail {
  width: 48%;
}

#contentsWrapper .p-product .block1 .detail dl {
  font-size: 1.2vw;
  line-height: 1.43;
}

#contentsWrapper .p-product .block1 .detail .figure {
  width: 40%;
  margin-top: 5%;
}

#contentsWrapper .p-product .c-btn {
  margin-top: 5.5%;
}

#contentsWrapper .p-product .dec {
  position: absolute;
  pointer-events: none;
}

#contentsWrapper .p-product .dec.--dec1 {
  top: -4.9%;
  left: -8.6%;
  width: 21.512%;
}

#contentsWrapper .p-product .dec.--dec2 {
  top: 26.9%;
  right: -19.8%;
  width: 23.63%;
}

#contentsWrapper .p-product .dec.--dec3 {
  left: -18.1%;
  bottom: 6.5%;
  width: 20.93%;
}

#contentsWrapper .p-product .dec.--dec4 {
  top: -9.3%;
  left: -37.4%;
  width: 171.7%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-product {
    padding: 33.2vw 0 19vw;
    margin-top: -23vw;
  }
  #contentsWrapper .p-product_inner {
    width: 92vw;
    padding: 11% 4% 3%;
  }
  #contentsWrapper .p-product .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4vw;
  }
  #contentsWrapper .p-product .block1 .package {
    width: 66.66%;
  }
  #contentsWrapper .p-product .block1 .detail {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 4em;
    position: relative;
  }
  #contentsWrapper .p-product .block1 .detail dl {
    font-size: 4vw;
  }
  #contentsWrapper .p-product .block1 .detail .figure {
    position: absolute;
    right: -1em;
    bottom: -0.5em;
  }
  #contentsWrapper .p-product .dec.--dec1 {
    top: -7%;
    left: -3%;
    width: 28%;
  }
  #contentsWrapper .p-product .dec.--dec2 {
    top: 46%;
    right: -5%;
    width: 29%;
  }
  #contentsWrapper .p-product .dec.--dec3 {
    left: -4%;
    bottom: -6%;
    width: 24%;
  }
}

#contentsWrapper .contentsFooter {
  padding-bottom: 0.5vw;
  background: #fffac3;
  position: relative;
  z-index: 1;
}

#contentsWrapper .contentsFooter:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1 / 0.17109375;
  background: url(../images/footer_bg.png) no-repeat center bottom/contain;
  z-index: -1;
  pointer-events: none;
}

#contentsWrapper .contentsFooter .c-copyright {
  padding-left: 0.75em;
  font-size: 1.2vw;
  color: #000;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentsFooter {
    padding-bottom: 2vw;
  }
  #contentsWrapper .contentsFooter .c-copyright {
    font-size: 2.4vw;
    padding-left: 1em;
  }
}

/* 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: 1.5s ease 0.3s;
  transition: 1.5s ease 0.3s;
  -webkit-mask-image: linear-gradient(-45deg, transparent 45%, #000 55%);
          mask-image: linear-gradient(-45deg, transparent 45%, #000 55%);
  -webkit-mask-size: 300% 300%;
          mask-size: 300% 300%;
  -webkit-mask-position: 100% 100%;
          mask-position: 100% 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 0;
          mask-position: 0 0;
}

.js-animeYura {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-animation: yura 1s ease-in-out 0s infinite alternate forwards running;
          animation: yura 1s ease-in-out 0s infinite alternate forwards running;
}

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

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

@-webkit-keyframes kaku {
  0% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  20% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes kaku {
  0% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  20% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  40% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  60% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

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