@charset "UTF-8";
.pc-none {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

.sp-none {
  display: block;
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

/** ---------------------------------------------------------------- **/
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  filter: alpha(opacity=80);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.font-white {
  color: #fff;
}

.font-red {
  color: #c32b48;
}

.font-gold {
  color: #d8c66b;
}

.font-size-14 {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .font-size-14 {
    font-size: 7px;
  }
}

.font-size-16 {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .font-size-16 {
    font-size: 8px;
  }
}

.font-size-20 {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .font-size-20 {
    font-size: 10px;
  }
}

.font-size-24 {
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .font-size-24 {
    font-size: 12px;
  }
}

.font-size-32 {
  font-size: 32px;
}

@media screen and (max-width: 767px) {
  .font-size-32 {
    font-size: 16px;
  }
}

.font-center {
  text-align: center;
}

/** ============================================================== **/
/**
 * GAMEMODE / ゲームモード
 */
.gamemode {
  max-width: 1040px;
  margin: 0 auto;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .gamemode {
    width: calc(100% - 32px);
  }
}

@media screen and (max-width: 767px) {
  .gamemode {
    margin: 0 24px;
  }
}

.gamemode-startText {
  text-align: center;
  margin-bottom: 40px;
}

.gamemode__link {
  max-width: 520px;
  margin: 40px auto;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .gamemode__link {
    margin-bottom: 12px;
  }
}

.gamemode__link ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .gamemode__link ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.gamemode__link li {
  background-color: #fff;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .gamemode__link li {
    width: 24%;
  }
}

@media screen and (max-width: 767px) {
  .gamemode__link li {
    width: 48%;
    margin-bottom: 12px;
  }
  .gamemode__link li:nth-child(2n) {
    margin-left: 4px;
  }
}

.gamemode__link li:hover {
  background-color: #c32b48;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.gamemode__link li:hover a {
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.gamemode__link li.bg-frame {
  background-image: url(../img/products/frame-short.svg);
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .gamemode__link li.bg-frame {
    background-size: 98%;
  }
}

@media screen and (max-width: 767px) {
  .gamemode__link li.bg-frame {
    background-size: 98%;
  }
}

.gamemode__link li.is-current {
  background-color: #c32b48;
}

.gamemode__link li.is-current a {
  color: #fff;
}

.gamemode__link li.is-disable {
  opacity: .65;
}

.gamemode__link li.is-disable:hover {
  background-color: #fff;
}

.gamemode__link li.is-disable a {
  pointer-events: none;
  color: #000;
}

.gamemode__link li a {
  width: 242px;
  height: 72px;
  display: block;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  text-decoration: none;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .gamemode__link li a {
    height: 54px;
  }
}

@media screen and (max-width: 767px) {
  .gamemode__link li a {
    height: 44px;
  }
}

.gamemode__contents {
  padding: 65px 40px;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .gamemode__contents {
    margin-bottom: 40px;
  }
}

.gamemode__contents.bg-dark {
  background-color: rgba(0, 0, 0, 0.55);
}

@media screen and (max-width: 767px) {
  .gamemode__contents.bg-dark {
    padding: 25px 12px;
  }
}

.gamemode__title, .gamemode__text {
  font-weight: 600;
  text-align: center;
}

.gamemode__title {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 65px;
}

@media screen and (max-width: 767px) {
  .gamemode__title {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.gamemode__title:after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
}

.gamemode__wrap {
  margin-bottom: 50px;
}

.gamemode__wrap:last-child {
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .gamemode__wrap {
    margin-bottom: 32px;
  }
}

.gamemode__h3 {
  font-size: 24px;
  position: relative;
  padding-left: 32px;
  padding-bottom: 18px;
  line-height: 1.3;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .gamemode__h3 {
    font-size: 12px;
    padding-left: 20px;
    margin-bottom: 24px;
  }
}

.gamemode__h3::before {
  position: absolute;
  top: 3px;
  left: 0;
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/gamemode/icon/icon-h3.svg);
  background-size: contain;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .gamemode__h3::before {
    width: 12px;
    height: 12px;
  }
}

.gamemode__h3::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  display: inline-block;
  width: 100%;
  height: 4px;
  background-image: url(../img/gamemode/h3-border.svg);
  background-size: contain;
  vertical-align: middle;
}

.gamemode__slide {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .gamemode__slide {
    margin-bottom: 0px;
  }
}

.gamemode__text {
  font-size: 16px;
  line-height: 2;
  text-align: left;
  letter-spacing: .075em;
}

@media screen and (max-width: 767px) {
  .gamemode__text {
    font-size: 12px;
  }
}

.gamemode__caution {
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .gamemode__caution {
    margin-top: 36px;
  }
}

.gamemode__caution--title {
  font-size: 16px;
  letter-spacing: .05em;
  font-weight: 600;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .gamemode__caution--title {
    font-size: 12px;
    margin-bottom: 3px;
  }
}

.gamemode__caution--item {
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .gamemode__caution--item {
    padding-left: 15px;
  }
}

.gamemode__caution--item p {
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .gamemode__caution--item p {
    font-size: 10px;
  }
}

.gamemode__caution--item:before {
  content: '※';
  position: absolute;
  top: 3px;
  left: 0px;
}

@media screen and (max-width: 767px) {
  .gamemode__caution--item:before {
    top: 2px;
  }
}

/**
 * Swiper
 */
.swiper-container {
  max-width: 960px;
  height: 500px;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .swiper-container {
    height: 370px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-container {
    width: 100%;
    height: 190px;
  }
}

/* 前ページ、次ページボタン共通のスタイル */
.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background-size: 38px 48px;
  background-repeat: no-repeat;
  margin-top: -24px;
  background-image: url("../img/gamemode/icon/icon-arrow.svg");
}

@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    background-size: 22px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}

/* 次ページボタンのスタイル */
.swiper-button-next {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  right: 0;
}

/* 前ページボタンのスタイル */
.swiper-button-prev {
  left: 0;
}

.swiper-button-next,
.swiper-button-prev {
  top: initial;
  bottom: 10px !important;
}

@media screen and (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    bottom: 21px !important;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}

.swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  bottom: 32px !important;
  left: 50% !important;
  width: 80% !important;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.swiper-pagination-bullet {
  width: 100%;
  height: 1px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.6);
  border-radius: inherit;
}

.swiper-pagination-bullet-active {
  background: #fff;
  height: 2px;
  opacity: 1;
}

.swiper-slide {
  max-height: 412px;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .swiper-slide {
    max-height: 280px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-slide {
    max-height: 130px;
  }
}

.swiper-slide-prev,
.swiper-slide-next {
  position: relative;
}

.swiper-slide-prev::after,
.swiper-slide-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .swiper-slide-prev::after,
  .swiper-slide-next::after {
    bottom: 80px;
  }
}
/*# sourceMappingURL=gamemode.css.map */