@charset "UTF-8";
:root {
  --maincolor: #ff8106;
  --subcolor: #fff;
  --textcolor: #000;
  --container: 1260px;
}

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 16px;
  font-family: "m-plus-rounded-1p", "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0;
  width: 100%;
  color: var(--textcolor);
  overflow: hidden;
  position: relative;
}

@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.79365vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 0.95238vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 1.11111vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 1.26984vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 1.42857vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 1.5873vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 1.74603vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 1.90476vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 2.06349vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 2.22222vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 2.38095vw !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: "m-plus-rounded-1p", "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 .js-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1000;
  background: #fff;
}

#contentsWrapper .js-loading img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

#contentsWrapper .js-loading img:nth-child(1) {
  width: 16.66%;
  left: 37%;
  opacity: 0;
  -webkit-animation: loading1 0.5s ease 0.3s 1 normal forwards running;
          animation: loading1 0.5s ease 0.3s 1 normal forwards running;
}

@-webkit-keyframes loading1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loading1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#contentsWrapper .js-loading img:nth-child(2) {
  width: 7.5%;
  right: 37%;
  opacity: 0;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
  -webkit-animation: loading2 0.4s cubic-bezier(0.33, 0, 0.33, 1.5) 0.6s 1 normal forwards running;
          animation: loading2 0.4s cubic-bezier(0.33, 0, 0.33, 1.5) 0.6s 1 normal forwards running;
}

@-webkit-keyframes loading2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes loading2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .js-loading img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  #contentsWrapper .js-loading img:nth-child(1) {
    width: 55.56%;
    left: 7%;
  }
  #contentsWrapper .js-loading img:nth-child(2) {
    width: 25%;
    right: 7%;
  }
}

#contentsWrapper .parallaxWrapper {
  position: relative;
}

#contentsWrapper .parallaxWrapper > *:last-child {
  padding-bottom: 100px;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .parallaxWrapper > *:last-child {
    padding-bottom: 8.34%;
  }
}

#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: #fff url(../images/body_bg.png) repeat-y center top 70px/100% auto;
  -webkit-animation: bgScroll 12s linear 0s infinite normal forwards running;
          animation: bgScroll 12s linear 0s infinite normal forwards running;
}

@-webkit-keyframes bgScroll {
  0% {
    background-position: center top 0;
  }
  100% {
    background-position: center top -17.467vw;
  }
}

@keyframes bgScroll {
  0% {
    background-position: center top 0;
  }
  100% {
    background-position: center top -17.467vw;
  }
}

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

#contentsWrapper h2.heading {
  font-size: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 2em 0.075em;
  position: relative;
  z-index: 1;
}

#contentsWrapper h2.heading:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 0.34em;
  background: #ffa800;
  border-radius: 0.34em;
  z-index: -1;
}

#contentsWrapper h2.heading.js-scroll {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
}

#contentsWrapper h2.heading.js-scroll:before {
  -webkit-transition: 1s cubic-bezier(0.33, 0, 0, 1) 0.6s;
  transition: 1s cubic-bezier(0.33, 0, 0, 1) 0.6s;
  width: 0;
}

#contentsWrapper h2.heading.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper h2.heading.is-scroll:before {
  width: 100%;
}

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

#contentsWrapper .c-btn a {
  font-family: "プフ ピクニック", "Puhu Picnic", sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 14.67em;
  min-height: 2em;
  color: #fff;
  background: #ff6c00;
  border-radius: 3em;
  padding: 0.1em 1em 0.25em;
  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: 0.75em;
  bottom: 0;
  margin: auto;
  width: 0.3em;
  height: 0.3em;
  border-top: 0.1em solid #fff;
  border-right: 0.1em solid #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

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

@-webkit-keyframes btnHover {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ff6c00;
            box-shadow: 0 0 0 0 #ff6c00;
  }
  70% {
    -webkit-box-shadow: 0 0 0 0.5em #ff6c0000;
            box-shadow: 0 0 0 0.5em #ff6c0000;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 #ff6c0000;
            box-shadow: 0 0 0 0 #ff6c0000;
  }
}

@keyframes btnHover {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ff6c00;
            box-shadow: 0 0 0 0 #ff6c00;
  }
  70% {
    -webkit-box-shadow: 0 0 0 0.5em #ff6c0000;
            box-shadow: 0 0 0 0.5em #ff6c0000;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 #ff6c0000;
            box-shadow: 0 0 0 0 #ff6c0000;
  }
}

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

