@charset "UTF-8";
:root {
  --maincolor: #ffe226;
  --subcolor: #fff;
  --textcolor: #fff;
  --gradient: #ffe226,#cc9900;
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "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: max(0.3em,8px);
  font-family: "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 .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.--body .bg {
  background: url(../images/body_bg.jpg) repeat-y center/cover;
}

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

#contentsWrapper h2.heading {
  font-family: "Orbitron", sans-serif;
  font-size: 52px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  color: #000;
  background: -webkit-gradient(linear, left top, right top, from(var(--gradient)));
  background: linear-gradient(90deg, var(--gradient));
  border: 1px solid #fff2b2;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1em 0.25em;
}

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

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

#contentsWrapper .c-btn a {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 20em;
  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:after {
  content: '';
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 1em;
  height: 1.2em;
  background: url(../images/arrow001.svg) no-repeat center/contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

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

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

#contentsWrapper .c-countdown_time {
  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: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 7.5vw;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.005em;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#b0b0b0));
  background: linear-gradient(#f0f0f0, #b0b0b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-filter: drop-shadow(0.15vw 0.15vw 0.3vw #000);
          filter: drop-shadow(0.15vw 0.15vw 0.3vw #000);
}

#contentsWrapper .c-countdown_time > * {
  width: 1.9em;
}

#contentsWrapper .c-countdown_time .unit {
  font-size: 50%;
  margin-left: 0.25em;
}

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

#contentsWrapper .c-frame {
  background: #000;
  border: 2px solid var(--maincolor);
  -o-border-image: linear-gradient(90deg, var(--gradient)) 2;
     border-image: -webkit-gradient(linear, left top, right top, from(var(--gradient))) 2;
     border-image: linear-gradient(90deg, var(--gradient)) 2;
  position: relative;
}

#contentsWrapper .c-frame.--skew {
  background: none;
  border: none;
}

#contentsWrapper .c-frame.--skew:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 87%;
  height: 100%;
  background: #000;
  border: 2px solid var(--maincolor);
  -o-border-image: linear-gradient(90deg, var(--gradient)) 2;
     border-image: -webkit-gradient(linear, left top, right top, from(var(--gradient))) 2;
     border-image: linear-gradient(90deg, var(--gradient)) 2;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  z-index: -1;
}

#contentsWrapper .c-frame_dec > span {
  position: absolute;
  font-size: 14px;
  display: block;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  -webkit-animation: frameDec 2s ease-in-out 0s infinite alternate forwards running;
          animation: frameDec 2s ease-in-out 0s infinite alternate forwards running;
}

@-webkit-keyframes frameDec {
  0% {
    -webkit-transform: skew(-15deg) translate(0.04em, -1em);
            transform: skew(-15deg) translate(0.04em, -1em);
  }
  100% {
    -webkit-transform: skew(-15deg) translate(-0.04em, 1em);
            transform: skew(-15deg) translate(-0.04em, 1em);
  }
}

@keyframes frameDec {
  0% {
    -webkit-transform: skew(-15deg) translate(0.04em, -1em);
            transform: skew(-15deg) translate(0.04em, -1em);
  }
  100% {
    -webkit-transform: skew(-15deg) translate(-0.04em, 1em);
            transform: skew(-15deg) translate(-0.04em, 1em);
  }
}

#contentsWrapper .c-frame_dec > span:nth-child(1) {
  top: -1.2em;
  right: 1em;
  width: 1em;
  height: 4.7em;
  border: 1px solid #fff2b2;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--gradient)));
  background: linear-gradient(0deg, var(--gradient));
}

#contentsWrapper .c-frame_dec > span:nth-child(2) {
  top: -3.5em;
  right: 2em;
  width: 0.8em;
  height: 5em;
  border: 1px solid var(--maincolor);
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

#contentsWrapper .c-frame_dec > span:nth-child(3) {
  top: -2.5em;
  right: 3.5em;
  width: 0.5em;
  height: 4.7em;
  border: 1px solid #fff2b2;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--gradient)));
  background: linear-gradient(0deg, var(--gradient));
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .c-frame_dec > span {
    font-size: 1.16vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-frame_dec > span {
    font-size: 1.75vw;
  }
}

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

@media screen and (max-width: 1220px) {
  #contentsWrapper .c-copyright {
    font-size: 2vw;
  }
}

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

#contentsWrapper .p-kv {
  position: relative;
  border-bottom: 0.5vw solid #ffcc00;
}

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

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

#contentsWrapper .p-kv .txt1 {
  top: 5%;
  left: 21.4%;
  width: 57.65%;
}

#contentsWrapper .p-kv .logo {
  top: 24.9%;
  left: 27.9%;
  width: 44.1%;
}

