/* font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&display=swap");
/*==================================
 setting
===================================*/
/* @include config.fontFamily01(normal, .1rem); */
/* @include config.fontsize(18px, 18px, 3rem); */
* {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

html {
  width: 100%;
  font-size: 62.5%;
}

@media screen and (max-width: 1024px) {
  html.-sp {
    font-size: 0.9765625vw;
  }
}
@media screen and (max-width: 980px) {
  html.-sp {
    font-size: 1.0204081633vw;
  }
}

body {
  position: relative;
  min-width: 320px;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  line-height: 1.4;
  background-color: #d0e8ff;
  color: #fff;
  font-feature-settings: "palt";
}

img {
  max-width: 100%;
  height: auto;
}

a,
a:hover,
a:active {
  color: #fff;
}

a:visited {
  color: #fff;
}

a:focus {
  outline: none;
}

ul {
  list-style: none;
}

/*==================================
  animation
===================================*/
.d0 {
  animation-delay: 0s !important;
}

.d3 {
  animation-delay: 0.3s !important;
}

.d4 {
  animation-delay: 0.4s !important;
}

.d5 {
  animation-delay: 0.5s !important;
}

.d6 {
  animation-delay: 0.6s !important;
}

.d7 {
  animation-delay: 0.7s !important;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  transform-origin: 50% 50%;
  opacity: 0;
}

.animated:not(.-anime) {
  width: 100%;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-delay: 0.1s;
  animation: bounceIn 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

.moveLeft {
  animation: moveLeft 0.3s 0.3s both;
}

@keyframes moveLeft {
  0% {
    transform: translate(20px, 20px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.moveRight {
  animation: moveRight 0.3s 0.3s both;
}

@keyframes moveRight {
  0% {
    transform: translate(-20px, 20px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.moveRight02 {
  animation: moveRight02 0.3s 0.3s both;
}

@keyframes moveRight02 {
  0% {
    transform: translate(-40px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeIn-up {
  0% {
    -webkit-transform: translateZ(700px) translateY(10px);
    transform: translateZ(700px) translateY(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}
.fadeIn-up {
  animation: fadeIn-up 0.2s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fadeIn-b {
  0% {
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 0;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
.fadeIn-b {
  animation: fadeIn-b 0.25s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes fadeIn-large {
  0% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
.fadeIn-large {
  animation: fadeIn-large 0.5s cubic-bezier(0.17, 0.88, 0.3, 1.27) both;
}

@keyframes stamped {
  from {
    transform: scale3d(1.5, 1.5, 1.5);
    opacity: 0;
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
.stamped {
  animation-name: stamped;
  animation-duration: 0.3s;
}

/*==================================
  common
===================================*/
html:not(.-sp) .-hover01:hover {
  transform: translateY(2px);
}

img.lazyload {
  width: 100%;
}

.-onlyPc {
  display: block;
}

.-onlySp {
  display: none;
}

html.-sp .-onlyPc {
  display: none;
}
html.-sp .-onlySp {
  display: block;
}

.bodyBg {
  position: fixed;
  z-index: -3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-image: url(../images/body-bg.jpg);
}

html:not(.-sp) .bodyBg {
  min-width: 1024px;
}

.contentsWrapper {
  min-width: 1024px;
  overflow: hidden;
}

html.-sp .contentsWrapper {
  min-width: 100%;
}

.bodyWrapper {
  opacity: 0;
}

.secInner {
  position: relative;
  z-index: 0;
  width: 1024px;
  margin: auto;
}

html.-sp .secInner {
  width: 100%;
}

.dropShadow {
  filter: drop-shadow(0 2px 2px rgba(0, 10, 50, 0.5));
}

html.-sp .dropShadow {
  filter: drop-shadow(0 0.2rem 0.2rem rgba(0, 10, 50, 0.5));
}

/*==================================
  slick slider
===================================*/
.slick-dots li button:before {
  font-size: 30px;
}

.slick-dots li.slick-active button:before {
  color: #e60046;
}

.slick-dots {
  bottom: -22px;
}

/*==================================
  kvArea
===================================*/
.kvArea .secInner {
  position: relative;
  z-index: 0;
  width: 1024px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50% 0;
}
.kvArea .kvLogo {
  position: absolute;
  z-index: 1;
  top: 146px;
  left: 50%;
  max-width: 1024px;
  width: 100%;
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
}
.kvArea .kvLogo img {
  max-width: 585px;
  margin-left: -0.68359375%;
}

/*==== html:not(.-sp) ====*/
html:not(.-sp) .kvArea .secInner {
  background-image: url(../images/pc/kvArea-bg.png);
}

/*==== html.-sp ====*/
html.-sp .kvArea .secInner {
  width: 100%;
  background-image: url(../images/sp/kvArea-bg.png);
}
html.-sp .kvArea .kvLogo img {
  width: 87.7551020408%;
}

/*==================================
  main
===================================*/
main {
  position: relative;
  z-index: 0;
  padding-top: 65px;
  padding-bottom: 100px;
}
main:before, main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main:before {
  z-index: -1;
  background-image: url(../images/bg-pattern.png);
  background-repeat: repeat;
  background-size: 56px auto;
  opacity: 0.1;
}
main:after {
  z-index: -2;
  background-image: linear-gradient(0deg, rgba(51, 119, 183, 0.6) 0%, rgb(53, 90, 147) 50%, rgb(55, 60, 110) 100%);
}

.section {
  position: relative;
  z-index: 0;
  width: 1024px;
  margin: 0 auto 40px;
}
.section .secMainWrap {
  width: 91.796875%;
  margin: 0 auto 2rem;
  padding: 4rem 0 5rem;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
}
.section .secMainWrap .textWrap {
  margin: 0;
  text-align: center;
  padding: 0 4%;
}
.section .secMainWrap .banner {
  display: block;
  max-width: 640px;
  width: 68.1914893617%;
  margin: 5% auto 0;
}
.section .secMainWrap .banner.-shadow {
  box-shadow: 0 0.2rem 0.3rem rgba(0, 10, 50, 0.5);
}
.section .secMainWrap .commonButtonWrap {
  margin-top: 5%;
  text-align: center;
}
.section .secMainWrap .commonButtonWrap .commonButton {
  display: inline-block;
  padding: 2rem 3rem;
  border: 0.2rem solid #fff;
  border-radius: 5px 0 10px 0;
  text-decoration: none;
  box-shadow: 0 0.2rem 0.3rem rgba(0, 10, 50, 0.5);
  text-decoration: none;
}
.section .secMainWrap .commonButtonWrap .commonButton.-youtube {
  padding: 2rem 3rem;
  line-height: 0;
  background-color: #fe0000;
}
.section .secMainWrap .commonButtonWrap .commonButton.-youtube img {
  width: 4rem;
  margin-right: 1.5rem;
}
.section .secMainWrap .commonButtonWrap .commonButton.-youtube span {
  padding-top: 1.4rem;
}
.section .secBg {
  position: absolute;
  z-index: -1;
  display: flex;
  flex-flow: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section .secBg:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 91.796875%;
  height: calc(100% - 4rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section .secBg .bg01 img {
  width: 100%;
}
.section .secBg .bg02 {
  flex-grow: 1;
}

.section.-category03 .banner {
  margin: 0 auto;
}

.movieWrap {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: auto;
}
.movieWrap img {
  width: 100%;
}
.movieWrap:before, .movieWrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movieWrap:before {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
  transition: 0.3s background-color;
}
.movieWrap:hover:before {
  background-color: rgba(0, 0, 0, 0);
}
.movieWrap:after {
  z-index: 2;
  background-image: url(../images/movie-arrow.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 20%;
  filter: drop-shadow(0 0 0.4rem rgba(0, 0, 0, 0.5));
}

/*==== html.-sp ====*/
html.-sp main {
  padding-top: 10%;
  padding-bottom: 30%;
}
html.-sp main:before {
  background-size: 28px auto;
}
html.-sp .section {
  width: 100%;
}
html.-sp .section .secMainWrap {
  font-size: 3.2rem;
}
html.-sp .section .secMainWrap .banner {
  width: 80%;
}
html.-sp .section .secMainWrap .commonButtonWrap .commonButton {
  padding: 2.5rem 3rem;
}
html.-sp .section .secMainWrap .commonButtonWrap .commonButton.-youtube {
  padding: 2.5rem 3rem;
}
html.-sp .section .secMainWrap .commonButtonWrap .commonButton.-youtube img {
  width: 6rem;
}

/*==================================
  section
===================================*/
.secTitle {
  margin: auto;
}

.gameArea .secTitle {
  width: 100%;
  text-align: center;
}
.gameArea .boxArea {
  display: flex;
  justify-content: space-between;
}
.gameArea .boxArea .boxWrap {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 35px auto 0;
  border-radius: 6px;
  background-color: #e4eef8;
  overflow: hidden;
  filter: drop-shadow(0 0 2px #b8e2ff);
  box-shadow: 0 0 0 1px #84bbf1;
}
.gameArea .boxArea .boxWrap:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 100%;
  width: 252px;
  padding-top: 252px;
  background-image: url(../images/gameArea-box-deco.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  transform: translate(-66%, -63%);
}
.gameArea .boxArea .boxUpper {
  position: relative;
  z-index: 0;
  padding-top: 100px;
  background-image: linear-gradient(180deg, #566095 0%, #566095 50%, #3b4787 100%);
  overflow: hidden;
}
.gameArea .boxArea .boxUpper:before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 77%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/gameArea-boxUpper-bg.png);
  background-position: 0 0;
}
.gameArea .boxArea .boxUpper .boxTitle {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 90px;
  transform: translate(-50%, -48%);
  text-align: center;
}
.gameArea .boxArea .boxUpper .boxTitle img {
  height: 100%;
}
.gameArea .boxArea .boxMain {
  padding: 25px 0;
}
.gameArea .boxArea .image {
  display: block;
  margin: auto;
}
.gameArea .boxArea .textWrap {
  margin-top: 15px;
  font-size: 16px;
  color: #373c6e;
  text-align: center;
  filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff);
  font-weight: bolder;
  transform: translateZ(0);
}
.gameArea .boxArea .textWrap strong {
  position: relative;
  z-index: 0;
  color: #e60046;
}
.gameArea .boxArea .textWrap strong:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 1px;
  height: 7px;
  width: 100%;
  background-color: #fdf076;
}

/*==== html.-sp ====*/
html.-sp .gameArea .boxArea {
  display: block;
}
html.-sp .gameArea .boxArea .boxWrap {
  width: 95.9183673469%;
  margin: 8% auto 0;
}
html.-sp .gameArea .boxArea .boxWrap:before {
  width: 58.2978723404%;
  padding-top: 100%;
  transform: translate(-66%, -37%);
}
html.-sp .gameArea .boxArea .boxUpper {
  padding-top: 24.0425531915%;
}
html.-sp .gameArea .boxArea .boxUpper:before {
  bottom: 72%;
  background-size: 200% auto;
}
html.-sp .gameArea .boxArea .boxUpper .boxTitle {
  height: 20rem;
}
html.-sp .gameArea .boxArea .boxMain {
  padding: 8% 0 14%;
}
html.-sp .gameArea .boxArea .textWrap {
  margin-top: 5%;
  filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff) drop-shadow(0 0 1px #fff);
  font-size: 4rem;
}
html.-sp .gameArea .boxArea .textWrap strong:before {
  bottom: 0.2rem;
  height: 1.6rem;
}/*# sourceMappingURL=common02.css.map */