@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(3.75vw,30px);
  }
}

#contentsWrapper .c-iframeWrapper {
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

#contentsWrapper .c-iframeWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contentsWrapper .c-share {
  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;
}

#contentsWrapper .c-copyright {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

#contentsWrapper .contentsHeader {
  padding: 5px 2% 3px;
  position: relative;
}

#contentsWrapper .contentsHeader .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#contentsWrapper .contentsHeader .portal {
  width: 201px;
}

#contentsWrapper .contentsHeader .anniversary {
  width: 85px;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentsHeader {
    padding: 20px 2% 12px;
  }
  #contentsWrapper .contentsHeader .logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #contentsWrapper .contentsHeader .logo .portal {
    max-width: 44.67%;
  }
  #contentsWrapper .contentsHeader .logo .anniversary {
    position: absolute;
    top: 0;
    left: 2%;
    bottom: 0;
    margin: auto;
    max-width: 15%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

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

#contentsWrapper .p-kv.js-scroll img {
  -webkit-transition: 0.5s linear 0.3s;
  transition: 0.5s linear 0.3s;
  -webkit-mask-image: linear-gradient(125deg, #000 47%, transparent 53%);
          mask-image: linear-gradient(125deg, #000 47%, transparent 53%);
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
  -webkit-mask-position: 100% 0;
          mask-position: 100% 0;
}

#contentsWrapper .p-kv.is-scroll img {
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
}

#contentsWrapper .p-bnr {
  padding-top: 43px;
}

#contentsWrapper .p-bnr_slider .swiper-slide {
  -webkit-transition: 0.2s cubic-bezier(0.33, 0, 0.33, 1);
  transition: 0.2s cubic-bezier(0.33, 0, 0.33, 1);
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-filter: contrast(0.3) brightness(1.5);
          filter: contrast(0.3) brightness(1.5);
  border: 0.4vw solid transparent;
}

#contentsWrapper .p-bnr_slider .swiper-slide-active, #contentsWrapper .p-bnr_slider .swiper-slide-duplicate-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: contrast(1) brightness(1);
          filter: contrast(1) brightness(1);
  border-color: #cbecef;
}

#contentsWrapper .p-bnr_slider .swiper-arrow {
  position: absolute;
  top: 38%;
  width: 4.267vw;
  height: 4.267vw;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: 0.2s cubic-bezier(0, 0.33, 0.33, 1);
  transition: 0.2s cubic-bezier(0, 0.33, 0.33, 1);
}

#contentsWrapper .p-bnr_slider .swiper-arrow.--prev {
  left: 22.75%;
}

#contentsWrapper .p-bnr_slider .swiper-arrow.--prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#contentsWrapper .p-bnr_slider .swiper-arrow.--next {
  right: 22.75%;
}

#contentsWrapper .p-bnr_slider .swiper-arrow:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

#contentsWrapper .p-bnr_slider .swiper-pagination {
  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;
  font-size: 1.2vw;
  gap: 1em;
  margin-top: 1.2em;
  position: relative;
}

#contentsWrapper .p-bnr_slider .swiper-pagination-bullet {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #9b9b9b;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
}

#contentsWrapper .p-bnr_slider .swiper-pagination-bullet-active {
  background: #ff003c !important;
}

#contentsWrapper .p-bnr_slider .swiper-pagination-bullet:hover {
  background: #d96a86;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-bnr {
    padding-top: 3.584%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-bnr_slider .swiper-slide {
    border-width: 1.34vw;
  }
  #contentsWrapper .p-bnr_slider .swiper-arrow {
    width: 8.534vw;
    height: 8.534vw;
  }
  #contentsWrapper .p-bnr_slider .swiper-arrow.--prev {
    left: 3%;
  }
  #contentsWrapper .p-bnr_slider .swiper-arrow.--next {
    right: 3%;
  }
  #contentsWrapper .p-bnr_slider .swiper-pagination {
    font-size: 3.6vw;
  }
}

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

#contentsWrapper .p-movie .c-iframeWrapper {
  max-width: 960px;
  border: 0.67vw solid #ffb400;
  border-radius: 1.34vw;
}

#contentsWrapper .p-movie .playWrapper {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#contentsWrapper .p-movie .playWrapper.play {
  opacity: 0;
  pointer-events: none;
}

#contentsWrapper .p-movie .playWrapper.play .playIcon {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#contentsWrapper .p-movie .playWrapper:hover .playIcon {
  opacity: 0.75;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

