@charset "UTF-8";
:root {
  --maincolor: #fd1b6b;
  --subcolor: #081c77;
  --secondcolor: #ebff00;
  --textcolor: #000;
  --gradient: linear-gradient(90deg,#115ac4,#00f0f3 97%);
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#contents {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: noto-sans-cjk-jp, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow: hidden;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #contents {
    font-size: 1.6vw;
  }
}

@media screen and (max-width: 800px) {
  #contents {
    font-size: max(2.4vw,14px);
  }
}

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

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

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

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

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

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

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

#contents .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) {
  #contents .widthWrapper {
    padding-left: 2%;
    padding-right: 2%;
  }
}

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

#contents .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;
}

#contents .flexBlock {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  list-style: none;
}

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

#contents .flexLeft {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#contents .flexAlignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contents .flexSplit > * {
  width: 50%;
}

#contents .flexList2 > * {
  width: 45.37%;
}

#contents .flexList2 > *:nth-child(even) {
  margin-left: 4.6%;
}

@media screen and (max-width: 800px) {
  #contents .flexSplit > *,
  #contents .flexList2 > * {
    width: 100%;
  }
  #contents .flexList2 > *:nth-child(even) {
    margin-left: 0;
  }
}

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

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

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

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

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

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

#contents .lineHeight100 {
  line-height: 1;
}

#contents .lineHeight150 {
  line-height: 1.5;
}

#contents .lineHeight200 {
  line-height: 2;
}

#contents .text36 {
  font-size: 36px;
}

#contents .text24 {
  font-size: 24px;
}

#contents .text18 {
  font-size: 18px;
}

#contents .text0 {
  font-size: 0;
}

@media screen and (min-width: 801px) and (max-width: 1500px) {
  #contents .text36 {
    font-size: 2.4vw;
  }
  #contents .text24 {
    font-size: 1.6vw;
  }
  #contents .text18 {
    font-size: 1.2vw;
  }
}

@media screen and (max-width: 800px) {
  #contents .lineHeight150 {
    line-height: 2;
  }
  #contents .text36 {
    font-size: 4.5vw;
  }
  #contents .text24 {
    font-size: 3.6vw;
  }
  #contents .text18 {
    font-size: 3vw;
  }
}

#contents .marginTopHarf {
  margin-top: 0.5em !important;
}

#contents .marginTop1 {
  margin-top: 1em !important;
}

#contents .marginTop2 {
  margin-top: 2em !important;
}

#contents .marginTop3 {
  margin-top: 3em !important;
}

#contents .marginTop4 {
  margin-top: 4em !important;
}

#contents .marginTopAuto {
  margin-top: auto !important;
}

#contents .marginRightHarf {
  margin-right: 0.5em !important;
}

#contents .paddingVerticalHalf {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

#contents .paddingVertical1 {
  padding-top: 1em;
  padding-bottom: 1em;
}

#contents .paddingVertical2 {
  padding-top: 2em;
  padding-bottom: 2em;
}

#contents .paddingVertical3 {
  padding-top: 3em;
  padding-bottom: 3em;
}

#contents .paddingVertical4 {
  padding-top: 4em;
  padding-bottom: 4em;
}

#contents .paddingHorizontalHalf {
  padding-left: 0.5em;
  padding-right: 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contents .paddingHorizontal1 {
  padding-left: 1em;
  padding-right: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contents .paddingHorizontal1half {
  padding-left: 1.5em;
  padding-right: 1.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contents .paddingHorizontal2 {
  padding-left: 2em;
  padding-right: 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

#contents .u-note {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

#contents .u-marker {
  padding: 0 0.2em;
  margin: 0 0.2em;
  background: var(--maincolor);
  color: #fff;
}

#contents .c-blockLink a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#contents [data-ruby] {
  position: relative;
  display: inline-block;
  line-height: 1;
}

#contents [data-ruby]:before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 50%;
  font-size: max(0.3em,8px);
  font-family: "新ゴ R", "Shin Go Regular", sans-serif;
  line-height: 1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (min-width: 801px) {
  #contents .sp {
    display: none !important;
  }
  #contents a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 800px) {
  #contents .pc {
    display: none !important;
  }
}

/* ======== ↑ End common ↑ ======== */
/* ======== ↓ main ↓ ======== */
#contents .parallaxWrapper {
  position: relative;
}

#contents .parallax1 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
  z-index: -1;
}

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

@media screen and (max-width: 800px) {
  #contents .parallax1 {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%);
  }
  #contents .parallax1 .bg {
    background: url(../images/parallax01_sp.jpg) repeat-y center/cover;
  }
}

#contents .parallax2 {
  position: absolute;
  width: 100%;
  height: calc(100% + 80px);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
  margin-top: -80px;
  z-index: -2;
}

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

@media screen and (max-width: 800px) {
  #contents .parallax2 {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%);
  }
  #contents .parallax2 .bg {
    background: url(../images/parallax02_sp.jpg) repeat-y center/cover;
  }
}

#contents .parallax3 {
  position: absolute;
  width: 100%;
  height: calc(100% + 160px);
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  margin-top: -160px;
  z-index: -3;
}

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

@media screen and (max-width: 800px) {
  #contents .parallax3 .bg {
    background: url(../images/parallax03_sp.jpg) repeat-y center/cover;
  }
}

#contents h2.heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 391px;
  min-height: 70px;
  margin: 0 auto;
}

#contents h2.heading .txt {
  font-size: 50px;
  font-weight: normal;
  font-family: futura-pt, sans-serif;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  padding: 0.1em 1.3em;
  background: url(../images/titleBg01.png) no-repeat center/contain;
  position: relative;
  z-index: 3;
}

#contents h2.heading .dec {
  position: absolute;
  top: 0;
  left: -100%;
  right: -100%;
  bottom: 0;
  margin: auto;
  width: calc(100% + 120px);
  height: 4px;
  background: #014fc4;
  z-index: 1;
}

#contents h2.heading .dec:before, #contents h2.heading .dec:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #000;
  -webkit-box-shadow: 0 0 0 2px #000;
          box-shadow: 0 0 0 2px #000;
}

#contents h2.heading .dec:before {
  left: -6px;
}

#contents h2.heading .dec:after {
  right: -6px;
}

#contents h2.heading.typeB {
  min-width: 471px;
}

#contents h2.heading.typeB .txt {
  color: #000;
  background-image: url(../images/titleBg02.png);
}

#contents h2.heading.typeB .dec {
  background: var(--secondcolor);
}

#contents h2.heading.typeC .txt {
  background-image: url(../images/titleBg03.png);
}