#contentsWrapper .p-kv .day1 {
  top: 64.5%;
  left: 19.9%;
  width: 30.05%;
}

#contentsWrapper .p-kv .day2 {
  top: 64.5%;
  left: 50%;
  width: 30.05%;
}

#contentsWrapper .p-kv .txt2 {
  top: 75.4%;
  left: 42.4%;
  width: 15.35%;
}

#contentsWrapper .p-kv .c-countdown {
  top: 82.5%;
  left: 0;
  right: 0;
  margin: auto;
}

#contentsWrapper .p-kv.js-scroll .txt1, #contentsWrapper .p-kv.js-scroll .txt2 {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateY(33%);
          transform: translateY(33%);
}

#contentsWrapper .p-kv.js-scroll .txt2 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

#contentsWrapper .p-kv.js-scroll .logo, #contentsWrapper .p-kv.js-scroll .day1, #contentsWrapper .p-kv.js-scroll .day2 {
  -webkit-transition: 1s cubic-bezier(0.1, 0, 0.1, 1.05) 0.6s;
  transition: 1s cubic-bezier(0.1, 0, 0.1, 1.05) 0.6s;
  opacity: 0;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

#contentsWrapper .p-kv.js-scroll .day1 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#contentsWrapper .p-kv.js-scroll .day2 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#contentsWrapper .p-kv.js-scroll .c-countdown {
  -webkit-transition: 1.5s ease 1.7s;
  transition: 1.5s ease 1.7s;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

#contentsWrapper .p-kv.is-scroll .txt1, #contentsWrapper .p-kv.is-scroll .txt2 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-kv.is-scroll .logo, #contentsWrapper .p-kv.is-scroll .day1, #contentsWrapper .p-kv.is-scroll .day2 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: blur(0);
          filter: blur(0);
}

#contentsWrapper .p-kv.is-scroll .c-countdown {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: kvCountdown 1.5s ease 1.7s 1 normal both running;
          animation: kvCountdown 1.5s ease 1.7s 1 normal both running;
}

@-webkit-keyframes kvCountdown {
  50% {
    -webkit-filter: drop-shadow(0 0 2vw #fff) blur(5px) contrast(0) brightness(2);
            filter: drop-shadow(0 0 2vw #fff) blur(5px) contrast(0) brightness(2);
  }
  100% {
    -webkit-filter: drop-shadow(0) blur(0) contrast(1) brightness(1);
            filter: drop-shadow(0) blur(0) contrast(1) brightness(1);
  }
}

@keyframes kvCountdown {
  50% {
    -webkit-filter: drop-shadow(0 0 2vw #fff) blur(5px) contrast(0) brightness(2);
            filter: drop-shadow(0 0 2vw #fff) blur(5px) contrast(0) brightness(2);
  }
  100% {
    -webkit-filter: drop-shadow(0) blur(0) contrast(1) brightness(1);
            filter: drop-shadow(0) blur(0) contrast(1) brightness(1);
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-kv .bg {
    width: 160%;
    margin-left: -30%;
  }
  #contentsWrapper .p-kv .txt1 {
    width: 96.0834%;
    left: 2.2%;
  }
  #contentsWrapper .p-kv .logo {
    top: 27%;
    left: 14.25%;
    width: 72.5%;
  }
  #contentsWrapper .p-kv .day1 {
    top: 68.5%;
    left: 5%;
    width: 45%;
  }
  #contentsWrapper .p-kv .day2 {
    top: 68.5%;
    left: 50%;
    width: 45%;
  }
  #contentsWrapper .p-kv .txt2 {
    top: 78%;
    left: 36.8%;
    width: 25.5834%;
  }
  #contentsWrapper .p-kv .c-countdown {
    top: 86%;
  }
}

#contentsWrapper .p-project {
  padding-top: 140px;
}

#contentsWrapper .p-project .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 87px 0;
}

#contentsWrapper .p-project .block1 .item {
  width: 50%;
  position: relative;
}

#contentsWrapper .p-project .block1 .item:after {
  content: '';
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 64.834%;
  aspect-ratio: 1 / 0.503856;
  background: url(../images/logo_SMP10th.svg) no-repeat center/contain;
  opacity: 0.35;
  z-index: -1;
}

#contentsWrapper .p-project .block1 .item.js-scroll {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  opacity: 0;
  -webkit-transform: scale(1, 0) skewX(15deg);
          transform: scale(1, 0) skewX(15deg);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contentsWrapper .p-project .block1 .item.js-scroll .title {
  -webkit-transition: 0.5s ease 0.8s;
  transition: 0.5s ease 0.8s;
  opacity: 0;
  -webkit-transform: translateX(-1.5em);
          transform: translateX(-1.5em);
}

