@charset "UTF-8";
/* font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
/*==================================
 setting
===================================*/
/* PC ナビの調整用 */
* {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}
@media screen and (max-width: 980px) {
  html {
    font-size: clamp(0px, 1.0204081633vw, 10px);
  }
}

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

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

img.lazyload {
  width: 100%;
}

a,
a:hover,
a:active {
  color: none;
}

a:visited {
  color: none;
}

a:focus {
  outline: none;
}

ul {
  list-style: none;
}

/* スクロールバー */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 30px;
  background: #999;
}

::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: #0082ca;
}

/* ==== だし分け用 ==== */
.-onlyPc {
  display: block;
}
@media screen and (max-width: 980px) {
  .-onlyPc {
    display: none;
  }
}

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

/* ==== PC幅で左に表示するコンテンツ ==== */
.pcRightArea {
  width: calc(100% - 400px);
  margin-left: auto;
}
@media screen and (max-width: 1500px) {
  .pcRightArea {
    width: calc(100% - 350px);
  }
}
@media screen and (max-width: 980px) {
  .pcRightArea {
    width: 100%;
    margin: auto;
  }
}

.fixedbg {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  width: calc(100% - 400px);
  height: 100%;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 1500px) {
  .fixedbg {
    width: calc(100% - 350px);
  }
}
@media screen and (min-width: 981px) {
  .fixedbg {
    background-image: url(../image/fixedbg-pc.webp);
  }
}
@media screen and (max-width: 980px) {
  .fixedbg {
    width: 100%;
    background-image: url(../image/fixedbg-sp.webp);
  }
}

/* ページ下部固定　スクロール矢印 */
.fixedArrowWrap {
  position: fixed;
  z-index: 80;
  bottom: 12px;
  right: 0;
  display: block;
  pointer-events: none;
}
.fixedArrowWrap .arrow {
  display: block;
  width: 25px;
  margin: auto;
  animation: arrowAnime 2s infinite;
  opacity: 0;
}
.fixedArrowWrap .arrow:nth-child(2) {
  animation-delay: 0.2s;
  transform: translateY(-2px);
}
.fixedArrowWrap .arrow:nth-child(3) {
  animation-delay: 0.4s;
  transform: translateY(-4px);
}
@media screen and (max-width: 980px) {
  .fixedArrowWrap .arrow {
    max-width: 40px;
    width: 5rem;
  }
  .fixedArrowWrap .arrow:nth-child(2) {
    transform: translateY(-0.4rem);
  }
  .fixedArrowWrap .arrow:nth-child(3) {
    transform: translateY(-0.8rem);
  }
}
.fixedArrowWrap .scrollCircle {
  display: block;
  position: relative;
  width: 65px;
  height: 65px;
  border: 0.075em solid #c7daf4;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  box-sizing: content-box;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .fixedArrowWrap .scrollCircle {
    width: 55px;
    height: 55px;
  }
}
.fixedArrowWrap .scrollCircle .scrollArrow {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  line-height: 1;
  position: relative;
  width: 20px;
  height: 20px;
  transform: translateX(110%) rotate(135deg);
  z-index: 2;
  top: 26%;
  animation: animationArrow 1s ease-in-out infinite;
}
@media screen and (max-width: 980px) {
  .fixedArrowWrap .scrollCircle .scrollArrow {
    width: 20px;
    height: 20px;
    transform: translateX(89%) rotate(135deg);
  }
}
.fixedArrowWrap .scrollCircle .scrollArrow::before,
.fixedArrowWrap .scrollCircle .scrollArrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.fixedArrowWrap .scrollCircle .scrollArrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.fixedArrowWrap .scrollCircle .scrollArrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
}

@keyframes animationArrow {
  0%, 100% {
    opacity: 1;
    top: 29%;
  }
  50% {
    opacity: 0.7;
    top: 26%;
  }
}
/* ページ下部固定　スクロール矢印 */
/*==================================
 header
===================================*/
header {
  padding: 8px;
  text-align: center;
  background-image: linear-gradient(90deg, rgba(0, 130, 202, 0) 0%, rgba(0, 130, 202, 0.8) 10%, rgba(0, 130, 202, 0.8) 50%, rgba(0, 130, 202, 0.8) 90%, rgba(0, 130, 202, 0) 100%);
  color: #fff;
}
@media screen and (max-width: 980px) {
  header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1;
    padding: 3.2rem 2rem 2.8rem;
    text-align: left;
    background-color: rgba(0, 130, 202, 0.8);
    background-image: none;
  }
}
header .logoWrap {
  display: none;
}
@media screen and (max-width: 980px) {
  header .logoWrap {
    display: flex;
    vertical-align: middle;
  }
}
header .logoWrap .logo {
  display: inline-block;
  height: 4.4rem;
  margin-right: 3rem;
}
header .logoWrap .logo img {
  height: 100%;
}
header .title {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1500px) {
  header .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 980px) {
  header .title {
    font-size: 3.8rem;
  }
}