#contents h2.heading.typeC .dec {
  background: #000;
}

#contents h2.heading.js-scroll .dec {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0, 1) 0.1s;
  transition: 0.5s cubic-bezier(0.33, 0, 0, 1) 0.1s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

#contents h2.heading.js-scroll .dec:before, #contents h2.heading.js-scroll .dec:after {
  -webkit-transition: 0.5s ease 0.6s;
  transition: 0.5s ease 0.6s;
  opacity: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#contents h2.heading.js-scroll .txt {
  -webkit-transition: 0.7s ease 0.3s;
  transition: 0.7s ease 0.3s;
  opacity: 0;
  -webkit-transform: skewX(75deg);
          transform: skewX(75deg);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents h2.heading.is-scroll .dec {
  -webkit-transform: none;
          transform: none;
}

#contents h2.heading.is-scroll .dec:before, #contents h2.heading.is-scroll .dec:after {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

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

@media screen and (max-width: 800px) {
  #contents h2.heading {
    min-width: 54.8vw;
    min-height: 7vw;
  }
  #contents h2.heading .txt {
    font-size: 7vw;
  }
  #contents h2.heading .dec {
    height: 2px;
    width: calc(100% + 16vw);
  }
  #contents h2.heading.typeB {
    min-width: 65vw;
  }
}

#contents h3.heading {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  color: #fff;
  background: var(--maincolor);
  border-left: 2px solid #192225;
  border-right: 2px solid #192225;
  width: calc(100% - 58px);
  margin: 0 auto;
  padding-bottom: 0.05em;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
  position: relative;
}

#contents h3.heading .wrap {
  display: block;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

#contents h3.heading:before, #contents h3.heading:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 27px;
  height: 100%;
  background: inherit;
}

#contents h3.heading:before {
  right: calc(100% + 2px);
}

#contents h3.heading:after {
  left: calc(100% + 2px);
}

#contents h3.heading.js-scroll {
  -webkit-transition: 0.5s cubic-bezier(0, 0.66, 0.33, 1) 0.1s;
  transition: 0.5s cubic-bezier(0, 0.66, 0.33, 1) 0.1s;
  opacity: 0;
  -webkit-transform: scaleX(0) skewX(-45deg);
          transform: scaleX(0) skewX(-45deg);
}

#contents h3.heading.js-scroll .wrap {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents h3.heading.is-scroll {
  opacity: 1;
  -webkit-transform: scaleX(1) skewX(-45deg);
          transform: scaleX(1) skewX(-45deg);
}

#contents h3.heading.is-scroll .wrap {
  opacity: 1;
  -webkit-filter: none;
          filter: none;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #contents h3.heading {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contents h3.heading {
    font-size: 4vw;
    line-height: 1.2;
    padding-bottom: 0.1em;
    width: calc(88% - 4px);
  }
  #contents h3.heading:before, #contents h3.heading:after {
    width: 6%;
  }
}

#contents .c-btn a {
  font-family: futura-pt, sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  max-width: 500px;
  min-height: 2.916em;
  color: var(--subcolor);
  background: #86d2f6;
  border: 1px solid var(--subcolor);
  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.3s;
  transition: 0.3s;
}

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

#contents .c-btn a .txt {
  position: relative;
  z-index: 3;
}

#contents .c-btn a .txt .logo {
  width: 170px;
  display: inline-block;
  vertical-align: sub;
  margin-right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contents .c-btn a .bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

#contents .c-btn a .bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: -100%;
  margin: auto;
  width: 0%;
  height: 100%;
  background: var(--subcolor);
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#contents .c-btn a:before, #contents .c-btn a:after {
  content: '';
  position: absolute;
  width: 1em;
  height: 1em;
  z-index: -1;
  -webkit-transition: 0.5s cubic-bezier(0, 1, 0.5, 1);
  transition: 0.5s cubic-bezier(0, 1, 0.5, 1);
}

#contents .c-btn a:before {
  top: -3px;
  left: -3px;
  border-top: 2px solid var(--subcolor);
  border-left: 2px solid var(--subcolor);
}

#contents .c-btn a:after {
  right: -3px;
  bottom: -3px;
  border-right: 2px solid var(--subcolor);
  border-bottom: 2px solid var(--subcolor);
}

#contents .c-btn a:hover {
  color: #fff;
}

#contents .c-btn a:hover:before, #contents .c-btn a:hover:after {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}

#contents .c-btn a:hover:before {
  top: -6px;
  left: -6px;
}

#contents .c-btn a:hover:after {
  right: -6px;
  bottom: -6px;
}

#contents .c-btn a:hover .bg:after {
  width: 127%;
  opacity: 1;
}

#contents .c-btn.typeB a {
  color: #43d8ff;
  background-color: #00003f;
  border-color: #43d8ff;
}

#contents .c-btn.typeB a .bg:after {
  background-color: #43d8ff;
}

#contents .c-btn.typeB a:before, #contents .c-btn.typeB a:after {
  border-color: #43d8ff;
}

#contents .c-btn.typeB a:hover {
  color: #000;
}

#contents .c-btn.typeB a:hover .logo {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

@media screen and (max-width: 800px) {
  #contents .c-btn a {
    font-size: 3.6vw;
    max-width: 75vw;
  }
  #contents .c-btn.typeB a .txt .logo {
    width: 34%;
  }
}

#contents #globalNav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  font-family: futura-pt, sans-serif;
}

#contents #globalNav.fixed {
  position: fixed;
}

#contents #globalNav ul {
  position: relative;
  z-index: 2;
}

#contents #globalNav ul:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.74;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

#contents #globalNav ul li {
  position: relative;
  z-index: 2;
}

#contents #globalNav ul li a:hover {
  color: var(--maincolor);
}

#contents #globalNav ul li.current a {
  color: var(--maincolor);
}

@media screen and (min-width: 801px) {
  #contents #globalNav ul {
    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;
  }
  #contents #globalNav ul li {
    position: relative;
    z-index: 2;
  }
  #contents #globalNav ul li a {
    font-size: 22px;
    padding: 0.5em 2em;
    height: 3.18em;
    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-transition: 0.15s;
    transition: 0.15s;
  }
  #contents #globalNav ul li:not(:first-child):before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 1.3em;
    background: #fff;
    -webkit-transform: skewX(-30deg);
            transform: skewX(-30deg);
  }
}

@media screen and (max-width: 1302px) and (min-width: 801px) {
  #contents #globalNav ul li a {
    font-size: 1.75vw;
  }
}

