@charset "UTF-8";

/* 究極のパフォーマンス info
------------------------------*/
.c5-m92-info {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(60, 40, 0, .7);
  width: 100%;
  height: 100vh;
}
.c5-m92-info__container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.c5-m92-info__container::before, .c5-m92-info__container::after {
  content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 14px;
  background: url(../../assets/img/info-bg--repeat.svg) repeat-x center left / contain;
}
.c5-m92-info__container::before {top: 0;}
.c5-m92-info__container::after {bottom: 0;}

.c5-m92-info .c5-m92-info__textarea {
  width: calc(914 / 1920 * 100vw);
}
.c5-m92-info .c5-m92-info__title {
  margin-bottom: calc(48 / 1920 * 100vw);
  /* opacity: 1; */
  opacity: 0;
  filter: blur(5px);
  transition: .85s ease-out;
}
.c5-m92-info.c5-active .c5-m92-info__title {
  opacity: 1;
  filter: blur(0);
}
.c5-m92-info .c5-m92-info__textwrap {
  margin-bottom: calc(48 / 1920 * 100vw);
  /* opacity: 1; */
  opacity: 0;
  filter: blur(5px);
  transition: .85s ease-out;
}
.c5-m92-info.c5-active .c5-m92-info__textwrap {
  opacity: 1;
  filter: blur(0);
}
.c5-m92-info .c5-m92-info__title small {
  display: inline-block;
  margin-bottom: calc(10 / 1920 * 100vw);
  color: #EDEAC6;
  font-size: calc(44 / 1920 * 100vw);
  line-height: 1.3;
}
.c5-m92-info .c5-m92-info__title span {
  display: inline-block;
  margin-left: calc(-7 / 1920 * 100vw);
}
.c5-m92-info .c5-m92-info__text {
  color: #FFFFFF;
  font-size: calc(28 / 1920 * 100vw);
}
.c5-m92-info .c5-m92-info__text:nth-child(n + 2) {
  margin-top: calc(24 / 1920 * 100vw);
}
.c5-m92-info .c5-m92-info__img {
  margin-left: auto;
  margin-right: 0;
  width: calc(640 / 1920 * 100vw);
  opacity: 0;
  filter: blur(5px);
  transition: .85s ease-out;
}
.c5-m92-info.c5-active .c5-m92-info__img {
  opacity: 1;
  filter: blur(0);
}

@media screen and (max-width: 768px) {
  .c5-m92-info__container {
    flex-direction: column;
    /* height: auto !important; */
    padding-top: calc(50 / 390 * 100vw);
    padding-bottom: calc(80 / 390 * 100vw);
  }
  .c5-m92-info .c5-m92-info__textarea {
    width: 100%;
  }
  .c5-m92-info .c5-m92-info__title {
    margin-bottom: calc(30 / 390 * 100vw);
    text-align: center;
  }
  .c5-m92-info .c5-m92-info__title small {
    width: 100%;
    margin: 0 auto calc(10 / 390 * 100vw);
    font-size: calc(20 / 390 * 100vw);
  }
  .c5-m92-info .c5-m92-info__title span {
    width: calc(314.22 / 390 * 100vw);
    margin: 0 auto;
  }
  .c5-m92-info .c5-m92-info__text {
    font-size: calc(16 / 390 * 100vw);
    text-align: center;
    line-height: 1.4;
  }
  .c5-m92-info .c5-m92-info__text:nth-child(n + 2) {
    margin-top: calc(24 / 390 * 100vw);
  }
  .c5-m92-info .c5-m92-info__img {
    display: none;
  }
}


/* main
------------------------------*/
.c5-main {overflow: hidden;}
.c5-m92-top,
.c5-m92-bottom {
  min-height: 100vh;
}