/*==================================
 sliderArea
===================================*/
.sliderArea {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 980px) {
  .sliderArea {
    padding: 0 0 0 2rem;
  }
}
.sliderArea .title {
  margin: 24px 0 15px;
  font-size: 22px;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 980px) {
  .sliderArea .title {
    margin: 5rem 0 2rem;
    font-size: 3rem;
    text-align: left;
  }
}
.sliderArea .pcBg {
  background-color: rgba(42, 98, 161, 0.3);
}
@media screen and (max-width: 980px) {
  .sliderArea .pcBg {
    background-color: transparent;
  }
}
.sliderArea .mainInner {
  padding: 28px 20px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .sliderArea .mainInner {
    margin: 0 0 0 20px;
    padding: 28px 0;
  }
}
@media screen and (max-width: 980px) {
  .sliderArea .mainInner {
    margin: 0;
    padding: 0;
  }
}
.sliderArea .mainInner #pickupSlide {
  max-width: 1440px;
  margin: 0 auto;
  opacity: 0;
  text-align: center;
}
.sliderArea .mainInner #pickupSlide.oneSlide {
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .sliderArea .mainInner #pickupSlide.oneSlide {
    margin: 0 20px 0 0;
  }
}
@media screen and (max-width: 750px) {
  .sliderArea .mainInner #pickupSlide.oneSlide {
    margin: 0 2rem 0 0;
  }
}
.sliderArea .mainInner #pickupSlide.slick-initialized {
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .sliderArea .mainInner #pickupSlide:not(.oneSlide) {
    padding: 0 calc(100% - 600px) 0 0;
    /* .sliderItem の大きさと同じ↓ */
  }
}
@media screen and (max-width: 1100px) {
  .sliderArea .mainInner #pickupSlide:not(.oneSlide) {
    padding: 0 calc(100% - 560px) 0 0;
    /* .sliderItem の大きさと同じ↓ */
  }
}
@media screen and (max-width: 750px) {
  .sliderArea .mainInner #pickupSlide:not(.oneSlide) {
    padding: 0 4.4rem 0 0;
  }
}
.sliderArea .mainInner .slick-list {
  overflow: visible;
}
.sliderArea .mainInner .sliderItem img {
  max-width: 712px;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .sliderArea .mainInner .sliderItem img {
    max-width: 600px;
    /* #pickupSlide のpaddingと対応↑ */
  }
}
@media screen and (max-width: 1100px) {
  .sliderArea .mainInner .sliderItem img {
    max-width: 560px;
    /* #pickupSlide のpaddingと対応↑ */
  }
}
@media screen and (max-width: 750px) {
  .sliderArea .mainInner .sliderItem img {
    max-width: 90rem;
  }
}
.sliderArea .mainInner #pickupSlide:not(.oneSlide) .sliderItem {
  padding: 0 5px;
}
@media screen and (max-width: 1400px) {
  .sliderArea .mainInner #pickupSlide:not(.oneSlide) .sliderItem {
    padding: 0 1.3rem 0 0;
  }
}

/*==================================
 navArea
===================================*/
#navLayer {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  transition: 0.3s opacity;
  opacity: 0;
}
#navLayer.-on {
  display: block;
  opacity: 1;
}
@media screen and (min-width: 981px) {
  #navLayer {
    display: none !important;
  }
}

#navOpenButton {
  position: fixed;
  z-index: 92;
  top: 11rem;
  right: 2rem;
  width: 14rem;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 980px) {
  #navOpenButton {
    display: block;
  }
}
#navOpenButton.-on:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/navArea/sortbtn-close.png");
  background-size: 100% auto;
}