@media screen and (max-width: 800px) {
  #contents #globalNav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 18vw;
  }
  #contents #globalNav .hamburger {
    position: absolute;
    top: 0;
    right: 4%;
    bottom: 0;
    margin: auto;
    width: 14vw;
    height: 8.2vw;
    cursor: pointer;
    z-index: 203;
  }
  #contents #globalNav .hamburger > span {
    position: absolute;
    right: 0;
    margin: auto;
    width: 100%;
    height: 0.6vw;
    background: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #contents #globalNav .hamburger > span:nth-child(1) {
    top: 0;
    bottom: auto;
  }
  .menu-open #contents #globalNav .hamburger > span:nth-child(1) {
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #contents #globalNav .hamburger > span:nth-child(2) {
    top: 0;
    bottom: 0;
    width: 78%;
  }
  .menu-open #contents #globalNav .hamburger > span:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  #contents #globalNav .hamburger > span:nth-child(3) {
    top: auto;
    bottom: 0;
    width: 58%;
  }
  .menu-open #contents #globalNav .hamburger > span:nth-child(3) {
    top: 0;
    bottom: 0;
    width: 100%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #contents #globalNav .logo {
    position: absolute;
    top: 5vw;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: 203;
  }
  .menu-open #contents #globalNav .logo {
    opacity: 1;
    pointer-events: auto;
  }
  #contents #globalNav ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: 24vw;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 202;
  }
  .menu-open #contents #globalNav ul {
    opacity: 1;
    pointer-events: auto;
  }
  #contents #globalNav ul li {
    font-size: 7vw;
    text-align: center;
  }
  #contents #globalNav ul li:not(:first-child) {
    margin-top: 1em;
  }
}

#contents .c-frame {
  border: 2px solid #0056d8;
  position: relative;
  z-index: -1;
  -webkit-mask-image: linear-gradient(-45deg, transparent 40px, #000 40px), linear-gradient(135deg, transparent 40px, #000 40px);
          mask-image: linear-gradient(-45deg, transparent 40px, #000 40px), linear-gradient(135deg, transparent 40px, #000 40px);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  position: relative;
}

#contents .c-frameWrapper {
  position: relative;
  z-index: 1;
}

#contents .c-frame:before, #contents .c-frame:after {
  content: '';
  position: absolute;
  height: 56px;
  width: 3px;
  background: #0056d8;
  z-index: 1;
}

#contents .c-frame:before {
  top: -1px;
  left: -3px;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
}

#contents .c-frame:after {
  right: -3px;
  bottom: -1px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
}

#contents .c-frame_inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 800px) {
  #contents .c-frame {
    -webkit-mask-image: linear-gradient(-45deg, transparent 4vw, #000 4vw), linear-gradient(135deg, transparent 4vw, #000 4vw);
            mask-image: linear-gradient(-45deg, transparent 4vw, #000 4vw), linear-gradient(135deg, transparent 4vw, #000 4vw);
  }
  #contents .c-frame:before, #contents .c-frame:after {
    height: 5.6vw;
  }
}

#contents .p-kv {
  position: relative;
}

#contents .p-kv .movie {
  overflow: hidden;
  height: 100vh;
}

#contents .p-kv .movie:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.64);
  z-index: 2;
}

#contents .p-kv .movie iframe, #contents .p-kv .movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  min-width: 1920px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

#contents .p-kv .cover {
  position: absolute;
  top: 32vh;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 3;
  width: 100%;
}

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

#contents .p-kv .logo {
  width: 50.06%;
}

#contents .p-kv .gunpla {
  width: 15.33%;
  margin-top: 1.5%;
}

#contents .p-kv .icon {
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-top: 4%;
  width: 100%;
}

#contents .p-kv .icon.multiple {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#contents .p-kv .icon .txt {
  font-size: 2vw;
  font-family: futura-pt, sans-serif;
  text-align: center;
  color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
}

#contents .p-kv .icon svg {
  width: 4.73%;
  fill: #fff;
  -webkit-transition: inherit;
  transition: inherit;
  margin-top: 0.5%;
}

#contents .p-kv .icon .btnWrapper a {
  display: block;
  width: 100%;
  text-align: center;
}

#contents .p-kv .icon .btnWrapper svg {
  width: 20%;
}

#contents .p-kv .icon .btnWrapper .txt, #contents .p-kv .icon .btnWrapper svg {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

#contents .p-kv .icon .btnWrapper:hover .txt {
  color: var(--maincolor);
  letter-spacing: 0.1em;
}

#contents .p-kv .icon .btnWrapper:hover svg {
  fill: var(--maincolor);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#contents .p-kv .play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

#contents .p-kv .play[data-modal] {
  cursor: pointer;
  pointer-events: auto;
}

#contents .p-kv .play[data-modal]:hover ~ .cover .txt {
  color: var(--maincolor);
  letter-spacing: 0.1em;
}

#contents .p-kv .play[data-modal]:hover ~ .cover svg {
  fill: var(--maincolor);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 800px) {
  #contents .p-kv .cover {
    top: 28vh;
    max-width: 80vh;
  }
  #contents .p-kv .logo {
    width: 93.1%;
  }
  #contents .p-kv .gunpla {
    width: 33.9%;
    margin-top: 5%;
  }
  #contents .p-kv .icon {
    margin-top: 12%;
  }
  #contents .p-kv .icon .txt {
    bottom: 35.7%;
    font-size: 6vw;
  }
  #contents .p-kv .icon svg {
    bottom: 26.5%;
    width: 14.2%;
  }
  #contents .p-kv .icon .btnWrapper svg {
    width: 30%;
  }
}

#contents .p-product {
  position: relative;
  padding-bottom: 220px;
}

#contents .p-product .title {
  position: absolute;
  top: -40px;
  left: 50px;
  margin: auto;
  z-index: 10;
}

#contents .p-product .title.js-scroll {
  -webkit-transition: 0.7s ease 0.3s;
  transition: 0.7s ease 0.3s;
  opacity: 0;
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents .p-product .title.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

@media screen and (min-width: 801px) and (max-width: 1500px) {
  #contents .p-product .title {
    top: -3vw;
    width: 33.33%;
  }
}

@media screen and (max-width: 800px) {
  #contents .p-product {
    padding-bottom: 17vw;
  }
  #contents .p-product .title {
    top: -5vw;
    left: 2vw;
    width: 59.9%;
  }
}

#contents .p-lineup {
  padding-top: 120px;
}

#contents .p-lineup .c-frameWrapper {
  margin-top: 45px;
}