#contentsWrapper .p-project .block1 .item.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: blur(0);
          filter: blur(0);
}

#contentsWrapper .p-project .block1 .item.is-scroll .title {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-project .block1 .title {
  position: absolute;
  top: -0.81em;
  left: 0.81em;
  width: 9.95em;
  font-size: 37px;
}

#contentsWrapper .p-project .block1 .comingsoon {
  font-family: "Orbitron", sans-serif;
  font-size: 64px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  min-height: 4.375em;
  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-filter: drop-shadow(0 0 0.8vw #000);
          filter: drop-shadow(0 0 0.8vw #000);
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-project {
    padding-top: 12%;
  }
  #contentsWrapper .p-project .block1 {
    gap: 7.25vw 0;
  }
  #contentsWrapper .p-project .block1 .title {
    font-size: 3.08vw;
  }
  #contentsWrapper .p-project .block1 .comingsoon {
    font-size: 5.34vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-project {
    padding-top: 16%;
  }
  #contentsWrapper .p-project .block1 .item {
    width: 100%;
  }
  #contentsWrapper .p-project .block1 .title {
    font-size: 4.625vw;
  }
  #contentsWrapper .p-project .block1 .comingsoon {
    font-size: 8.125vw;
    min-height: 5em;
  }
}

#contentsWrapper .p-news {
  padding-top: 115px;
}

#contentsWrapper .p-news h2 {
  position: absolute;
  top: -0.8em;
  left: 0.7em;
}

#contentsWrapper .p-news .c-frame {
  padding: 56px 27px 27px;
}

#contentsWrapper .p-news .c-frame.js-scroll {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  opacity: 0;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
}

#contentsWrapper .p-news .c-frame.js-scroll h2 {
  -webkit-transition: 0.5s ease 0.8s;
  transition: 0.5s ease 0.8s;
  opacity: 0;
  -webkit-transform: skewX(-15deg) translateX(-1em);
          transform: skewX(-15deg) translateX(-1em);
}

#contentsWrapper .p-news .c-frame.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-news .c-frame.is-scroll h2 {
  opacity: 1;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}

#contentsWrapper .p-news_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 24px;
}

#contentsWrapper .p-news_dl + .p-news_dl {
  border-top: 2px solid #ffe226;
  padding-top: 1em;
  margin-top: 1em;
}

#contentsWrapper .p-news_dl dt {
  font-weight: bold;
  text-align: center;
  color: #000;
  background: -webkit-gradient(linear, left top, right top, from(var(--gradient)));
  background: linear-gradient(90deg, var(--gradient));
  border: 1px solid #fff2b2;
  width: 6.67em;
  padding: 0.15em 0.5em;
}

#contentsWrapper .p-news_dl dd {
  width: calc(100% - 1.25em - 6.67em);
  margin-left: 1.25em;
  line-height: 1.86;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-news {
    padding-top: 10%;
  }
  #contentsWrapper .p-news .c-frame {
    padding: 4.67vw 2.25vw 2.25vw;
  }
  #contentsWrapper .p-news_dl {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-news {
    padding-top: 16%;
  }
  #contentsWrapper .p-news_dl {
    font-size: 3vw;
  }
}

#contentsWrapper .p-product {
  padding-top: 65px;
}

#contentsWrapper .p-product .txt1 {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}

#contentsWrapper .p-product_list {
  max-width: 1153px;
  margin: 80px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 80px 36px;
}

#contentsWrapper .p-product_list > li {
  width: calc(calc(100% - 72px) / 3);
}

#contentsWrapper .p-product_list .title {
  font-size: 24px;
  font-weight: bold;
}

#contentsWrapper .p-product_list.js-scroll > li {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.75, 0);
          transform: scale(0.75, 0);
}

#contentsWrapper .p-product_list.is-scroll > li {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-product {
    padding-top: 6%;
  }
  #contentsWrapper .p-product .txt1 {
    font-size: 3.6vw;
  }
  #contentsWrapper .p-product_list {
    margin-top: 6.67vw;
    gap: 6.67vw 3vw;
  }
  #contentsWrapper .p-product_list > li {
    width: calc(calc(100% - 6vw) / 3);
  }
  #contentsWrapper .p-product_list .title {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-product {
    padding-top: 12%;
  }
  #contentsWrapper .p-product_list > li {
    width: calc(calc(100% - 3vw) / 2);
  }
  #contentsWrapper .p-product_list .title {
    font-size: 3vw;
  }
}

#contentsWrapper .contentsFooter {
  padding: 50px 0;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .contentsFooter {
    padding: 4% 0;
  }
}

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

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