@charset "UTF-8";
:root {
  --maincolor: #c09411;
  --subcolor: #5e2300;
  --textcolor: #fff;
  --container: 1080px;
}

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "UD新ゴNT M", "UD Shin Go NT Medium", 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: 1100px) {
  #contentsWrapper {
    font-size: 1.38vw;
  }
}

@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: 1100px) {
  #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: 1100px) {
  #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 {
  color: var(--subcolor);
  background: var(--maincolor);
  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: max(0.3em,8px);
  font-family: "UD新ゴNT M", "UD Shin Go NT Medium", 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 ↓ ======== */
:root {
  --parallaxBorderX: 100%;
  --parallaxBorderY: 6.736vw;
}

@media screen and (max-width: 800px) {
  :root {
    --parallaxBorderX: 100%;
    --parallaxBorderY: 6.736vw;
  }
}

#contentsWrapper .parallaxWrapper {
  position: relative;
}

#contentsWrapper .parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -1;
}

#contentsWrapper .parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
}

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

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

#contentsWrapper .parallax.--jaggy {
  -webkit-mask: url(../images/mask_border.svg) left top/var(--parallaxBorderX) repeat-x, linear-gradient(transparent, transparent calc(var(--parallaxBorderY) - 1px), #000 calc(var(--parallaxBorderY) - 1px), #000 100%);
          mask: url(../images/mask_border.svg) left top/var(--parallaxBorderX) repeat-x, linear-gradient(transparent, transparent calc(var(--parallaxBorderY) - 1px), #000 calc(var(--parallaxBorderY) - 1px), #000 100%);
  margin-top: calc(-1 * var(--parallaxBorderY));
  height: calc(100% + var(--parallaxBorderY));
}

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

#contentsWrapper h2.heading img {
  margin: 0 auto;
}

#contentsWrapper h2.heading.js-scroll {
  opacity: 0;
}

#contentsWrapper h2.heading.is-scroll {
  -webkit-animation: h2Heading 0.5s ease 0.3s 1 normal forwards running;
          animation: h2Heading 0.5s ease 0.3s 1 normal forwards running;
}

@-webkit-keyframes h2Heading {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.8, 0.2, 0.1, 1.1);
            animation-timing-function: cubic-bezier(0.8, 0.2, 0.1, 1.1);
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  50% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60%, 80% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  70%, 90% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes h2Heading {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.8, 0.2, 0.1, 1.1);
            animation-timing-function: cubic-bezier(0.8, 0.2, 0.1, 1.1);
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  50% {
    opacity: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60%, 80% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  70%, 90% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

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

#contentsWrapper .c-btn a {
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.05em;
  width: 100%;
  max-width: 13.34em;
  min-height: 2em;
  color: #fff;
  background: var(--maincolor);
  padding: 0.25em 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.fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: none;
}

#contentsWrapper .c-btn a.large {
  max-width: 26.67em;
  min-height: 2.8em;
}

#contentsWrapper .c-btn a.large:after {
  width: 0.5em;
}

#contentsWrapper .c-btn a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0.5em;
  bottom: 0;
  margin: auto;
  width: 0.4em;
  aspect-ratio: 1 / 2;
  background: url(../images/arrow001.svg) no-repeat center/contain;
  -webkit-transition: inherit;
  transition: inherit;
}

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

#contentsWrapper .c-btn a:hover:after {
  right: 0.3em;
}

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

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

#contentsWrapper .c-frame {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #c1a946;
}

#contentsWrapper .c-notes > li {
  padding-left: 1em;
  text-indent: -1em;
}

#contentsWrapper .c-copyright {
  font-size: 15.7px;
  text-align: center;
}

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

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

#contentsWrapper .p-kv > *:not(.bg) {
  position: absolute;
}

#contentsWrapper .p-kv .img1 {
  top: 1%;
  left: 27.8%;
  width: 48.5546875%;
}

#contentsWrapper .p-kv .twinkle {
  position: absolute;
  top: 4.5%;
  left: -0.8%;
  width: 109.976%;
  mix-blend-mode: screen;
  -webkit-animation: twinkle 0.1s ease-in-out 0s infinite alternate forwards running;
          animation: twinkle 0.1s ease-in-out 0s infinite alternate forwards running;
}

@-webkit-keyframes twinkle {
  0% {
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
  100% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}

@keyframes twinkle {
  0% {
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
  100% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}

#contentsWrapper .p-kv .light1 {
  top: 0%;
  left: 6%;
  width: 78.01%;
}

#contentsWrapper .p-kv .light2 {
  top: 0%;
  right: -3%;
  width: 68.48%;
}