#contents .p-lineup .c-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#contents .p-lineup .c-frame_inner {
  opacity: 0.85;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #090f6c), color-stop(53%, #00b8f4), color-stop(70%, #ebf6ff));
  background: linear-gradient(#090f6c 10%, #00b8f4 53%, #ebf6ff 70%);
}

#contents .p-lineup_block1 {
  position: relative;
  padding-top: 73%;
}

#contents .p-lineup_block1 > * {
  position: absolute;
}

#contents .p-lineup_block1 .inner {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#contents .p-lineup_block1 .inner > * {
  position: absolute;
}

#contents .p-lineup_block1 .bg {
  top: -18.5%;
  left: 0%;
  width: 108.75%;
}

#contents .p-lineup_block1 .hex1 {
  top: 2%;
  left: -1.2%;
  width: 32%;
}

#contents .p-lineup_block1 .paint2 {
  top: -17.4%;
  right: -9.1%;
  width: 41.97%;
}

#contents .p-lineup_block1 .hex2 {
  top: 61.5%;
  right: 3%;
  width: 32%;
}

#contents .p-lineup_block1 .name {
  top: 5.2%;
  right: 4.2%;
  width: 44.16%;
}

#contents .p-lineup_block1 .paint1 {
  position: absolute;
  top: 4.2%;
  left: -2%;
  width: 61.2%;
}

#contents .p-lineup_block1 .img1 {
  top: 5.9%;
  left: -1.26%;
  width: 53.84%;
}

#contents .p-lineup_block1 .img2 {
  top: 24.1%;
  right: 6%;
  width: 41.916%;
}

#contents .p-lineup_block1.js-scroll .bg {
  -webkit-transition: 1s ease 1.1s;
  transition: 1s ease 1.1s;
  opacity: 0;
}

#contents .p-lineup_block1.js-scroll .paint2 {
  -webkit-transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 0.3s;
  transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.7) translate(5%, -5%);
          transform: scale(0.7) translate(5%, -5%);
}

#contents .p-lineup_block1.js-scroll .name {
  -webkit-transition: 1s ease 0.6s;
  transition: 1s ease 0.6s;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents .p-lineup_block1.js-scroll .paint1 {
  -webkit-transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 0.9s;
  transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 0.9s;
  opacity: 0;
  -webkit-transform: translate(10%, -10%);
          transform: translate(10%, -10%);
}

#contents .p-lineup_block1.js-scroll .img1 {
  -webkit-transition: 1s ease 1.0s;
  transition: 1s ease 1.0s;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents .p-lineup_block1.js-scroll .img2 {
  -webkit-transition: 1s ease 1.1s;
  transition: 1s ease 1.1s;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents .p-lineup_block1.is-scroll .paint2, #contents .p-lineup_block1.is-scroll .name, #contents .p-lineup_block1.is-scroll .paint1, #contents .p-lineup_block1.is-scroll .img1, #contents .p-lineup_block1.is-scroll .img2, #contents .p-lineup_block1.is-scroll .bg {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

#contents .p-lineup_block2 {
  padding: 0 37px 55px;
  font-size: 20px;
}

#contents .p-lineup_block2 h3 {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  padding-bottom: 0.3em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#contents .p-lineup_block2 h3 + * {
  margin-top: 0.5em;
}

#contents .p-lineup_block2 h3:before, #contents .p-lineup_block2 h3:after {
  content: '';
  position: absolute;
}

#contents .p-lineup_block2 h3:before {
  left: 0;
  bottom: 0;
  width: 100px;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#115ac4), to(#0f6fcb));
  background: linear-gradient(90deg, #115ac4, #0f6fcb);
}

#contents .p-lineup_block2 h3:after {
  left: 100px;
  bottom: 3px;
  width: calc(100% - 100px);
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#0f6fcb), to(#00f0f3));
  background: linear-gradient(90deg, #0f6fcb, #00f0f3);
}

#contents .p-lineup_block2 ul {
  line-height: 1.3;
  margin-top: 0.5em;
}

#contents .p-lineup_block2 ul li {
  padding-left: 1em;
  position: relative;
}

#contents .p-lineup_block2 ul li:before {
  content: '';
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 0.85em;
  height: 0.85em;
  background: currentColor;
}

#contents .p-lineup_block2 ul + * {
  margin-top: 1em;
}

#contents .p-lineup_block2 .c-btn {
  margin-top: 2em;
}

#contents .p-lineup_block2.js-scroll > * {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

#contents .p-lineup_block2.js-scroll > *:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#contents .p-lineup_block2.js-scroll > *:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#contents .p-lineup_block2.js-scroll > *:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#contents .p-lineup_block2.js-scroll > *:nth-child(4) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#contents .p-lineup_block2.js-scroll > *:nth-child(5) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#contents .p-lineup_block2.is-scroll > * {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (min-width: 801px) {
  #contents .p-lineup_block2 .s {
    font-size: 80%;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #contents .p-lineup_block2 {
    font-size: 2vw;
  }
  #contents .p-lineup_block2 h3 {
    font-size: 3vw;
  }
}

@media screen and (max-width: 800px) {
  #contents .p-lineup {
    padding-top: 13%;
  }
  #contents .p-lineup .c-frameWrapper {
    margin-top: 6%;
  }
  #contents .p-lineup_block1 {
    padding-top: 128%;
  }
  #contents .p-lineup_block1 .bg {
    top: -14%;
    width: 115.35%;
  }
  #contents .p-lineup_block1 .hex1 {
    top: 1.5%;
    left: -1.5%;
    width: 41.4%;
  }
  #contents .p-lineup_block1 .hex2 {
    top: 74.5%;
    right: 4%;
    width: 41.4%;
  }
  #contents .p-lineup_block1 .paint1 {
    top: 15.2%;
    left: -6.9%;
    width: 95.7%;
  }
  #contents .p-lineup_block1 .paint2 {
    top: -11.5%;
    right: -9.4%;
    width: 48%;
  }
  #contents .p-lineup_block1 .name {
    top: 4%;
    right: 3.2%;
    width: 57.5%;
  }
  #contents .p-lineup_block1 .img1 {
    top: 16.8%;
    left: -5.5%;
    width: 84%;
  }
  #contents .p-lineup_block1 .img2 {
    top: 49.2%;
    right: -9.7%;
    width: 48.3%;
  }
  #contents .p-lineup_block2 {
    font-size: 3vw;
    line-height: 1.3;
    padding: 0 4% 9%;
  }
  #contents .p-lineup_block2 h3 {
    font-size: 4vw;
    padding-bottom: 0.5em;
  }
  #contents .p-lineup_block2 ul {
    margin-top: 1em;
  }
  #contents .p-lineup_block2 ul + * {
    margin-top: 1.5em;
  }
}