.c5-m92-main {
  position: relative;
  z-index: 10;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.c5-m92-main__black {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  /* overflow: hidden; */
  position: relative;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c5-m92-main::-webkit-scrollbar,
.c5-m92-main__black::-webkit-scrollbar {
  display: none;
}
/* 背景画像の設定 */
.c5-m92-block .c5-m92-block__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.c5-m92-block .c5-m92-block__bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200vh;
  height: 50vw;
  min-height: 100%;
  min-width: 100%;
}

.c5-m92-block .c5-m92-block__mask {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 104%;
  height: 100vh;
  min-height: 100%;
  min-width: 100%;
  background-color: rgba(000, 000, 000, .7);
  opacity: 0;
  transition: all 1s ease-out;
}
.c5-m92-block.c5-active .c5-m92-block__mask {
  transition-delay: .1s;
  opacity: 1;
}
.c5-m92-block .c5-m92-block__container {
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc(96 / 1920 * 100vw);
  color: #FFFFFF;
}
.c5-m92-block .c5-m92-block__container::after {
  content: '';
  position: absolute;
  top: calc(-128 / 1920 * 100vw);
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: calc(606 / 1920 * 100vw);
  height: calc(78 / 1920 * 100vw);
  opacity: 0;
  filter: blur(5px);
  transition: all .4s;
}
.c5-m92-block.c5-active .c5-m92-block__container::after {
  opacity: 1;
  filter: blur(0);
  transition-delay: .65s;
}
.c5-m92-block.c5-m92-block--01 {
  align-items: self-start;
  padding-top: calc(144 / 1920 * 100vw);
}
.c5-m92-block .c5-m92-block__container.c5-m92-block__container--01 {
  z-index: 2;
  position: relative;
  width: 100%;
}
.c5-m92-block .c5-m92-block__container.c5-m92-block__container--01 h2 small {
  display: block;
  font-size: calc(48 / 1920 * 100vw);
  line-height: 1.6;
  opacity: 0;
  transition: all .4s;
  transition-delay: .65s;
}
.c5-m92-block .c5-m92-block__container.c5-m92-block__container--01 h2 span {
  display: block;
  width: calc(1146 / 1920 * 100vw);
  transform: translateX(calc(-20 / 1920 * 100vw));
  opacity: 0;
  transition: all .4s;
  transition-delay: .65s;
}
.c5-m92-block.c5-active .c5-m92-block__container.c5-m92-block__container--01 h2 small {
  opacity: 1;
}
.c5-m92-block.c5-active .c5-m92-block__container.c5-m92-block__container--01 h2 span {
  opacity: 1;
}
.c5-m92-block .c5-m92-block__container--02::after {
  background: url(../../assets/img/snap-label--02.png) no-repeat center center / contain;
}
.c5-m92-block .c5-m92-block__container--03::after{
  background: url(../../assets/img/snap-label--03.png) no-repeat center center / contain;
}
.c5-m92-block .c5-m92-block__container--04::after {
  background: url(../../assets/img/snap-label--04.png) no-repeat center center / contain;
}
.c5-m92-block .c5-m92-block__container--05::after {
  background: url(../../assets/img/snap-label--05.png) no-repeat center center / contain;
}
.c5-m92-block .c5-m92-block__container .c5-m92-block__container-textarea,
.c5-m92-block .c5-m92-block__container figure {
  width: calc((100% - (48 / 1920 * 100vw)) / 2);
}
.c5-m92-block .c5-m92-block__container figure {
  opacity: 0;
  transition: all .4s;
}
.c5-m92-block.c5-active .c5-m92-block__container figure {
  opacity: 1;
  transition-delay: .85s;
}
.c5-m92-block .c5-m92-block__container .c5-m92-block__container-textarea h2 {
  z-index: 2;
  position: relative;
  margin-bottom: calc(40 / 1920 * 100vw);
  font-size: calc(56 / 1920 * 100vw);
  line-height: 1.25;
  opacity: 0;
  filter: blur(5px);
  transition: all .4s;
}
.c5-m92-block.c5-active .c5-m92-block__container .c5-m92-block__container-textarea h2 {
  opacity: 1;
  filter: blur(0);
  transition-delay: .65s;
}
.c5-m92-block .c5-m92-block__container .c5-m92-block__container-textarea h2::after {
  content: '';
  z-index: 0;
  position: absolute;
  top: calc(-90 / 1920 * 100vw);
  left: 0;
  display: inline-block;
  width: calc(280 / 1920 * 100vw);
  height: calc(280 / 1920 * 100vw);
  background: url(../../assets/img/snap-title--bg.svg) no-repeat center center / contain;
}
.c5-m92-block .c5-m92-block__container .c5-m92-block__container-textarea p {
  font-size: calc(20 / 1920 * 100vw);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  filter: blur(5px);
  transition: all .4s;
}
.c5-m92-block.c5-active .c5-m92-block__container .c5-m92-block__container-textarea p {
  opacity: 1;
  filter: blur(0);
  transition-delay: .65s;
}
@media screen and (max-width: 768px) {
  .c5-m92-block {
    align-items: flex-start;
    padding-top: calc(150 / 390 * 100vw);
  }
  .c5-m92-block .c5-m92-block__bg img {
    width: 56.8513119533528vh;
    height: 175.8974358974359vw;
  }
  .c5-m92-block .c5-m92-block__container {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
  .c5-m92-block .c5-m92-block__container::after {
    top: calc(-50 / 390 * 100vw);
    width: calc(320 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
  }
  .c5-m92-block.c5-m92-block--01 {
    align-items: center;
    padding-top: 0;
  }
  .c5-m92-block .c5-m92-block__container.c5-m92-block__container--01 {
    align-items: flex-start;
    padding-left: calc(16 / 390 * 100vw);
  }
  .c5-m92-block .c5-m92-block__container.c5-m92-block__container--01 h2 small {
    font-size: calc(16 / 390 * 100vw);
  }
  .c5-m92-block .c5-m92-block__container.c5-m92-block__container--01 h2 span {
    width: calc(306 / 390 * 100vw);
  }
  .c5-m92-block .c5-m92-block__container--02::after {
    background: url(../../assets/img/snap-label--02_sp.png) no-repeat center center / contain;
  }
  .c5-m92-block .c5-m92-block__container--03::after{
    background: url(../../assets/img/snap-label--03_sp.png) no-repeat center center / contain;
  }
  .c5-m92-block .c5-m92-block__container--04::after {
    background: url(../../assets/img/snap-label--04_sp.png) no-repeat center center / contain;
  }
  .c5-m92-block .c5-m92-block__container--05::after {
    background: url(../../assets/img/snap-label--05_sp.png) no-repeat center center / contain;
  }
  .c5-m92-block .c5-m92-block__container .c5-m92-block__container-textarea,
  .c5-m92-block .c5-m92-block__container figure {
    width: 100%;
  }
  .c5-m92-block .c5-m92-block__container figure {
    z-index: 2;
    position: relative;
    width: 100%;
    margin-bottom: calc(12 / 390 * 100vw);
  }
  .c5-m92-block .c5-m92-block__container .c5-m92-block__container-textarea h2 {
    margin-bottom: calc(12 / 390 * 100vw);
    padding: calc(30 / 390 * 100vw) calc(16 / 390 * 100vw) 0;
    font-size: calc(22 / 390 * 100vw);
  }
  .c5-m92-block .c5-m92-block__container .c5-m92-block__container-textarea h2::after {
    top: calc(10 / 390 * 100vw);
    left: calc(16 / 390 * 100vw);
    width: calc(160 / 390 * 100vw);
    height: calc(160 / 390 * 100vw);
  }
  .c5-m92-block .c5-m92-block__container .c5-m92-block__container-textarea p {
    padding: 0 calc(16 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}







/* マルチジャンルで活躍！ ex
------------------------------*/
.c5-m92-ex {
  z-index: 10;
  position: relative;
  /* height: auto !important; */
  padding-top: calc(80 / 1920 * 100vw);
  padding-bottom: calc(80 / 1920 * 100vw);
  background: linear-gradient(#171148 0%, #000976 100%);
  color: #FFFFFF;
}
.c5-m92-ex::after {
  content: '';
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: calc(960 / 1920 * 100vw);
  height: calc(400 / 1920 * 100vw);
  background: url(../../assets/img/ex-bg.png) no-repeat center center / contain;
}
.c5-m92-ex__container {
  padding-left: calc(96 / 1920 * 100vw);
  padding-right: calc(96 / 1920 * 100vw);

}
.c5-m92-ex .c5-m92-ex__title {
  z-index: 3;
  position: relative;
  margin-bottom: calc(64 / 1920 * 100vw);
  font-size: calc(64 / 1920 * 100vw);
  font-weight: 600;
  line-height: 1.3;
}
.c5-m92-ex__img {
  z-index: 3;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(92 / 1920 * 100vw);
}
.c5-m92-ex__img figure {
  width: calc(560 / 1920 * 100vw);
}
.c5-m92-ex__detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c5-m92-ex__detail li:nth-child(n + 2) {
  margin-top: calc(30 / 1920 * 100vw);
}
.c5-m92-ex__detail li {
  width: calc(840 / 1920 * 100vw);
  background: linear-gradient(#4e009d 0%, #080091 100%);
  border-radius: 16px;
  overflow: hidden;
}
.c5-m92-ex__detail li.c5-m92-ex__detail--full {
  display: flex;
  width: 100%;
  padding: calc(46 / 1920 * 100vw);
}
.c5-m92-ex__detail .c5-m92-ex__detail-wrap {
  position: relative;
  width: 50%;
}
.c5-m92-ex__detail .c5-m92-ex__detail-wrap li {
  background: transparent;
}
.c5-m92-ex__detail li h3 {
  margin-bottom: calc(40 / 1920 * 100vw);
  font-size: calc(56 / 1920 * 100vw);
  font-weight: 600;
  line-height: 1.2;
}
.c5-m92-ex__detail li:not(.c5-m92-ex__detail--full) h3 {
  padding: calc(46 / 1920 * 100vw) calc(46 / 1920 * 100vw) 0;
}
.c5-m92-ex__detail li p {
  margin-bottom: calc(34 / 1920 * 100vw);
  font-size: calc(20 / 1920 * 100vw);
  font-weight: 400;
  line-height: 1.6;
}
.c5-m92-ex__detail li:not(.c5-m92-ex__detail--full) p {
  padding: 0 calc(46 / 1920 * 100vw);
}
.c5-m92-ex__detail li small {
  display: inline-block;
  padding: calc(12 / 1920* 100vw) calc(80 / 1920* 100vw) calc(20 / 1920* 100vw);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
.c5-m92-ex__detail li p span {
  display: block;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.c5-m92-ex__detail .c5-m92-ex__detail-mode {
  z-index: 1;
  position: relative;
}
.c5-m92-ex__detail .c5-m92-ex__detail-button {
  cursor: pointer;
  z-index: 60;
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(64 / 1920 * 100vw);
  height: calc(64 / 1920 * 100vw);
  border: solid 1px #FFFFFF;
  border-radius: 50%;
  font-size: 0;
}
.c5-m92-ex__detail .c5-m92-ex__detail-button::after {
  content: '';
  display: inline-block;
  width: calc(20 / 1920 * 100vw);
  height: calc(28 / 1920 * 100vw);
  background: url(../../assets/img/pause.svg) no-repeat center center / contain;
}
.c5-m92-ex__detail .c5-m92-ex__detail-button.c5-paused::after {
  content: '';
  display: inline-block;
  width: calc(20 / 1920 * 100vw);
  height: calc(22 / 1920 * 100vw);
  background: url(../../assets/img/play.svg) no-repeat center center / contain;
}
.c5-m92-ex__detail-360 {
  width: calc(600 / 1920 * 100vw);
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .c5-m92-ex {
    padding-top: calc(45 / 390 * 100vw);
    padding-bottom: calc(40 / 390 * 100vw);
  }
  .c5-m92-ex::after {
    width: 100%;
    height: calc(162 / 390 * 100vw);
    background-image: url(../../assets/img/ex-bg_sp.png);
  }
  .c5-m92-ex__container {
    padding-left: calc(16 / 390 * 100vw);
    padding-right: calc(16 / 390 * 100vw);
  }
  .c5-m92-ex .c5-m92-ex__title {
    margin-bottom: calc(20 / 390 * 100vw);
    font-size: calc(24 / 390 * 100vw);
  }
  .c5-m92-ex__img {
    flex-direction: column;
    margin-bottom: calc(40 / 390 * 100vw);
  }
  .c5-m92-ex__img figure {
    width: 100%;
  }
  .c5-m92-ex__img figure:nth-child(n + 2) {
    margin-top: calc(20 / 390 * 100vw);
  }
  .c5-m92-ex__detail {
    flex-direction: column;
  }
  .c5-m92-ex__detail li:nth-child(n + 2) {
    margin-top: calc(20 / 390 * 100vw);
  }
  .c5-m92-ex__detail li {
    width: 100%;
    padding: calc(20 / 390 * 100vw) calc(16 / 390 * 100vw) 0;
  }
  .c5-m92-ex__detail li.c5-m92-ex__detail--full {
    flex-direction: column;
    padding: calc(20 / 390 * 100vw) calc(16 / 390 * 100vw) 0;
  }
  .c5-m92-ex__detail .c5-m92-ex__detail-wrap {
    width: 100%;
  }
  .c5-m92-ex__detail li h3 {
    margin-bottom: calc(20 / 390 * 100vw);
    font-size: calc(22 / 390 * 100vw);
  }
  .c5-m92-ex__detail li:not(.c5-m92-ex__detail--full) h3 {
    padding: 0;
  }
  .c5-m92-ex__detail li p {
    margin-bottom: calc(20 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
  .c5-m92-ex__detail li:not(.c5-m92-ex__detail--full) p {
    padding: 0;
  }
  .c5-m92-ex__detail li small {
    font-size: 10px;
    padding: calc(12 / 390* 100vw) calc(30 / 390* 100vw) calc(10 / 390* 100vw);
  }
  .c5-m92-ex__detail .c5-m92-ex__detail-mode li {
    margin-top: 0;
    padding: 0;
  }
  .c5-m92-ex__detail .c5-m92-ex__detail-button {
    width: calc(32 / 390 * 100vw);
    height: calc(32 / 390 * 100vw);
  }
  .c5-m92-ex__detail .c5-m92-ex__detail-button::after {
    width: calc(10 / 390 * 100vw);
    height: calc(14 / 390 * 100vw);
  }
  .c5-m92-ex__detail .c5-m92-ex__detail-button.c5-paused::after {
    width: calc(10 / 390 * 100vw);
    height: calc(11 / 390 * 100vw);
  }
  .c5-m92-ex__detail-360 {
    width: 100%;
    margin: 0;
    padding-bottom: calc(20 / 390 * 100vw);
  }
}


/* ゲーミングマスターに相談できる！ consult
------------------------------*/
.c5-m92-consult {
  z-index: 50;
  position: relative;
  padding: calc(80 / 1920 * 100vw) 0;
  background-color: #000;
  color: #FFFFFF;
}
.c5-m92-consult .c5-m92-consult__container {
  display: flex;
  padding: 0 calc(332 / 1920 * 100vw);
}
.c5-m92-consult .c5-m92-consult__container:nth-child(n + 2) {
  margin-top: calc(64 / 1920 * 100vw);
}
.c5-m92-consult .c5-m92-consult__img {
  width: calc(317 / 1920 * 100vw);
}
.c5-m92-consult .c5-m92-consult__text {
  width: calc(100% - ((317 + 64) / 1920 * 100vw));
  padding-left: calc(64 / 1920 * 100vw);
}
.c5-m92-consult .c5-m92-consult__text h2 {
  margin-bottom: calc(40 / 1920 * 100vw);
  font-size: calc(90 / 1920 * 100vw);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}
.c5-m92-consult .c5-m92-consult__text h2 span {
  display: block;
  font-size: calc(48 / 1920 * 100vw);
}
.c5-m92-consult .c5-m92-consult__text h3 {
  margin-bottom: calc(20 / 1920 * 100vw);
  padding-top: calc(10 / 1920 * 100vw);
  font-size: calc(48 / 1920 * 100vw);
}
.c5-m92-consult .c5-m92-consult__text p {
  margin-bottom: calc(20 / 1920 * 100vw);
  font-size: calc(24 / 1920 * 100vw);
  line-height: 1.4;
}
.c5-m92-consult .c5-m92-consult__text small {
  font-size: calc(16 / 1920 * 100vw);
}
.c5-m92-consult .c5-m92-consult__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(330 / 1920 * 100vw);
  height: calc(94 / 1920 * 100vw);
  margin: calc(85 / 1920 * 100vw) auto 0;
  background-color: #06C755;
  border-radius: 90px;
  color: #000;
  font-size: calc(32 / 1920 * 100vw);
  font-weight: 600;
  transition: all .3s;
}
.c5-m92-consult .c5-m92-consult__button:hover {
  background-color: #FFFFFF;
  color: #06C755;
}
@media screen and (max-width: 768px) {
  .c5-m92-consult {
    padding: calc(40 / 390 * 100vw) 0 calc(34 / 390 * 100vw);
  }
  .c5-m92-consult .c5-m92-consult__container {
    flex-direction: column;
    padding: 0 calc(32 / 390 * 100vw);
  }
  .c5-m92-consult .c5-m92-consult__container:nth-child(n + 2) {
    margin-top: calc(32 / 390 * 100vw);
  }
  .c5-m92-consult .c5-m92-consult__img {
    margin: 0 auto calc(20 / 390 * 100vw);
    width: calc(240 / 390 * 100vw);
  }
  .c5-m92-consult .c5-m92-consult__container--02 .c5-m92-consult__img {
    order: 2;
  }
  .c5-m92-consult .c5-m92-consult__text {
    width: 100%;
    padding-left: 0;
  }
  .c5-m92-consult .c5-m92-consult__text h2 {
    margin-bottom: calc(20 / 390 * 100vw);
    font-size: calc(32 / 390 * 100vw);
  }
  .c5-m92-consult .c5-m92-consult__text h2 span {
    font-size: calc(24 / 390 * 100vw);
  }
  .c5-m92-consult .c5-m92-consult__text h3 {
    margin-bottom: calc(20 / 390 * 100vw);
    padding-top: 0;
    font-size: calc(24 / 390 * 100vw);
  }
  .c5-m92-consult .c5-m92-consult__text p {
    margin-bottom: calc(20 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
  .c5-m92-consult .c5-m92-consult__text small {
    font-size: calc(12 / 390 * 100vw);
  }
  .c5-m92-consult .c5-m92-consult__button {
    width: calc(240 / 390 * 100vw);
    height: calc(58 / 390 * 100vw);
    margin: 0 auto;
    font-size: calc(18 / 390 * 100vw);
  }
}



/* inzone コンバージョンボタン cv
------------------------------*/
.c5-m92-cv {
  z-index: 50;
  position: relative;
  height: 100vh;
  padding-top: calc(228 / 1920 * 100vw);
  padding-bottom: calc(148 / 1920 * 100vw);
}
.c5-m92-cv__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  right:0;
  left:0;
  bottom:0;
  overflow: hidden;
}
.c5-m92-cv__bg  picture {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.6133209990749vh;
  height: 56.3020833333333vw;
  min-height: 100%;
  min-width: 100%;
}
.c5-m92-cv__bg-mask {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  transform: translate(-50%,-50%);
  background-color: rgba(000, 000, 000, .5);
}
.c5-m92-cv__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: calc(96 / 1920 * 100vw);
  padding-right: calc(96 / 1920 * 100vw);
  color: #FFFFFF;
}
.c5-m92-cv__info {
  width: calc(840 / 1920 * 100vw);
}
.c5-m92-cv__info-text {
  font-size: calc(18 / 1920 * 100vw);
}
.c5-m92-cv__info-text span {
  display: block;
  font-size: calc(32 / 1920 * 100vw);
  line-height: 1.6;
}
.c5-m92-cv__info-productname {
  width: calc(410 / 1920 * 100vw);
  height: calc(72 / 1920 * 100vw);
  margin-bottom: calc(40 / 1920 * 100vw);
  background: url(../../assets/img/inzone-m9-2.svg) no-repeat center center / contain;
  font-size: 0;
}
.c5-m92-cv__info-button {
  display: flex;
}
.c5-m92-cv__info-button li {
  width: calc(400 / 1920 * 100vw);
}
.c5-m92-cv__info-button li:nth-child(n + 2) {
  margin-left: calc(24 / 1920 * 100vw);
}
.c5-m92-cv__info-button li p {
  margin-bottom: calc(20 / 1920 * 100vw);
  font-size: calc(20 / 1920 * 100vw);
  font-weight: 300;
}
.c5-m92-cv__info-button li a {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(90 / 1920 * 100vw);
  font-size: calc(32 / 1920 * 100vw);
  background-color: #000000;
  border: solid 1px #C59AE6;
  color: #FFFFFF;
  transition: all .3s;
  overflow: hidden;
}
.c5-m92-cv__info-button li a::after {
  content: '';
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: linear-gradient(#ba5eea 0%, #4e00a8 100%);
  transform: translateX(-100%);
  transition: all .3s;
}
.c5-m92-cv__info-button li a:hover::after {
  transform: translateX(0);
}

.c5-m92-cv__info-button li a span {
  z-index: 10;
  position: relative;
}

.c5-m92-cv__img {
  width: calc(740 / 1920 * 100vw);
}

@media screen and (max-width: 768px) {
  .c5-m92-cv {
    padding-top: calc(34.5 / 390 * 100vw);
    padding-bottom: calc(68.8 / 390 * 100vw);
  }
  .c5-m92-cv__bg  picture {
    width: 56.8513119533528vh;
    height: 175.7692307692308vw;
  }
  .c5-m92-cv__container {
    flex-direction: column;
    padding-left: calc(45 / 390 * 100vw);
    padding-right: calc(45 / 390 * 100vw);
  }
  .c5-m92-cv__info {
    order: 2;
    width: 100%;
  }
  .c5-m92-cv__info-text {
    font-size: calc(13 / 390 * 100vw);
    line-height: 1.8;
    text-align: center;
  }
  .c5-m92-cv__info-text span {
    font-size: calc(24 / 390 * 100vw);
  }
  .c5-m92-cv__info-productname {
    width: calc(240 / 390 * 100vw);
    height: calc(42.34 / 390 * 100vw);
    margin: 0 auto calc(30 / 390 * 100vw);
  }
  .c5-m92-cv__info-button {
    flex-direction: column;
  }
  .c5-m92-cv__info-button li {
    width: 100%;
  }
  .c5-m92-cv__info-button li:nth-child(n + 2) {
    margin-left: 0;
    margin-top: calc(20 / 390 * 100vw);
  }
  .c5-m92-cv__info-button li p {
    margin-bottom: calc(10 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
    text-align: center;
  }

  .c5-m92-cv__info-button li a {
    height: calc(58 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
    background: linear-gradient(#ba5eea 0%, #4e00a8 100%);
  }
  .c5-m92-cv__info-button li a::after {
    content: none;
  }
  .c5-m92-cv__img {
    order: 1;
    width: 100%;
    margin-bottom: calc(32 / 1920 * 100vw);
  }
}


/* 「モンスターハンター ワイルズ」 mh
------------------------------*/
.c5-m92-mh {
  z-index: 50;
  position: relative;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  color: #FFFFFF;
  text-align: center;
  padding: calc(80 / 1920 * 100vw) 0;
}
.c5-m92-mh .c5-m92-mh__container {
  position: relative;
  padding: 0 calc(96 / 1920 * 100vw);
}
.c5-m92-mh .c5-m92-mh__title {
  display: inline-block;
  align-items: center;
  margin: 0 auto calc(30 / 1920 * 100vw);
  padding-bottom: 8px;
  font-size: 20px;
  text-align: center;
  transition: all .3s;
  border-bottom: solid 1px transparent;
}
.c5-m92-mh .c5-m92-mh__title span {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 20px;
  transition: all .5s;
}
.c5-m92-mh .c5-m92-mh__title span::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  mask: url(../../assets/img/blank.svg) no-repeat center center / contain;
  background-color: #FFFFFF;
}

.c5-m92-mh .c5-m92-mh__title:hover {
  border-bottom: solid 1px #FFFFFF;
}
.c5-m92-mh .c5-m92-mh__banner {
  cursor: pointer;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  max-width: 1440px;
  background-color: #FFFFFF;
  width: 100%;
  margin: 0 auto;
  transition: all .3s;
}
.c5-m92-mh .c5-m92-mh__banner img {
  transition: all .5s;
  display: block;
}
.c5-m92-mh .c5-m92-mh__banner:hover img {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .c5-m92-mh {
    padding: calc(40 / 390 * 100vw) 0;
  }
  .c5-m92-mh .c5-m92-mh__container {
    padding: 0 calc(16 / 390 * 100vw);
  }
  .c5-m92-mh .c5-m92-mh__title {
    margin-bottom: calc(20 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    line-height: 1.4;
  }
  .c5-m92-mh .c5-m92-mh__title span {
    width: 16px;
    height: 16px;
  }
  .c5-m92-mh .c5-m92-mh__title span::after {
    top: 4px;
    width: 14px;
    height: 14px;
  }
}

.loading {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #333;
}
.loading-container {
  width: 150px;
  height: 150px;
  position: relative;
}
.loading-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  border: 2px solid transparent;
  border-color: transparent #B357E6 transparent #B357E6;
  -webkit-animation: loading 1.5s linear 0s infinite;
          animation: loading 1.5s linear 0s infinite;
}
.loading-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #B357E6;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Markazi Text", serif;
  transform: translate(-50%, -50%);
  -webkit-animation: loading-text 3s linear 0s infinite;
          animation: loading-text 3s linear 0s infinite;
}

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

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading-text {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loading-text {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.loading.end {
  -webkit-animation: loading-end 0.5s linear 0s forwards;
          animation: loading-end 0.5s linear 0s forwards;
}

@-webkit-keyframes loading-end {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes loading-end {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