#contentsWrapper .p-kv .catch1 {
  top: 2.2%;
  left: 2.2%;
  width: 22.421875%;
}

#contentsWrapper .p-kv .catch2 {
  top: 39.8%;
  left: 0.9%;
  width: 50.0390625%;
}

#contentsWrapper .p-kv .catch3 {
  top: 13.4%;
  right: -12.65%;
  width: 54.2578125%;
}

#contentsWrapper .p-kv .schedule {
  right: 2.1%;
  bottom: 1.3%;
  width: 59.9609375%;
}

#contentsWrapper .p-kv .logo {
  top: 0.7%;
  right: 1.8%;
  width: 17.8125%;
}

#contentsWrapper .p-kv .copyright {
  left: 1.8%;
  bottom: 1.3%;
  font-family: "UD新ゴNT R","UD Shin Go NT Regular" ,sans-serif;
  font-size: 1.067vw;
  color: #fff;
}

#contentsWrapper .p-kv.js-scroll .bg {
  -webkit-filter: brightness(0.1);
          filter: brightness(0.1);
}

#contentsWrapper .p-kv.js-scroll .img1 > img {
  -webkit-filter: brightness(0.1);
          filter: brightness(0.1);
}

#contentsWrapper .p-kv.js-scroll .twinkle {
  -webkit-transition: 0.5s ease 0.5s;
  transition: 0.5s ease 0.5s;
  opacity: 0;
}

#contentsWrapper .p-kv.js-scroll .light1 {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: translate(50%, -20%) rotate(15deg);
          transform: translate(50%, -20%) rotate(15deg);
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

#contentsWrapper .p-kv.js-scroll .light2 {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: translate(-50%, -20%) rotate(15deg);
          transform: translate(-50%, -20%) rotate(15deg);
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

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

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

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

#contentsWrapper .p-kv.js-scroll .schedule {
  -webkit-transition: 0.75s ease 1.9s;
  transition: 0.75s ease 1.9s;
  opacity: 0;
  -webkit-transform: translateX(5%);
          transform: translateX(5%);
}

#contentsWrapper .p-kv.is-scroll .bg {
  -webkit-transition: 2s ease 1.5s;
  transition: 2s ease 1.5s;
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

#contentsWrapper .p-kv.is-scroll .img1 > img {
  -webkit-transition: 2s ease 0.5s;
  transition: 2s ease 0.5s;
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

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

#contentsWrapper .p-kv.is-scroll .light1, #contentsWrapper .p-kv.is-scroll .light2 {
  -webkit-transform: none;
          transform: none;
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

#contentsWrapper .p-kv.is-scroll .catch1, #contentsWrapper .p-kv.is-scroll .catch2, #contentsWrapper .p-kv.is-scroll .catch3, #contentsWrapper .p-kv.is-scroll .schedule {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-kv .img1 {
    top: 19.7%;
    left: -7.4%;
    width: 106.25%;
  }
  #contentsWrapper .p-kv .twinkle {
    top: 3.9%;
    left: 4.8%;
    width: 102%;
  }
  #contentsWrapper .p-kv .light1 {
    width: 150%;
    left: -68%;
  }
  #contentsWrapper .p-kv .light2 {
    width: 150%;
    right: -87%;
  }
  #contentsWrapper .p-kv .catch1 {
    top: 11%;
    left: 1%;
    width: 27.25%;
  }
  #contentsWrapper .p-kv .catch2 {
    top: 2%;
    left: 30%;
    width: 69.625%;
  }
  #contentsWrapper .p-kv .catch3 {
    top: 51.7%;
    left: -13.3%;
    right: auto;
    width: 76.125%;
  }
  #contentsWrapper .p-kv .schedule {
    right: 0.6%;
    bottom: 3%;
    width: 99%;
  }
  #contentsWrapper .p-kv .logo {
    top: 0.7%;
    left: 0.2%;
    right: auto;
    width: 29%;
  }
  #contentsWrapper .p-kv .copyright {
    left: 0.9%;
    bottom: 0.6%;
    font-size: 2.25vw;
  }
}

#contentsWrapper .p-product {
  padding: 45px 0 150px;
}

#contentsWrapper .p-product .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 70px;
}

#contentsWrapper .p-product .block1 .img {
  width: 48.43%;
  margin-top: -4.5%;
}

#contentsWrapper .p-product .block1 .content {
  width: 55.6%;
  margin-right: -5.7%;
  padding: 3em 0.5em 2em 2.2em;
}

#contentsWrapper .p-product .block1 .name {
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.35;
}

#contentsWrapper .p-product .block1 .release {
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-size: 30px;
  font-weight: bold;
}

#contentsWrapper .p-product .block1 .price {
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-size: 21px;
  font-weight: bold;
}