#contentsWrapper .p-movie .playIcon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 13.646%;
  aspect-ratio: 1 / 1;
  background: url(../images/icon_play.svg) no-repeat center/contain;
  -webkit-filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff);
          filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff);
  border-radius: 50%;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-movie {
    padding-top: 5%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-movie .c-iframeWrapper {
    border-width: 1.25vw;
    border-radius: 2.5vw;
  }
}

#contentsWrapper .p-about {
  margin-top: 100px;
  padding: 68px 0;
  background: url(../images/about_bg.jpg) no-repeat center/cover;
}

#contentsWrapper .p-about h2.heading {
  max-width: 12.67em;
}

#contentsWrapper .p-about h2.heading .dec1 {
  position: absolute;
  left: 2%;
  bottom: -20%;
  font-size: inherit;
  width: 1.4834em;
  -webkit-animation: surfing 1.75s steps(2, jump-end) 0s infinite normal forwards running;
          animation: surfing 1.75s steps(2, jump-end) 0s infinite normal forwards running;
}

#contentsWrapper .p-about h2.heading .dec2 {
  position: absolute;
  right: 2.5%;
  bottom: -20%;
  font-size: inherit;
  width: 1.5em;
  -webkit-animation: surfing 1.75s steps(2, jump-end) -0.5s infinite normal forwards running;
          animation: surfing 1.75s steps(2, jump-end) -0.5s infinite normal forwards running;
}

#contentsWrapper .p-about .block1 {
  max-width: 1200px;
  margin: 0 auto;
  font-weight: bold;
  line-height: 1.75;
  position: relative;
}

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

#contentsWrapper .p-about .block1 .dec img {
  width: 100%;
  max-width: none;
}

#contentsWrapper .p-about .block1 .dec.dec1 {
  top: 58.1%;
  left: -5.6%;
  width: 11%;
}

#contentsWrapper .p-about .block1 .dec.dec2 {
  top: 15%;
  left: 4.3%;
  width: 12.25%;
}

#contentsWrapper .p-about .block1 .dec.dec3 {
  top: 48.8%;
  left: 15%;
  width: 11.25%;
}

#contentsWrapper .p-about .block1 .dec.dec4 {
  top: 23%;
  right: 14.5%;
  width: 11.4167%;
}

#contentsWrapper .p-about .block1 .dec.dec5 {
  top: 16.4%;
  right: -5.3%;
  width: 15.834%;
}

#contentsWrapper .p-about .block1 .logo {
  width: 407px;
  margin: 0 auto;
}

#contentsWrapper .p-about .block1.js-scroll .dec1, #contentsWrapper .p-about .block1.js-scroll .dec2, #contentsWrapper .p-about .block1.js-scroll .dec3 {
  -webkit-filter: contrast(0) brightness(2);
          filter: contrast(0) brightness(2);
  -webkit-transform: scale(0);
          transform: scale(0);
}

#contentsWrapper .p-about .block1.js-scroll .dec4 {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

#contentsWrapper .p-about .block1.js-scroll .dec5 {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 2000px;
          perspective: 2000px;
}

#contentsWrapper .p-about .block1.js-scroll .dec5 img {
  -webkit-transition: 0.6s cubic-bezier(0.5, 0.1, 0.2, 1.2) 1.5s;
  transition: 0.6s cubic-bezier(0.5, 0.1, 0.2, 1.2) 1.5s;
  opacity: 0;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}

#contentsWrapper .p-about .block1.is-scroll .dec1, #contentsWrapper .p-about .block1.is-scroll .dec2, #contentsWrapper .p-about .block1.is-scroll .dec3 {
  -webkit-animation: rush 1s cubic-bezier(0.5, 0, 0.4, 1.6) 0.3s 1 normal forwards running;
          animation: rush 1s cubic-bezier(0.5, 0, 0.4, 1.6) 0.3s 1 normal forwards running;
}

#contentsWrapper .p-about .block1.is-scroll .dec2 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#contentsWrapper .p-about .block1.is-scroll .dec3 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

#contentsWrapper .p-about .block1.is-scroll .dec4 {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-animation: aboutDec4 0.5s ease 1.2s 1 normal forwards running;
          animation: aboutDec4 0.5s ease 1.2s 1 normal forwards running;
}