#contents .p-itemLineup {
  padding-top: 120px;
}

#contents .p-itemLineup h3 {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 40px 0 15px;
  background: -webkit-gradient(linear, right top, left top, from(#0047b1), to(#00badc));
  background: linear-gradient(-90deg, #0047b1, #00badc);
  -webkit-mask-image: linear-gradient(-45deg, transparent 42px, #000 42px);
          mask-image: linear-gradient(-45deg, transparent 42px, #000 42px);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 30px;
  color: #fff;
}

#contents .p-itemLineup h3:after {
  content: '';
  position: absolute;
  top: 0;
  right: 2%;
  bottom: 0;
  margin: auto;
  width: 216px;
  aspect-ratio: 1 / 0.7465;
  background: url(../images/heading_hex.png) no-repeat center/cover;
}

#contents .p-itemLineup h3 img {
  margin-top: 5px;
  max-height: 80%;
}

#contents .p-itemLineup h3.js-scroll {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

#contents .p-itemLineup h3.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contents .p-itemLineup_block {
  margin-top: 50px;
}

#contents .p-itemLineup_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 3.26%;
  margin-top: 30px;
  color: #fff;
}

#contents .p-itemLineup_list > li {
  width: 31.16%;
  position: relative;
}

#contents .p-itemLineup_list > li:hover > figure img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

#contents .p-itemLineup_list > li.nodetail:hover > figure img {
  -webkit-transform: none;
          transform: none;
}

#contents .p-itemLineup_list figure {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #19219a), color-stop(53%, #00b8f4), color-stop(76%, #c1d4e2));
  background: linear-gradient(#19219a 10%, #00b8f4 53%, #c1d4e2 76%);
  border: 1px solid #0056d8;
  overflow: hidden;
}

#contents .p-itemLineup_list figure img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

#contents .p-itemLineup_list figure + * {
  margin-top: 0.75em;
}

#contents .p-itemLineup_list .name {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 0.75em;
  position: relative;
}

#contents .p-itemLineup_list .name:before, #contents .p-itemLineup_list .name:after {
  content: '';
  position: absolute;
}

#contents .p-itemLineup_list .name:before {
  left: 0;
  bottom: 0;
  width: 100px;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#115ac4), to(#0f6fcb));
  background: linear-gradient(90deg, #115ac4, #0f6fcb);
}

#contents .p-itemLineup_list .name:after {
  left: 100px;
  bottom: 3px;
  width: calc(100% - 100px);
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#0f6fcb), to(#00f0f3));
  background: linear-gradient(90deg, #0f6fcb, #00f0f3);
}

#contents .p-itemLineup_list .name + * {
  margin-top: 0.75em;
}

#contents .p-itemLineup_list .date {
  color: #43d8ff;
}

#contents .p-itemLineup_list .notice {
  color: #ffe400;
}

#contents .p-itemLineup_list.js-scroll > li {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
}

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

#contents .p-itemLineup [data-modal] {
  cursor: pointer;
}

#contents .p-itemLineup [data-modal] a {
  pointer-events: none;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #contents .p-itemLineup_list .name {
    font-size: 1.66vw;
  }
}

@media screen and (max-width: 800px) {
  #contents .p-itemLineup {
    padding-top: 13%;
  }
  #contents .p-itemLineup h3 {
    font-size: 5.5vw;
    height: auto;
    aspect-ratio: 1 / 0.1086;
    -webkit-mask-image: linear-gradient(-45deg, transparent 7vw, #000 7vw);
            mask-image: linear-gradient(-45deg, transparent 7vw, #000 7vw);
  }
  #contents .p-itemLineup h3 img {
    margin-top: 0.5vw;
  }
  #contents .p-itemLineup h3:after {
    width: 30%;
  }
  #contents .p-itemLineup_list {
    gap: 8vw 4%;
  }
  #contents .p-itemLineup_list > li {
    width: 48%;
  }
  #contents .p-itemLineup_list .name {
    font-size: 3.5vw;
  }
}

#contents .p-gimmick {
  padding-top: 90px;
}

#contents .p-gimmick .c-frameWrapper {
  margin-top: 45px;
}

#contents .p-gimmick .c-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#contents .p-gimmick .c-frame_inner {
  opacity: 0.85;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #020765), color-stop(50%, #06befa), color-stop(90%, #020765));
  background: linear-gradient(90deg, #020765 10%, #06befa 50%, #020765 90%);
}

#contents .p-gimmick .c-frame_dec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

#contents .p-gimmick .c-frame_dec .dec1 {
  position: absolute;
  top: 10px;
  left: -22px;
  width: 32%;
}

#contents .p-gimmick_block1 {
  padding: 45px 80px 0;
  position: relative;
}

#contents .p-gimmick_block1 .detail {
  position: relative;
  padding-top: 71%;
}

#contents .p-gimmick_block1 .detail img {
  width: 100%;
  max-width: none;
}

#contents .p-gimmick_block1 .detail > * {
  position: absolute;
}

#contents .p-gimmick_block1 .bg {
  top: 5.1%;
  left: -7.3%;
  z-index: -1;
  width: 114.9%;
}

#contents .p-gimmick_block1 .txt {
  top: 5.4%;
  right: -1.9%;
  width: 45.57%;
}

#contents .p-gimmick_block1 .paint1 {
  top: 19%;
  left: 3.7%;
  width: 45.38%;
}

#contents .p-gimmick_block1 .paint2 {
  top: 19%;
  left: 41.7%;
  width: 63.26%;
}

#contents .p-gimmick_block1 .img1 {
  top: 5.6%;
  left: -10.4%;
  width: 72.3%;
}

#contents .p-gimmick_block1 .img2 {
  top: 12.2%;
  left: 56.3%;
  width: 44.52%;
}

#contents .p-gimmick_block1.js-scroll .bg {
  -webkit-transition: 1s ease 1.2s;
  transition: 1s ease 1.2s;
  opacity: 0;
}

#contents .p-gimmick_block1.js-scroll .txt {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents .p-gimmick_block1.js-scroll .paint1 {
  -webkit-transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 0.6s;
  transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 0.6s;
  opacity: 0;
  -webkit-transform: translate(20%, -20%);
          transform: translate(20%, -20%);
}

#contents .p-gimmick_block1.js-scroll .img1 {
  -webkit-transition: 0.6s ease 0.8s;
  transition: 0.6s ease 0.8s;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