#contentsWrapper .p-product .block1 .price .val {
  font-size: 142.86%;
}

@media screen and (max-width: 1200px) {
  #contentsWrapper .p-product .block1 .img {
    width: 42%;
  }
  #contentsWrapper .p-product .block1 .content {
    width: 56%;
    margin-right: 0;
  }
}

@media screen and (max-width: 1100px) {
  #contentsWrapper .p-product {
    padding: 4.2% 0 14%;
  }
  #contentsWrapper .p-product .block1 {
    margin-top: 6.5vw;
  }
  #contentsWrapper .p-product .block1 .name {
    font-size: 3.34vw;
  }
  #contentsWrapper .p-product .block1 .release {
    font-size: 2.8vw;
  }
  #contentsWrapper .p-product .block1 .price {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-product {
    padding: 8% 0 14%;
  }
  #contentsWrapper .p-product .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
  #contentsWrapper .p-product .block1 .img {
    width: 100%;
  }
  #contentsWrapper .p-product .block1 .content {
    width: 100%;
    padding: 2em;
  }
  #contentsWrapper .p-product .block1 .name {
    font-size: 4.5vw;
  }
  #contentsWrapper .p-product .block1 .release {
    font-size: 4vw;
  }
  #contentsWrapper .p-product .block1 .price {
    font-size: 3.5vw;
  }
}

#contentsWrapper .p-campaign {
  padding: 10px 0 150px;
}

#contentsWrapper .p-campaign .c-frame {
  margin-top: 37px;
  padding: 5em 5em 1.5em;
}

#contentsWrapper .p-campaign .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contentsWrapper .p-campaign .block1 .content {
  width: 55%;
}

#contentsWrapper .p-campaign .block1 .img {
  width: 45%;
}

#contentsWrapper .p-campaign .block1 .img img {
  margin: 0 auto;
  width: 89.72%;
}

#contentsWrapper .p-campaign .block1 .txt1 {
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (max-width: 1100px) {
  #contentsWrapper .p-campaign {
    padding: 1% 0 14%;
  }
  #contentsWrapper .p-campaign .c-frame {
    margin-top: 3%;
  }
  #contentsWrapper .p-campaign .block1 .txt1 {
    font-size: 3.2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-campaign {
    padding: 2% 0 14%;
  }
  #contentsWrapper .p-campaign .c-frame {
    padding: 2em;
  }
  #contentsWrapper .p-campaign .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
  #contentsWrapper .p-campaign .block1 .content {
    width: 100%;
  }
  #contentsWrapper .p-campaign .block1 .img {
    width: 66.66%;
    margin: 0 auto;
  }
  #contentsWrapper .p-campaign .block1 .txt1 {
    font-size: 4.5vw;
    text-align: center;
  }
}

#contentsWrapper .p-apply {
  padding: 20px 0 150px;
}

#contentsWrapper .p-apply .c-frame {
  margin-top: 37px;
  padding: 4em 5em 2.5em;
}

#contentsWrapper .p-apply .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

#contentsWrapper .p-apply .block1 .img {
  width: calc(56% - 20px);
}

#contentsWrapper .p-apply .block1 .content {
  width: 44%;
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-size: 24px;
  font-weight: bold;
}

#contentsWrapper .p-apply .block1 .content > * + * {
  margin-top: 1.5em;
}

#contentsWrapper .p-apply .notes {
  max-width: 52.32em;
  margin: 2em auto 0;
}

#contentsWrapper .p-apply .notes h3 {
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  #contentsWrapper .p-apply {
    padding: 2% 0 14%;
  }
  #contentsWrapper .p-apply .c-frame {
    margin-top: 3%;
  }
  #contentsWrapper .p-apply .block1 {
    gap: 2vw;
  }
  #contentsWrapper .p-apply .block1 .img {
    width: calc(56% - 2vw);
  }
  #contentsWrapper .p-apply .block1 .content {
    font-size: 2.23vw;
  }
  #contentsWrapper .p-apply .notes h3 {
    font-size: 2.23vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-apply {
    padding: 4% 0 14%;
  }
  #contentsWrapper .p-apply .c-frame {
    padding: 2em;
  }
  #contentsWrapper .p-apply .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
  #contentsWrapper .p-apply .block1 .img {
    width: 66.66%;
    margin: 0 auto;
  }
  #contentsWrapper .p-apply .block1 .content {
    width: 100%;
    font-size: 4.5vw;
    text-align: center;
  }
  #contentsWrapper .p-apply .notes h3 {
    font-size: 4.5vw;
  }
}

#contentsWrapper .p-prize {
  padding: 23px 0 180px;
}