.navArea {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  padding: 40px 12px 0;
  background-image: linear-gradient(to bottom, #075f9c 0%, #0b1d42 100%);
  overflow: auto;
  /* ==== タイトル名で検索 ==== */
  /* ==== 機種から探す ==== */
  /* ==== シリーズから探す ==== */
}
@media screen and (max-width: 1500px) {
  .navArea {
    width: 350px;
  }
}
@media screen and (max-width: 980px) {
  .navArea {
    transition: 0.3s transform, 0.3s opacity;
    transform: translateX(-100%);
    opacity: 0;
  }
  .navArea.-on {
    opacity: 1;
    transform: translateX(0%);
  }
}
@media screen and (max-width: 750px) {
  .navArea {
    width: 280px;
    padding: 40px 12px 0;
  }
}
.navArea .logoWrap {
  display: flex;
  vertical-align: middle;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 980px) {
  .navArea .logoWrap {
    display: none;
  }
}
.navArea .logoWrap .logo {
  display: inline-block;
  height: 32px;
  margin: 0 12px;
}
@media screen and (max-width: 750px) {
  .navArea .logoWrap .logo {
    height: 24px;
    margin: 0 9px;
  }
}
.navArea .logoWrap .logo img {
  height: 100%;
}
.navArea .title {
  margin-bottom: 10px;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .navArea .title {
    margin-bottom: 7.5px;
    font-size: 14px;
  }
}
.navArea .searchTitleWrap {
  position: relative;
}
.navArea .searchTitleWrap form {
  display: flex;
  align-items: center;
  width: 350px;
  margin: auto;
  background-color: #fff;
}
@media screen and (max-width: 1500px) {
  .navArea .searchTitleWrap form {
    width: 306.25px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchTitleWrap form {
    width: 100%;
  }
}
.navArea .searchTitleWrap form .searchImg {
  width: 43px;
  padding: 0 10px;
}
@media screen and (max-width: 1500px) {
  .navArea .searchTitleWrap form .searchImg {
    width: 37.625px;
    padding: 0 8.75px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchTitleWrap form .searchImg {
    width: 26px;
    padding: 0 4px 0 6px;
  }
}
.navArea .searchTitleWrap form .searchImg img {
  width: 23px;
}
@media screen and (max-width: 1500px) {
  .navArea .searchTitleWrap form .searchImg img {
    width: 20.125px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchTitleWrap form .searchImg img {
    width: 17.25px;
  }
}
.navArea .searchTitleWrap form #search {
  border: none;
  width: 220px;
  padding: 15px 10px 15px 0;
  color: #0b1f4c;
  font-size: 16px;
  /* iosではfont-sizeが16px以下だとズームされてしまうので、必ず16pxにする */
}
@media screen and (max-width: 1500px) {
  .navArea .searchTitleWrap form #search {
    width: 192.5px;
    padding: 13.125px 8.75px 13.125px 0;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchTitleWrap form #search {
    width: 165px;
    padding: 11.25px 7.5px 11.25px 0;
  }
}
.navArea .searchTitleWrap form #search:focus {
  outline: 0;
}
.navArea .searchTitleWrap form .searchText {
  position: relative;
  z-index: 0;
  width: 55px;
  padding: 0 0 0 10px;
  font-size: 14px;
  color: #3e3e3e;
}
@media screen and (max-width: 1500px) {
  .navArea .searchTitleWrap form .searchText {
    width: 48.125px;
    padding: 0 0 0 8.75px;
    font-size: 13px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchTitleWrap form .searchText {
    width: 41.25px;
    padding: 0 0 0 7.5px;
    font-size: 12px;
  }
}
.navArea .searchTitleWrap form .searchText::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #ebebeb;
}
.navArea .searchTitleWrap form #searchReset {
  width: 26px;
  height: 100%;
  padding: 15px 0;
  cursor: pointer;
}
@media screen and (max-width: 1500px) {
  .navArea .searchTitleWrap form #searchReset {
    width: 22.75px;
    padding: 13.125px 0;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchTitleWrap form #searchReset {
    width: 19.5px;
    padding: 11.25px 3px 11.25px 0;
  }
}
.navArea .searchPfWrap {
  margin-top: 36px;
}
@media screen and (max-width: 750px) {
  .navArea .searchPfWrap {
    margin-top: 27px;
  }
}
.navArea .searchPfWrap #PfWrap {
  margin: 0 auto;
}
.navArea .searchPfWrap .itemWrap {
  position: relative;
  z-index: 0;
  width: 350px;
  height: 66px;
  margin: 0 auto 17px;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .navArea .searchPfWrap .itemWrap {
    width: 306.25px;
    height: 57.75px;
    margin: 0 auto 14.875px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchPfWrap .itemWrap {
    width: 100%;
    height: 49.5px;
    margin: 0 auto 12.75px;
  }
}
.navArea .searchPfWrap .itemWrap img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navArea .searchPfWrap .itemWrap .logo {
  height: inherit;
}
.navArea .searchPfWrap .itemWrap .iconReset {
  position: absolute;
  z-index: 1;
  display: none;
  top: 50%;
  right: 8px;
  width: 26px;
  transform: translateY(-50%);
  filter: brightness(1.4);
}
@media screen and (max-width: 1500px) {
  .navArea .searchPfWrap .itemWrap .iconReset {
    width: 22.75px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchPfWrap .itemWrap .iconReset {
    width: 19.5px;
    right: 6px;
  }
}
.navArea .searchPfWrap .itemWrap label {
  position: relative;
  z-index: 0;
  display: block;
  height: inherit;
  cursor: pointer;
}
.navArea .searchPfWrap .itemWrap.-ps label {
  background-color: #00439c;
}
.navArea .searchPfWrap .itemWrap.-switch label {
  background-color: #e70013;
}
.navArea .searchPfWrap .itemWrap.-steam label {
  background-color: #090909;
}
.navArea .searchPfWrap input[type=radio] {
  display: none;
}
.navArea .searchPfWrap #PfWrap[data-pf=selected] .itemWrap:not(.-on) label:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  background-color: rgba(0, 13, 21, 0.6);
}
.navArea .searchPfWrap #PfWrap .itemWrap label:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid #29a2ff;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.15s;
}
.navArea .searchPfWrap #PfWrap .itemWrap.-on label:before {
  opacity: 1;
}
@media (hover: hover) {
  .navArea .searchPfWrap #PfWrap .itemWrap label:hover:before {
    opacity: 1;
  }
}
.navArea .searchPfWrap #PfWrap .itemWrap.-on .iconReset {
  display: block;
}
.navArea .searchPfWrap #PfWrap .itemWrap.-on label:after {
  display: none;
}
.navArea .searchSeriesWrap {
  margin-top: 45px;
}
@media screen and (max-width: 750px) {
  .navArea .searchSeriesWrap {
    margin-top: 33.75px;
  }
}
.navArea .searchSeriesWrap #seriesWrap {
  padding-top: 14px;
}
@media screen and (max-width: 750px) {
  .navArea .searchSeriesWrap #seriesWrap {
    padding-top: 10.5px;
  }
}
.navArea .searchSeriesWrap #seriesWrap[data-series=selected] .itemWrap:not(.-on) img {
  filter: brightness(0.79);
}
.navArea .searchSeriesWrap #seriesWrap[data-series=selected] .itemWrap:not(.-on) span {
  color: #c4c7c9;
}
.navArea .searchSeriesWrap .itemWrap {
  position: relative;
  z-index: 0;
  width: 350px;
  margin: 0 auto 25px;
  padding: 0 0 0 45px;
}
@media screen and (max-width: 1500px) {
  .navArea .searchSeriesWrap .itemWrap {
    width: 306.25px;
    margin: 0 auto 21.875px;
    padding: 0 0 0 24.375px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchSeriesWrap .itemWrap {
    width: 100%;
    margin: 0 auto 18.75px;
    padding: 0 0 0 8px;
  }
}
.navArea .searchSeriesWrap .itemWrap label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.navArea .searchSeriesWrap .itemWrap img,
.navArea .searchSeriesWrap .itemWrap span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navArea .searchSeriesWrap .itemWrap .icon {
  width: 74px;
  margin-right: 20px;
}
@media screen and (max-width: 1500px) {
  .navArea .searchSeriesWrap .itemWrap .icon {
    width: 64.75px;
    margin-right: 17.5px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchSeriesWrap .itemWrap .icon {
    width: 55.5px;
    margin-right: 15px;
  }
}
.navArea .searchSeriesWrap .itemWrap span {
  font-size: 14.13px;
  white-space: nowrap;
}
@media screen and (max-width: 1500px) {
  .navArea .searchSeriesWrap .itemWrap span {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchSeriesWrap .itemWrap span {
    font-size: 13px;
  }
}
.navArea .searchSeriesWrap .itemWrap .iconReset {
  position: absolute;
  z-index: 1;
  display: none;
  top: 50%;
  right: 8px;
  width: 26px;
  transform: translateY(-50%);
  filter: brightness(1.4);
}
@media screen and (max-width: 1500px) {
  .navArea .searchSeriesWrap .itemWrap .iconReset {
    width: 22.75px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchSeriesWrap .itemWrap .iconReset {
    width: 19.5px;
    right: 6px;
  }
}
.navArea .searchSeriesWrap .itemWrap:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid #29a2ff;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}
.navArea .searchSeriesWrap .itemWrap.-on:before {
  opacity: 1;
}
@media (hover: hover) {
  .navArea .searchSeriesWrap .itemWrap:hover:before {
    opacity: 1;
  }
}
.navArea .searchSeriesWrap .itemWrap.-on .iconReset {
  display: block;
}
.navArea .searchSeriesWrap input[type=radio] {
  display: none;
}
.navArea .searchSeriesWrap hr {
  width: 350px;
  margin: 0 auto 25px;
}
@media screen and (max-width: 1500px) {
  .navArea .searchSeriesWrap hr {
    width: 306.25px;
    margin: 0 auto 21.875px;
  }
}
@media screen and (max-width: 750px) {
  .navArea .searchSeriesWrap hr {
    width: 100%;
    margin: 0 auto 18.75px;
  }
}

/*==================================
 main title
===================================*/
#main {
  position: relative;
  z-index: 0;
  padding: 0 20px;
}
@media screen and (max-width: 980px) {
  #main {
    padding: 0 2rem;
  }
}

.upperArrowWrap {
  display: block;
  margin: 0 auto -10px;
  width: 100%;
  transform: translateY(-10px);
}
@media screen and (min-width: 981px) {
  .upperArrowWrap {
    display: block !important;
    opacity: 1 !important;
  }
}
@media screen and (max-width: 980px) {
  .upperArrowWrap {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    transform: translateY(0px);
    margin: 0 auto;
  }
}
.upperArrowWrap .arrow {
  display: block;
  width: 25px;
  margin: auto;
  animation: arrowAnime 2s infinite;
  opacity: 0;
}
.upperArrowWrap .arrow:nth-child(2) {
  animation-delay: 0.2s;
  transform: translateY(-2px);
}
.upperArrowWrap .arrow:nth-child(3) {
  animation-delay: 0.4s;
  transform: translateY(-4px);
}
@media screen and (max-width: 980px) {
  .upperArrowWrap .arrow {
    max-width: 40px;
    width: 5rem;
  }
  .upperArrowWrap .arrow:nth-child(2) {
    transform: translateY(-0.4rem);
  }
  .upperArrowWrap .arrow:nth-child(3) {
    transform: translateY(-0.8rem);
  }
}
@keyframes arrowAnime {
  0% {
    opacity: 0.2;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

.saleContents {
  max-width: 1440px;
  margin: 0 auto;
  padding: 38px 0 0;
}
@media screen and (max-width: 980px) {
  .saleContents {
    margin: 3rem auto 0;
    padding: 4rem 0 0;
  }
}
.saleContents .secTitle {
  margin: 0;
  display: none;
  font-weight: normal;
}
@media screen and (max-width: 980px) {
  .saleContents .secTitle {
    display: block;
    font-size: 2.8rem;
  }
}
.saleContents .resultTextWrap {
  display: none;
}
@media screen and (max-width: 980px) {
  .saleContents .resultTextWrap {
    display: block;
    margin: 2.5rem 0 0;
    font-size: 2.707rem;
    color: #33b6ff;
  }
  .saleContents .resultTextWrap p {
    display: inline-block;
    margin-right: 2rem;
    cursor: pointer;
  }
  .saleContents .resultTextWrap p:not(.-on) {
    display: none !important;
  }
  .saleContents .resultTextWrap p.-on:not(:last-of-child):after {
    content: " | ";
  }
}
.saleContents .itemWrap {
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .saleContents .itemWrap {
    justify-content: space-between;
  }
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .saleContents .itemWrap {
    justify-content: space-between;
  }
}
.saleContents .itemWrap:before {
  content: "該当するタイトルはありません。";
  position: absolute;
  z-index: -1;
  top: 10px;
  left: 10px;
  font-size: 14px;
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap:before {
    font-size: 2rem;
  }
}
.saleContents .itemWrap .titleItem {
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 24%;
  margin: 0 0.5% 1%;
  padding: 1% 0.5%;
  color: #fff;
  text-decoration: none;
  background-color: #1e3d73;
  border: 1px solid transparent;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
  transition: border 0.15s;
}
@media screen and (max-width: 1450px) {
  .saleContents .itemWrap .titleItem {
    width: 32.4%;
    margin: 0 0.466% 0.932%;
  }
}
@media screen and (max-width: 1200px) {
  .saleContents .itemWrap .titleItem {
    width: 49.2%;
    margin: 0 0 1.5rem;
    padding: 2% 1%;
  }
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap .titleItem {
    width: 32.4%;
    margin: 0 0.466% 0.932%;
    padding: 2% 1%;
  }
}
@media screen and (max-width: 750px) {
  .saleContents .itemWrap .titleItem {
    width: 49.2%;
    margin: 0 0 1.5rem;
    padding: 2% 1%;
  }
}
@media (hover: hover) {
  .saleContents .itemWrap .titleItem:hover {
    border: 1px solid #29a2ff;
  }
}
.saleContents .itemWrap .titleItem.is-ps .itemPlatform {
  background: #00439c;
}
.saleContents .itemWrap .titleItem.is-switch .itemPlatform {
  background: #e70013;
}
.saleContents .itemWrap .titleItem.is-steam .itemPlatform {
  background: #090909;
}
.saleContents .itemWrap .titleItem .itemImg {
  width: 100%;
  display: block;
}
.saleContents .itemWrap .titleItem .upperItemsWrap {
  display: flex;
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap .titleItem .upperItemsWrap {
    margin-top: 1.2rem;
  }
}
.saleContents .itemWrap .titleItem .itemPlatform {
  min-width: 107px;
  width: 107px;
  text-align: center;
  padding: 1px 0;
  font-size: 12px;
  letter-spacing: -0.05em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap .titleItem .itemPlatform {
    min-width: 0;
    width: 11rem;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 750px) {
  .saleContents .itemWrap .titleItem .itemPlatform {
    width: 18rem;
    font-size: 1.9rem;
  }
}
.saleContents .itemWrap .titleItem .dataEnd {
  margin-bottom: 2px;
  font-size: clamp(11.9px, 0.9333333333vw, 14px);
  color: #d4d4d4;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  .saleContents .itemWrap .titleItem .dataEnd {
    margin-bottom: 1.7px;
  }
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap .titleItem .dataEnd {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #ababab;
  }
}
@media screen and (max-width: 750px) {
  .saleContents .itemWrap .titleItem .dataEnd {
    font-size: 1.984rem;
  }
}
.saleContents .itemWrap .titleItem .iconNew {
  display: flex;
  align-items: center;
  width: 62px;
  margin-left: auto;
  font-size: 11px;
  text-align: center;
  background: #00cabe;
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap .titleItem .iconNew {
    width: 7.9rem;
    font-size: 1.26rem;
  }
}
@media screen and (max-width: 750px) {
  .saleContents .itemWrap .titleItem .iconNew {
    font-size: 1.8rem;
  }
}
.saleContents .itemWrap .titleItem .iconNew span {
  display: block;
  width: 100%;
}
.saleContents .itemWrap .titleItem .itemTitle {
  font-size: clamp(16.2945px, 1.278vw, 19.17px);
  width: 100%;
  margin: 6px auto;
}
@media screen and (max-width: 1200px) {
  .saleContents .itemWrap .titleItem .itemTitle {
    margin: 5.1px auto;
  }
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap .titleItem .itemTitle {
    margin: 1rem auto;
    font-size: 2rem;
  }
}
@media screen and (max-width: 750px) {
  .saleContents .itemWrap .titleItem .itemTitle {
    font-size: 2.6rem;
  }
}
.saleContents .itemWrap .titleItem .bottomItemsWrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin-top: auto;
}
.saleContents .itemWrap .titleItem .salePriceWrap {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: end;
}
.saleContents .itemWrap .titleItem .salePriceWrap .salePriceRatio {
  color: #ffdd40;
  font-weight: bold;
}
.saleContents .itemWrap .titleItem .salePriceWrap .discount {
  letter-spacing: 0.05em;
  font-size: clamp(18.9975px, 1.49vw, 22.35px);
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap .titleItem .salePriceWrap .discount {
    font-size: 2.47128rem;
  }
}
@media screen and (max-width: 750px) {
  .saleContents .itemWrap .titleItem .salePriceWrap .discount {
    font-size: 2.942rem;
  }
}
.saleContents .itemWrap .titleItem .salePriceWrap .off {
  font-size: clamp(14.11px, 1.1066666667vw, 16.6px);
}
.saleContents .itemWrap .titleItem .salePriceWrap .off:before {
  content: " ";
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap .titleItem .salePriceWrap .off {
    font-size: 1.83876rem;
  }
}
@media screen and (max-width: 750px) {
  .saleContents .itemWrap .titleItem .salePriceWrap .off {
    font-size: 2.189rem;
  }
}
.saleContents .itemWrap .titleItem .salePriceWrap .price {
  margin-left: 14px;
  letter-spacing: 0.05em;
  font-size: clamp(23.4515px, 1.8393333333vw, 27.59px);
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap .titleItem .salePriceWrap .price {
    font-size: 3.05004rem;
  }
}
@media screen and (max-width: 750px) {
  .saleContents .itemWrap .titleItem .salePriceWrap .price {
    font-size: 3.631rem;
  }
}
.saleContents .itemWrap .titleItem .arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 5px;
  display: block;
  width: 13px;
  transform: translateY(-50%);
}
@media screen and (max-width: 980px) {
  .saleContents .itemWrap .titleItem .arrow {
    right: 0.5rem;
    width: 1.8rem;
  }
}

/* ソート時 非表示用 */
.saleContents .itemWrap .titleItem.hidden {
  display: none !important;
}
.saleContents .itemWrap .titleItem.shidden {
  display: none !important;
}
.saleContents .itemWrap .titleItem.thidden {
  display: none !important;
}
.saleContents .itemWrap .titleItem.dhidden {
  display: none !important;
}

/*==================================
  lowerLinksArea
===================================*/
.lowerLinksArea {
  margin-top: 180px;
}
@media screen and (max-width: 980px) {
  .lowerLinksArea {
    margin-top: 15rem;
  }
}
.lowerLinksArea .steamBannerWrap {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: calc(100% - 40px);
  width: 800px;
  margin: auto;
  padding: 11px 0;
  background-color: #000;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .steamBannerWrap {
    max-width: 100%;
    width: 85rem;
  }
}
.lowerLinksArea .steamBannerWrap:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid #29a2ff;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.15s;
}
@media (hover: hover) {
  .lowerLinksArea .steamBannerWrap:hover:before {
    opacity: 1;
  }
}
.lowerLinksArea .steamBannerWrap img,
.lowerLinksArea .steamBannerWrap span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.lowerLinksArea .steamBannerWrap .logo {
  width: 106px;
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .steamBannerWrap .logo {
    width: 19.5rem;
  }
}
.lowerLinksArea .steamBannerWrap span {
  margin-left: 10px;
  font-size: 20.97px;
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .steamBannerWrap span {
    font-size: 3.1rem;
  }
}
.lowerLinksArea .steamBannerWrap .arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 24px;
  display: block;
  width: 11px;
  transform: translateY(-50%);
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .steamBannerWrap .arrow {
    width: 1.7rem;
  }
}
.lowerLinksArea .howToArea {
  max-width: calc(100% - 40px);
  width: 800px;
  margin: 30px auto 0;
  padding: 24px 0 30px;
  background-image: linear-gradient(124deg, rgba(42, 98, 161, 0.7) 0%, rgba(22, 48, 134, 0.6) 100%);
  text-align: center;
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .howToArea {
    max-width: 100%;
    width: 100%;
    margin: 6rem auto 0;
    padding: 6rem 0 9rem;
  }
}
.lowerLinksArea .howToArea .upperText {
  font-weight: bold;
  font-size: 26px;
}
@media screen and (max-width: 1200px) {
  .lowerLinksArea .howToArea .upperText {
    font-size: 23.4px;
  }
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .howToArea .upperText {
    font-size: 3.3rem;
  }
}
.lowerLinksArea .howToArea .linksWrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .howToArea .linksWrap {
    margin-top: 8.2rem;
  }
}
.lowerLinksArea .howToArea .linksWrap .linkWrap {
  position: relative;
  z-index: 0;
  width: 200px;
  margin: 0 4px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .lowerLinksArea .howToArea .linksWrap .linkWrap {
    width: 180px;
  }
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .howToArea .linksWrap .linkWrap {
    margin: 0 4px;
    width: 30.4rem;
  }
}
@media (hover: hover) {
  .lowerLinksArea .howToArea .linksWrap .linkWrap:hover {
    background-color: rgba(41, 162, 255, 0.1);
    transition: background-color 0.15s;
  }
}
.lowerLinksArea .howToArea .linksWrap .linkWrap:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid #29a2ff;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.15s;
}
@media (hover: hover) {
  .lowerLinksArea .howToArea .linksWrap .linkWrap:hover:before {
    opacity: 1;
  }
}
.lowerLinksArea .howToArea .linksWrap img,
.lowerLinksArea .howToArea .linksWrap span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.lowerLinksArea .howToArea .linksWrap .icon {
  display: block;
  width: 102px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 1200px) {
  .lowerLinksArea .howToArea .linksWrap .icon {
    width: 91.8px;
  }
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .howToArea .linksWrap .icon {
    width: 16rem;
    margin: 0 auto 1.2rem;
  }
}
.lowerLinksArea .howToArea .linksWrap span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .lowerLinksArea .howToArea .linksWrap span {
    font-size: 13.5px;
  }
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .howToArea .linksWrap span {
    font-size: 2.35rem;
  }
}
.lowerLinksArea .howToArea .linksWrap .arrow {
  width: 8px;
  margin-left: 10px;
}
@media screen and (max-width: 980px) {
  .lowerLinksArea .howToArea .linksWrap .arrow {
    margin-left: 1rem;
    width: 1.4rem;
  }
}