#contents .p-gimmick_block1.js-scroll .paint2 {
  -webkit-transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 1s;
  transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 1s;
  opacity: 0;
  -webkit-transform: translate(-20%, 20%);
          transform: translate(-20%, 20%);
}

#contents .p-gimmick_block1.js-scroll .img2 {
  -webkit-transition: 0.6s ease 1.2s;
  transition: 0.6s ease 1.2s;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

#contents .p-gimmick_block1.is-scroll .txt, #contents .p-gimmick_block1.is-scroll .paint1, #contents .p-gimmick_block1.is-scroll .img1, #contents .p-gimmick_block1.is-scroll .paint2, #contents .p-gimmick_block1.is-scroll .img2, #contents .p-gimmick_block1.is-scroll .bg {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

#contents .p-gimmick_block2 {
  padding: 0 80px;
  position: relative;
  overflow: hidden;
}

#contents .p-gimmick_block2 .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

#contents .p-gimmick_block2 .inner img {
  width: 100%;
  max-width: none;
}

#contents .p-gimmick_block2 .inner > * {
  position: absolute;
}

#contents .p-gimmick_block2 .detail {
  position: relative;
  padding-top: 50%;
}

#contents .p-gimmick_block2 .detail img {
  width: 100%;
  max-width: none;
}

#contents .p-gimmick_block2 .detail > * {
  position: absolute;
}

#contents .p-gimmick_block2 .bg {
  top: 7.2%;
  right: 0;
  width: 104.08%;
}

#contents .p-gimmick_block2 .txt {
  top: 7.4%;
  left: -1.1%;
  width: 54.52%;
}

#contents .p-gimmick_block2 .paint1 {
  top: -0.3%;
  left: 45.9%;
  width: 30.86%;
}

#contents .p-gimmick_block2 .img1 {
  top: 22.9%;
  left: -1.6%;
  width: 56.92%;
}

#contents .p-gimmick_block2 .img2 {
  top: 10.2%;
  left: 54.8%;
  width: 61.34%;
}

#contents .p-gimmick_block2.js-scroll .bg {
  -webkit-transition: 1s ease 1s;
  transition: 1s ease 1s;
  opacity: 0;
}

#contents .p-gimmick_block2.js-scroll .txt {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents .p-gimmick_block2.js-scroll .paint1 {
  -webkit-transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 0.8s;
  transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 0.8s;
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

#contents .p-gimmick_block2.js-scroll .img1 {
  -webkit-transition: 1s ease 0.6s;
  transition: 1s ease 0.6s;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#contents .p-gimmick_block2.js-scroll .img2 {
  -webkit-transition: 1s ease 1s;
  transition: 1s ease 1s;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

#contents .p-gimmick_block2.is-scroll .txt, #contents .p-gimmick_block2.is-scroll .paint1, #contents .p-gimmick_block2.is-scroll .img1, #contents .p-gimmick_block2.is-scroll .img2, #contents .p-gimmick_block2.is-scroll .bg {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

#contents .p-gimmick_block3 {
  padding: 0 80px;
  position: relative;
  overflow: hidden;
}

#contents .p-gimmick_block3 .detail {
  position: relative;
  padding-top: 96.7%;
}

#contents .p-gimmick_block3 .detail img {
  width: 100%;
  max-width: none;
}

#contents .p-gimmick_block3 .detail > * {
  position: absolute;
}

#contents .p-gimmick_block3 .bg {
  top: 0.3%;
  left: 12%;
  z-index: -1;
  width: 71.15%;
}

#contents .p-gimmick_block3 .paint1 {
  top: 6.3%;
  left: 15.8%;
  width: 73.94%;
}

#contents .p-gimmick_block3 .img1 {
  top: 7.3%;
  left: 7.9%;
  width: 67.5%;
}

#contents .p-gimmick_block3 .form1 {
  top: 3.4%;
  left: 1.2%;
  width: 29.9%;
}

#contents .p-gimmick_block3 .form2 {
  top: 3.4%;
  left: 69.6%;
  width: 29.9%;
}

#contents .p-gimmick_block3 .form3 {
  top: 58.2%;
  left: -1.3%;
  width: 29.9%;
}

#contents .p-gimmick_block3 .form4 {
  top: 36.2%;
  left: 69.8%;
  width: 33.65%;
}

#contents .p-gimmick_block3.js-scroll .bg {
  -webkit-transition: 1s ease 1.4s;
  transition: 1s ease 1.4s;
  opacity: 0;
}

#contents .p-gimmick_block3.js-scroll .paint1 {
  -webkit-transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 0.3s;
  transition: 0.3s cubic-bezier(0, 1, 0.5, 1) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

#contents .p-gimmick_block3.js-scroll .img1 {
  -webkit-transition: 1s ease 0.5s;
  transition: 1s ease 0.5s;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#contents .p-gimmick_block3.js-scroll .form1, #contents .p-gimmick_block3.js-scroll .form2, #contents .p-gimmick_block3.js-scroll .form3, #contents .p-gimmick_block3.js-scroll .form4 {
  -webkit-transition: 1s linear;
  transition: 1s linear;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents .p-gimmick_block3.js-scroll .form1 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#contents .p-gimmick_block3.js-scroll .form2 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#contents .p-gimmick_block3.js-scroll .form3 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

#contents .p-gimmick_block3.js-scroll .form4 {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

#contents .p-gimmick_block3.is-scroll .paint1, #contents .p-gimmick_block3.is-scroll .img1, #contents .p-gimmick_block3.is-scroll .form1, #contents .p-gimmick_block3.is-scroll .form2, #contents .p-gimmick_block3.is-scroll .form3, #contents .p-gimmick_block3.is-scroll .form4, #contents .p-gimmick_block3.is-scroll .bg {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

@media screen and (max-width: 1220px) {
  #contents .p-gimmick_block1 {
    padding: 45px 6vw 0;
  }
  #contents .p-gimmick_block2 {
    padding: 0 6vw;
  }
  #contents .p-gimmick_block3 {
    padding: 0 6vw;
  }
}