@-webkit-keyframes aboutDec4 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(-6deg);
            transform: translateY(0) rotate(-6deg);
  }
  40% {
    -webkit-transform: translateY(-3px) rotate(3deg);
            transform: translateY(-3px) rotate(3deg);
  }
  60% {
    -webkit-transform: translateY(-3px) rotate(-1.5deg);
            transform: translateY(-3px) rotate(-1.5deg);
  }
  80% {
    -webkit-transform: translateY(0) rotate(0.75deg);
            transform: translateY(0) rotate(0.75deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes aboutDec4 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(-6deg);
            transform: translateY(0) rotate(-6deg);
  }
  40% {
    -webkit-transform: translateY(-3px) rotate(3deg);
            transform: translateY(-3px) rotate(3deg);
  }
  60% {
    -webkit-transform: translateY(-3px) rotate(-1.5deg);
            transform: translateY(-3px) rotate(-1.5deg);
  }
  80% {
    -webkit-transform: translateY(0) rotate(0.75deg);
            transform: translateY(0) rotate(0.75deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

#contentsWrapper .p-about .block1.is-scroll .dec5 img {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-about {
    margin-top: 8.34%;
    padding: 5.67% 0;
  }
  #contentsWrapper .p-about .block1 .dec.dec1 {
    left: -1.6%;
  }
  #contentsWrapper .p-about .block1 .dec.dec2 {
    top: 15%;
    left: 6.2%;
  }
  #contentsWrapper .p-about .block1 .dec.dec3 {
    left: 15%;
  }
  #contentsWrapper .p-about .block1 .dec.dec4 {
    right: 17.5%;
  }
  #contentsWrapper .p-about .block1 .dec.dec5 {
    right: 0%;
  }
  #contentsWrapper .p-about .block1 .logo {
    max-width: 33.9167%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-about .block1 {
    padding-bottom: 20%;
  }
  #contentsWrapper .p-about .block1 .dec.dec1 {
    top: 83.1%;
    left: -3.6%;
    width: 16.5%;
  }
  #contentsWrapper .p-about .block1 .dec.dec2 {
    top: 51%;
    left: 2.3%;
    width: 18.375%;
  }
  #contentsWrapper .p-about .block1 .dec.dec3 {
    top: 77.8%;
    left: 15%;
    width: 16.875%;
  }
  #contentsWrapper .p-about .block1 .dec.dec4 {
    top: 75%;
    right: 25.5%;
    width: 13%;
  }
  #contentsWrapper .p-about .block1 .dec.dec5 {
    top: 57.4%;
    right: -2.3%;
    width: 23.75%;
  }
  #contentsWrapper .p-about .block1 .logo {
    max-width: 50.875%;
  }
}

#contentsWrapper .p-lineup {
  padding-top: 90px;
}

#contentsWrapper .p-lineup h2.heading {
  max-width: 9.134em;
}

#contentsWrapper .p-lineup h2.heading .dec1 {
  position: absolute;
  left: 4%;
  bottom: -20%;
  font-size: inherit;
  width: 1.4834em;
  -webkit-animation: kakukaku 1s steps(2, jump-none) 0s infinite normal forwards running;
          animation: kakukaku 1s steps(2, jump-none) 0s infinite normal forwards running;
}

#contentsWrapper .p-lineup h2.heading .dec2 {
  position: absolute;
  right: 2.5%;
  bottom: -20%;
  font-size: inherit;
  width: 1.6em;
  -webkit-animation: kakukaku 1s steps(2, jump-none) -0.5s infinite normal forwards running;
          animation: kakukaku 1s steps(2, jump-none) -0.5s infinite normal forwards running;
}

#contentsWrapper .p-lineup_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

#contentsWrapper .p-lineup_list > li {
  width: calc(calc(100% - 60px) / 4);
}

#contentsWrapper .p-lineup_list > li > * {
  width: 100%;
  height: 100%;
  border: 2px solid #f7921c;
  background: #f7921c;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#contentsWrapper .p-lineup_list > li > a {
  -webkit-transition: 0.3s cubic-bezier(0.33, -0.66, 0, 1.15);
  transition: 0.3s cubic-bezier(0.33, -0.66, 0, 1.15);
}

#contentsWrapper .p-lineup_list > li > a .content {
  -webkit-transition: inherit;
  transition: inherit;
}

#contentsWrapper .p-lineup_list > li > a:hover {
  border-color: #ff6c00;
  background: #ff6c00;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#contentsWrapper .p-lineup_list > li > a:hover .content {
  background: #ff6c00;
}