/*==================================
  attentionWrap
===================================*/
.attentionWrap {
  padding: 0 20px;
}
@media screen and (max-width: 980px) {
  .attentionWrap {
    padding: 0 2rem;
  }
}
.attentionWrap .inner {
  max-width: 1440px;
  margin: 50px auto;
}
@media screen and (max-width: 980px) {
  .attentionWrap .inner {
    margin: 8rem auto;
  }
}
.attentionWrap ul li {
  font-size: 13.56px;
  margin-left: 1em;
  line-height: 1.54;
}
@media screen and (max-width: 980px) {
  .attentionWrap ul li {
    font-size: 2.2rem;
  }
}
.attentionWrap ul li:before {
  display: inline-block;
  content: "※";
  margin-left: -1em;
  font-style: normal;
}

/*==================================
  footer
===================================*/
footer {
  position: relative;
  width: 100%;
  padding: 38px 20px 80px 20px;
  color: #fff;
  background: #0082ca;
}
@media screen and (max-width: 980px) {
  footer {
    padding: 4.4rem 2rem 9rem 2rem;
  }
}
footer .inner {
  max-width: 1440px;
  margin: 0 auto;
}
footer .inner .languageWrap {
  position: relative;
  z-index: 0;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 980px) {
  footer .inner .languageWrap {
    margin-bottom: 6rem;
  }
}
footer .inner .languageWrap .languageBtn {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  padding: 0px 10px 0 0;
  font-size: 16.7px;
  cursor: pointer;
  transition: color 0.3s;
}
@media screen and (max-width: 980px) {
  footer .inner .languageWrap .languageBtn {
    padding: 0px 1rem 0 0;
    font-size: 2.788rem;
  }
}
footer .inner .languageWrap .languageBtn:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 12px;
  width: calc(100% - 12px);
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  footer .inner .languageWrap .languageBtn:before {
    left: 2.2rem;
    width: calc(100% - 2.2rem);
  }
}
footer .inner .languageWrap .languageBtn img {
  width: 25px;
  margin-right: 7px;
}
@media screen and (max-width: 980px) {
  footer .inner .languageWrap .languageBtn img {
    width: 4.5rem;
    margin-right: 1rem;
  }
}
footer .inner .languageWrap .languageBtn span {
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-left: 10px;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transition-duration: 0.2s;
}
@media screen and (max-width: 980px) {
  footer .inner .languageWrap .languageBtn span {
    width: 0.8rem;
    height: 1.3rem;
  }
}
footer .inner .languageWrap .langItem {
  position: relative;
  z-index: 0;
  display: block;
}
footer .inner .languageWrap .langItem:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.2s 0.3s;
}
footer .inner .languageWrap .langItem a {
  display: inline-block;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s;
  color: #fff;
  font-size: 16.7px;
  opacity: 0;
  transition: opacity 0.1s 0s, transform 0.2s 0s;
  pointer-events: none;
}
@media screen and (max-width: 980px) {
  footer .inner .languageWrap .langItem a {
    margin-left: 2rem;
    font-size: 2.788rem;
  }
}
footer .inner .languageWrap .langItem a:first-child {
  margin-left: 0;
}
footer .inner .languageWrap .langItem a:hover {
  color: #1a2b51;
}
footer .inner .languageWrap.open .langItem:before {
  width: 100%;
  transition-delay: 0s;
}
@media screen and (max-width: 980px) {
  footer .inner .languageWrap.open .langItem:before {
    width: 100%;
  }
}
footer .inner .languageWrap.open .langItem a {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  transition-delay: 0.3s, 0.3s;
}
footer .inner .mainTextWrap p {
  margin-bottom: 12px;
  font-size: 12.61px;
}
@media screen and (max-width: 980px) {
  footer .inner .mainTextWrap p {
    margin-bottom: 3rem;
    font-size: 2.1rem;
  }
}
footer .inner .mainTextWrap p:last-of-type {
  margin-bottom: 0;
}
footer .inner .mainTextWrap a {
  display: inline-block;
  margin: 0 15px 12px 0;
  color: #fff;
  font-size: 13.21px;
}
@media screen and (max-width: 980px) {
  footer .inner .mainTextWrap a {
    margin: 0 2rem 3rem 0;
    font-size: 2.2rem;
  }
}
footer .inner .mainTextWrap a:hover {
  text-decoration: none;
}
footer .inner .mainTextWrap .copyRightWrap small {
  display: block;
  margin-top: 28px;
  font-size: 12.1px;
}
@media screen and (max-width: 980px) {
  footer .inner .mainTextWrap .copyRightWrap small {
    margin-top: 4.8rem;
    font-size: 2rem;
  }
}
footer .inner .mainTextWrap .copyRightWrap .piapro {
  max-width: 50px;
}

/*==================================
  pageTop
===================================*/
#pageTop {
  position: fixed;
  z-index: 80;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
}
#pageTop p {
  display: block;
  width: 45px;
  height: 45px;
  background: #fff;
}
@media screen and (max-width: 980px) {
  #pageTop p {
    width: 7.5rem;
    height: 7.5rem;
  }
}
#pageTop p span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 12px;
  background: #0082ca;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 980px) {
  #pageTop p span {
    width: 3.2rem;
    height: 1.8rem;
  }
}/*# sourceMappingURL=style_dl.css.map */