@media screen and (max-width: 800px) {
  #contents .p-gimmick {
    padding-top: 10%;
  }
  #contents .p-gimmick .c-frameWrapper {
    margin-top: 6%;
  }
  #contents .p-gimmick .c-frame_dec .dec1 {
    top: 0.2%;
    left: -2.3%;
    width: 41.7%;
  }
  #contents .p-gimmick_block1 {
    padding-top: 7%;
  }
  #contents .p-gimmick_block1 .detail {
    padding-top: 202.5%;
  }
  #contents .p-gimmick_block1 .bg {
    top: 5.8%;
    left: -0.6%;
    width: 103.25%;
  }
  #contents .p-gimmick_block1 .txt {
    top: 48.4%;
    right: auto;
    left: -2%;
    width: 59%;
  }
  #contents .p-gimmick_block1 .paint1 {
    top: 9.2%;
    left: 16.2%;
    width: 71.4%;
  }
  #contents .p-gimmick_block1 .paint2 {
    top: 57.1%;
    left: -0.5%;
    width: 98.7%;
  }
  #contents .p-gimmick_block1 .img1 {
    top: 1.8%;
    left: -5.4%;
    width: 113.1%;
  }
  #contents .p-gimmick_block1 .img2 {
    top: 53.5%;
    left: 22.2%;
    width: 69.5%;
  }
  #contents .p-gimmick_block2 .detail {
    padding-top: 131.5%;
  }
  #contents .p-gimmick_block2 .txt {
    top: 2.7%;
    left: -2.7%;
    width: 71%;
  }
  #contents .p-gimmick_block2 .paint1 {
    top: 41%;
    left: -4%;
    width: 48.3%;
  }
  #contents .p-gimmick_block2 .img1 {
    top: 7.9%;
    left: 1.8%;
    width: 89%;
  }
  #contents .p-gimmick_block2 .img2 {
    top: 47.2%;
    left: 9.8%;
    width: 96%;
  }
  #contents .p-gimmick_block3 .detail {
    padding-top: 114%;
  }
  #contents .p-gimmick_block3 .bg {
    top: -0.3%;
    left: 7.3%;
    width: 82%;
  }
  #contents .p-gimmick_block3 .paint1 {
    top: 5.4%;
    left: 11.3%;
    width: 85.5%;
  }
  #contents .p-gimmick_block3 .img1 {
    top: 6.3%;
    left: 2.4%;
    width: 78%;
  }
  #contents .p-gimmick_block3 .form1 {
    top: 2.6%;
    left: -4.8%;
    width: 34.7%;
  }
  #contents .p-gimmick_block3 .form2 {
    top: 2.7%;
    left: 70.2%;
    width: 34.5%;
  }
  #contents .p-gimmick_block3 .form3 {
    top: 56.2%;
    left: -4.8%;
    width: 34.6%;
  }
  #contents .p-gimmick_block3 .form4 {
    top: 36.5%;
    left: 65.8%;
    width: 38.8%;
  }
}

#contents .p-animation {
  position: relative;
  padding-bottom: 220px;
}

#contents .p-animation .title {
  position: absolute;
  top: -68px;
  left: 40px;
  margin: auto;
  z-index: 10;
}

#contents .p-animation .title.js-scroll {
  -webkit-transition: 0.7s ease 0.3s;
  transition: 0.7s ease 0.3s;
  opacity: 0;
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents .p-animation .title.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

@media screen and (min-width: 801px) and (max-width: 1500px) {
  #contents .p-animation .title {
    top: -4.5vw;
    width: 43.26%;
  }
}

@media screen and (max-width: 800px) {
  #contents .p-animation {
    padding-bottom: 19vw;
  }
  #contents .p-animation .title {
    top: -6.6vw;
    left: 2vw;
    width: 77.8%;
  }
}

#contents .p-introduction {
  padding-top: 107px;
  position: relative;
}

#contents .p-introduction:before {
  content: '';
  position: absolute;
  top: -45px;
  right: 18px;
  width: 384px;
  aspect-ratio: 1 / 0.7473;
  background: url(../images/animation_hex.png) no-repeat center/contain;
  z-index: -1;
}

#contents .p-introduction .widthWrapper {
  max-width: 1020px;
}

#contents .p-introduction_block1 {
  margin-top: 60px;
}

#contents .p-introduction_block1 .detail {
  font-size: 20px;
  line-height: 1.94;
  color: #fff;
}

#contents .p-introduction_block1 .detail img {
  margin-bottom: 33px;
}

#contents .p-introduction_block1 .detail p:not(:first-child) {
  margin-top: 1em;
}

#contents .p-introduction_block1.js-scroll .img {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

#contents .p-introduction_block1.js-scroll .detail {
  -webkit-transition: 1s ease 0.6s;
  transition: 1s ease 0.6s;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

#contents .p-introduction_block1.is-scroll .img, #contents .p-introduction_block1.is-scroll .detail {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (min-width: 801px) {
  #contents .p-introduction_block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #contents .p-introduction_block1 .img {
    width: 44.5%;
  }
  #contents .p-introduction_block1 .detail {
    width: 51.5%;
    margin-top: -8px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #contents .p-introduction_block1 .detail {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 800px) {
  #contents .p-introduction {
    padding-top: 12%;
  }
  #contents .p-introduction:before {
    top: 13px;
    right: 14px;
    width: 38.4vw;
  }
  #contents .p-introduction .widthWrapper {
    padding-left: 8%;
    padding-right: 8%;
  }
  #contents .p-introduction_block1 {
    margin-top: 6%;
  }
  #contents .p-introduction_block1 .detail {
    margin-top: 2.2em;
    font-size: max(3vw,14px);
    line-height: 1.33;
  }
  #contents .p-introduction_block1 .detail p:not(:first-child) {
    margin-top: 1.3em;
  }
}

#contents .p-character {
  padding-top: 95px;
  position: relative;
}

#contents .p-character:before {
  content: '';
  position: absolute;
  top: -40px;
  right: 18px;
  width: 384px;
  aspect-ratio: 1 / 0.7473;
  background: url(../images/animation_hex.png) no-repeat center/contain;
  z-index: -1;
}

#contents .p-character .widthWrapper {
  max-width: 1020px;
}

#contents .p-character_block1 {
  margin-top: 60px;
  color: #fff;
}

#contents .p-character_block1 .c-btn {
  margin-top: 60px;
}

#contents .p-character_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;
}

#contents .p-character_list figcaption {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: 100%;
  aspect-ratio: 1 / 0.13071;
  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;
}

#contents .p-character_list figcaption.red {
  background: url(../images/character_nameBg01.png) no-repeat left top/contain;
}

#contents .p-character_list figcaption.purple {
  background: url(../images/character_nameBg02.png) no-repeat left top/contain;
}

#contents .p-character_list figcaption.blue {
  background: url(../images/character_nameBg03.png) no-repeat left top/contain;
}

#contents .p-character_list p {
  margin-top: 0.75em;
  line-height: 1.65;
}

#contents .p-character_list.js-scroll > li {
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