#contentsWrapper .p-prize .c-frame {
  margin-top: 37px;
  padding: 1em 5em 3em;
}

#contentsWrapper .p-prize .img1 figcaption {
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin-top: 0.2em;
}

#contentsWrapper .p-prize .block1 {
  max-width: 40em;
  padding: 1.4em 3.5em 3em;
  margin: 50px auto 0;
  color: var(--subcolor);
  background: url(../images/bg001.png) no-repeat center/100% 100%;
}

#contentsWrapper .p-prize .block1 h3 {
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

#contentsWrapper .p-prize .block1 .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contentsWrapper .p-prize .block1 .logo li:nth-child(1) {
  width: 214px;
}

#contentsWrapper .p-prize .block1 .logo li:nth-child(2) {
  width: 209px;
}

@media screen and (max-width: 1100px) {
  #contentsWrapper .p-prize {
    padding: 2% 0 16.7%;
  }
  #contentsWrapper .p-prize .c-frame {
    margin-top: 3%;
  }
  #contentsWrapper .p-prize .img1 figcaption {
    font-size: 4.17vw;
  }
  #contentsWrapper .p-prize .block1 {
    margin-top: 4.6vw;
  }
  #contentsWrapper .p-prize .block1 h3 {
    font-size: 3.34vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-prize {
    padding: 4% 0 16.7%;
  }
  #contentsWrapper .p-prize .c-frame {
    padding: 2em;
  }
  #contentsWrapper .p-prize .block1 {
    padding: 2em;
  }
}

#contentsWrapper .p-info {
  padding: 30px 0 140px;
}

#contentsWrapper .p-info .block1 {
  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: 60px 108px;
}

#contentsWrapper .p-info .block1 > .item {
  width: calc(calc(100% - 108px) / 2);
  padding: 1.25em 1.25em 1.5em;
}

#contentsWrapper .p-info .block1 h3 {
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 1100px) {
  #contentsWrapper .p-info {
    padding: 1% 0 8.34%;
  }
  #contentsWrapper .p-info .block1 {
    gap: 5.6vw 10vw;
  }
  #contentsWrapper .p-info .block1 > .item {
    width: calc(calc(100% - 10vw) / 2);
  }
  #contentsWrapper .p-info .block1 h3 {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-info {
    padding: 2% 0 16%;
  }
  #contentsWrapper .p-info .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contentsWrapper .p-info .block1 > .item {
    width: 100%;
  }
  #contentsWrapper .p-info .block1 h3 {
    font-size: 4.5vw;
  }
}

#contentsWrapper .contentsFooter {
  padding: 30px 0 60px;
}

#contentsWrapper .contentsFooter .widthWrapper {
  max-width: 1140px;
}

#contentsWrapper .contentsFooter .block1 {
  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: 62px;
}

#contentsWrapper .contentsFooter .block1 .--col1 {
  width: 100%;
}

#contentsWrapper .contentsFooter .block1 .--col1 figcaption {
  font-size: 126.7%;
}

#contentsWrapper .contentsFooter .block1 .--col2 {
  width: calc(calc(100% - 62px) / 2);
}

#contentsWrapper .contentsFooter .block1 figure a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

#contentsWrapper .contentsFooter .block1 figure figcaption {
  font-family: "UD新ゴNT B", "UD Shin Go NT Bold", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-top: 0.75em;
}

#contentsWrapper .contentsFooter .block1 a:hover img {
  -webkit-animation: shake 1s ease-in-out 0s infinite normal forwards running;
          animation: shake 1s ease-in-out 0s infinite normal forwards running;
}

#contentsWrapper .contentsFooter .block1 a:hover figcaption {
  color: var(--maincolor);
}

#contentsWrapper .contentsFooter .c-copyright {
  margin-top: 5em;
}

@media screen and (max-width: 1100px) {
  #contentsWrapper .contentsFooter {
    padding: 2.5% 0 5.6%;
  }
  #contentsWrapper .contentsFooter .block1 {
    gap: 3.34vw;
  }
  #contentsWrapper .contentsFooter .block1 figure figcaption {
    font-size: 1.67vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentsFooter {
    padding: 5% 0 5.6%;
  }
  #contentsWrapper .contentsFooter .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contentsWrapper .contentsFooter .block1 .bnr {
    width: 100%;
  }
  #contentsWrapper .contentsFooter .block1 figure figcaption {
    font-size: 3.5vw;
  }
  #contentsWrapper .contentsFooter .c-copyright {
    margin-top: 3em;
  }
}

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

@-webkit-keyframes shake {
  0%, 50%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10%, 30% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  20%, 40% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}

@keyframes shake {
  0%, 50%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10%, 30% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  20%, 40% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}

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