#contentsWrapper .p-lineup_list .img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

#contentsWrapper .p-lineup_list .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contentsWrapper .p-lineup_list .content {
  text-align: center;
  color: #fff;
  padding: 0.75em 0.75em 0.25em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#contentsWrapper .p-lineup_list .content .name {
  font-size: 18px;
  font-weight: bold;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#contentsWrapper .p-lineup_list .content .release {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-lineup {
    padding-top: 7.5%;
  }
  #contentsWrapper .p-lineup_list {
    gap: 1.67vw;
  }
  #contentsWrapper .p-lineup_list > li {
    width: calc(calc(100% - 5.01vw) / 4);
  }
  #contentsWrapper .p-lineup_list > li > * {
    border-radius: 1.67vw;
  }
  #contentsWrapper .p-lineup_list .content .name, #contentsWrapper .p-lineup_list .content .release {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-lineup_list > li {
    width: calc(calc(100% - 3.34vw) / 2);
  }
  #contentsWrapper .p-lineup_list .content .name, #contentsWrapper .p-lineup_list .content .release {
    font-size: 2.8vw;
  }
}

#contentsWrapper .contentsFooter {
  padding: 40px 0;
  background: #fbd821;
}

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

/* modal */
[data-modal] {
  cursor: pointer;
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 92vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 92vh;
  opacity: 0;
  pointer-events: none;
  z-index: 502;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.c-modal_close {
  position: relative;
  margin: 0 0 0.5em auto !important;
  width: 3em;
  height: 3em;
  background: var(--maincolor);
  border-radius: 50%;
  cursor: pointer;
  z-index: 503;
}

.c-modal_close:before, .c-modal_close:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50%;
  height: 0.25em;
  background: #fff;
  border-radius: 0.1em;
}

.c-modal_close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-modal_close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-modal.--img {
  overflow-y: auto;
}

.c-modal.--img img {
  font-size: inherit;
  border: 0.625em solid #fff;
  border-radius: 0.625em;
}

#is-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  z-index: 501;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* 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.fadeInRush {
  -webkit-filter: contrast(0) brightness(2);
          filter: contrast(0) brightness(2);
  -webkit-transform: scale(0);
          transform: scale(0);
}

.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;
  -webkit-filter: none;
          filter: none;
}

.js-scroll.is-scroll.fadeInRush {
  -webkit-animation: rush 0.7s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s 1 normal forwards running;
          animation: rush 0.7s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s 1 normal forwards running;
}

@-webkit-keyframes rush {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-filter: contrast(0) brightness(2);
            filter: contrast(0) brightness(2);
  }
  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-filter: contrast(0) brightness(2);
            filter: contrast(0) brightness(2);
  }
  100% {
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
}

@keyframes rush {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-filter: contrast(0) brightness(2);
            filter: contrast(0) brightness(2);
  }
  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-filter: contrast(0) brightness(2);
            filter: contrast(0) brightness(2);
  }
  100% {
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
}

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

@-webkit-keyframes surfing {
  0% {
    -webkit-transform: translate(-0.1em, -0.1em) rotate(10deg);
            transform: translate(-0.1em, -0.1em) rotate(10deg);
  }
  33.33% {
    -webkit-transform: translate(-0.1em, 0.1em) rotate(5deg);
            transform: translate(-0.1em, 0.1em) rotate(5deg);
  }
  66.66% {
    -webkit-transform: translate(0.1em, 0.1em) rotate(-5deg);
            transform: translate(0.1em, 0.1em) rotate(-5deg);
  }
  100% {
    -webkit-transform: translate(0.1em, -0.1em) rotate(-10deg);
            transform: translate(0.1em, -0.1em) rotate(-10deg);
  }
}

@keyframes surfing {
  0% {
    -webkit-transform: translate(-0.1em, -0.1em) rotate(10deg);
            transform: translate(-0.1em, -0.1em) rotate(10deg);
  }
  33.33% {
    -webkit-transform: translate(-0.1em, 0.1em) rotate(5deg);
            transform: translate(-0.1em, 0.1em) rotate(5deg);
  }
  66.66% {
    -webkit-transform: translate(0.1em, 0.1em) rotate(-5deg);
            transform: translate(0.1em, 0.1em) rotate(-5deg);
  }
  100% {
    -webkit-transform: translate(0.1em, -0.1em) rotate(-10deg);
            transform: translate(0.1em, -0.1em) rotate(-10deg);
  }
}

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

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

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