#contents .p-character_list.js-scroll > li:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#contents .p-character_list.js-scroll > li:nth-child(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#contents .p-character_list.js-scroll > li:nth-child(3) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

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

@media screen and (min-width: 801px) {
  #contents .p-character_list > li {
    width: 30%;
  }
  #contents .p-character_list > li:not(:nth-child(3n+1)) {
    margin-left: 5%;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #contents .p-character_list figcaption {
    font-size: 1.96vw;
  }
}

@media screen and (max-width: 800px) {
  #contents .p-character {
    padding-top: 8%;
  }
  #contents .p-character:before {
    top: 13px;
    right: 14px;
    width: 38.4vw;
  }
  #contents .p-character_block1 {
    margin-top: 5%;
  }
  #contents .p-character_list figcaption {
    font-size: 3vw;
  }
  #contents .p-character_list p {
    line-height: 1.45;
    margin-top: 1em;
    margin-right: -0.1em;
  }
  #contents .p-character_list > li {
    width: 46.64%;
  }
  #contents .p-character_list > li:not(:nth-child(2n+1)) {
    margin-left: 6.72%;
  }
  #contents .p-character_list > li:nth-child(n+3) {
    margin-top: 6%;
  }
}

#contents .p-others {
  position: relative;
}

#contents .p-others .title {
  position: absolute;
  top: -48px;
  left: 50px;
  margin: auto;
  z-index: 10;
}

#contents .p-others .title.js-scroll {
  -webkit-transition: 0.7s ease 0.3s;
  transition: 0.7s ease 0.3s;
  opacity: 0;
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contents .p-others .title.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

@media screen and (min-width: 801px) and (max-width: 1500px) {
  #contents .p-others .title {
    top: -4.5vw;
    width: 26.74%;
  }
}

@media screen and (max-width: 800px) {
  #contents .p-others .title {
    top: -6vw;
    left: 2vw;
    width: 48%;
  }
}

#contents .p-links {
  padding-top: 110px;
}

#contents .p-links .widthWrapper {
  max-width: 1040px;
}

#contents .p-links_block1 {
  margin-top: 60px;
}

@media screen and (min-width: 801px) {
  #contents .p-links_block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #contents .p-links_block1 .item {
    width: 48.07%;
  }
}

@media screen and (max-width: 800px) {
  #contents .p-links {
    padding-top: 12%;
  }
  #contents .p-links .widthWrapper {
    max-width: 662px;
  }
  #contents .p-links_block1 {
    margin-top: 45px;
  }
  #contents .p-links_block1 .item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  #contents .p-links_block1 .item:not(:first-child) {
    margin-top: 8%;
  }
}

#contents .contentsFooter {
  padding: 85px 0 55px;
  font-size: 14px;
}

#contents .contentsFooter #totop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
}

#contents .contentsFooter .copyright {
  text-align: center;
}

#contents .contentsFooter .notes {
  text-align: center;
  margin-top: 1em;
}

@media screen and (max-width: 800px) {
  #contents .contentsFooter {
    padding: 9% 0 6%;
    font-size: max(2vw,12px);
  }
  #contents .contentsFooter #totop {
    max-width: 10vw;
  }
}

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

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

#contents .c-modal_close {
  position: absolute;
  top: -3em;
  right: 0;
  width: 2.5em;
  height: 2.5em;
  cursor: pointer;
  z-index: 303;
}

#contents .c-modal_close:before, #contents .c-modal_close:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 0.15em;
  background: #fff;
}

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

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

#contents .c-modal_inner {
  width: 96%;
  max-width: 600px;
  max-height: calc(90vh - 5em);
  overflow: auto;
  padding: 1.5em;
  margin: 0 auto;
  border: 2px solid;
  -o-border-image: var(--gradient) 2;
     border-image: var(--gradient) 2;
  background: rgba(8, 28, 119, 0.3);
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contents .c-modal_inner::-webkit-scrollbar {
  width: 6px;
  background-color: none;
}

#contents .c-modal_inner::-webkit-scrollbar-thumb {
  background-color: var(--subcolor);
  border-radius: 4px;
}

#contents .c-modal_inner .title {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 0.25em;
  position: relative;
  border-bottom: 2px solid currentColor;
}

#contents .c-modal_inner .title:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  margin: auto;
  width: 25%;
  height: 5px;
  background: currentColor;
}

#contents .c-modal_inner .price {
  margin-top: 1em;
}

#contents .c-modal_inner .ages {
  margin-top: 1em;
}

#contents .c-modal_inner .notes {
  font-size: 85%;
  margin-top: 1em;
}

#contents .c-modal_inner .notes > li {
  padding-left: 1.25em;
  position: relative;
}

#contents .c-modal_inner .notes > li:before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}

#contents .c-modal_inner .detail {
  font-size: 85%;
  margin-top: 1em;
}

#contents .c-modal iframe {
  width: 1000px;
  max-width: 90vw;
  aspect-ratio: 1 / 0.5625;
}

#contents .c-modal .lineupSlideMain {
  position: relative;
  margin: 1em auto;
}

#contents .c-modal .lineupSlideMain > li {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #19219a), color-stop(53%, #00b8f4), color-stop(76%, #c1d4e2));
  background: linear-gradient(#19219a 10%, #00b8f4 53%, #c1d4e2 76%);
  border: 1px solid #0056d8;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contents .c-modal .lineupSlideMain > li:not(.active) {
  position: absolute;
  opacity: 0;
}

#contents .c-modal .lineupSlideMain > li img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#contents .c-modal .lineupSlideThumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}

#contents .c-modal .lineupSlideThumb > li {
  width: calc(calc(100% - 45px) / 10);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #19219a), color-stop(53%, #00b8f4), color-stop(76%, #c1d4e2));
  background: linear-gradient(#19219a 10%, #00b8f4 53%, #c1d4e2 76%);
  cursor: pointer;
}

#contents .c-modal .lineupSlideThumb > li.active {
  outline: 2px solid var(--maincolor);
}

@media screen and (max-width: 800px) {
  #contents .c-modal_inner .title {
    font-size: 3.5vw;
  }
  #contents .c-modal_inner .notes {
    font-size: 90%;
  }
  #contents .c-modal_inner .detail {
    font-size: 90%;
  }
  #contents .c-modal .lineupSlideThumb > li {
    width: calc(calc(100% - 20px) / 5);
  }
}

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

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

.js-scroll.fadeInFlip {
  opacity: 0;
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
}

.js-scroll.is-scroll.fadeInUp {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.js-scroll.is-scroll.fadeInFlip {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

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