@charset "UTF-8";
:root {
  --maincolor: #0099ff;
  --subcolor: #1c3c8d;
  --textcolor: #fff;
  --container: 1400px;
}

/* ======== ↓ common ↓ ======== */
#gunplaselection {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--textcolor);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 801px) and (max-width: 1400px) {
  #gunplaselection {
    font-size: 1.32vw;
  }
}

@media screen and (max-width: 800px) {
  #gunplaselection {
    font-size: max(2.2vw,12px);
  }
}

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

#gunplaselection *:before, #gunplaselection *:after {
  content: none;
  visibility: visible;
  height: initial;
  font-size: inherit;
}

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

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

#gunplaselection ul, #gunplaselection ol {
  list-style: none;
}

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

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

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

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

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

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

#gunplaselection :root {
  --c-flex-gap: 2%;
}

#gunplaselection .c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#gunplaselection .c-flex.gap > * {
  margin-left: var(--c-flex-gap);
}

#gunplaselection .c-flex.gapLarge > * {
  margin-left: calc(var(--c-flex-gap) * 2);
}

#gunplaselection .c-flex:not(.c-flex-reverse) > *:first-child {
  margin-left: 0;
}

#gunplaselection .c-flex--2 > * {
  width: calc(100% / 2);
}

#gunplaselection .c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}

#gunplaselection .c-flex--2.gap > *:nth-child(2n+1) {
  margin-left: 0;
}

#gunplaselection .c-flex--3 > * {
  width: calc(100% / 3);
}

#gunplaselection .c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}

#gunplaselection .c-flex--3.gap > *:nth-child(3n+1) {
  margin-left: 0;
}

#gunplaselection .c-flex--4 > * {
  width: calc(100% / 4);
}

#gunplaselection .c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}

#gunplaselection .c-flex--4.gap > *:nth-child(4n+1) {
  margin-left: 0;
}

#gunplaselection .c-flex--5 > * {
  width: calc(100% / 5);
}

#gunplaselection .c-flex--5.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(5 - 1))) / 5);
}

#gunplaselection .c-flex--5.gap > *:nth-child(5n+1) {
  margin-left: 0;
}

#gunplaselection .c-flex--6 > * {
  width: calc(100% / 6);
}

#gunplaselection .c-flex--6.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(6 - 1))) / 6);
}

#gunplaselection .c-flex--6.gap > *:nth-child(6n+1) {
  margin-left: 0;
}

#gunplaselection .c-flex--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#gunplaselection .c-flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

#gunplaselection .c-flex--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#gunplaselection .c-flex--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#gunplaselection .c-flex--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#gunplaselection .c-flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#gunplaselection .c-flex--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

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

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

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

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

#gunplaselection .lh-10 {
  line-height: 1;
}

#gunplaselection .lh-15 {
  line-height: 1.5;
}

#gunplaselection .lh-20 {
  line-height: 2;
}

#gunplaselection .font-10 {
  font-size: 10px !important;
}

#gunplaselection .font-12 {
  font-size: 12px !important;
}

#gunplaselection .font-14 {
  font-size: 14px !important;
}

#gunplaselection .font-16 {
  font-size: 16px !important;
}

#gunplaselection .font-18 {
  font-size: 18px !important;
}

#gunplaselection .font-20 {
  font-size: 20px !important;
}

#gunplaselection .font-22 {
  font-size: 22px !important;
}

#gunplaselection .font-24 {
  font-size: 24px !important;
}

#gunplaselection .font-26 {
  font-size: 26px !important;
}

#gunplaselection .font-28 {
  font-size: 28px !important;
}

#gunplaselection .font-30 {
  font-size: 30px !important;
}

@media screen and (min-width: 801px) and (max-width: 1400px) {
  #gunplaselection .font-10 {
    font-size: 0.71429vw !important;
  }
  #gunplaselection .font-12 {
    font-size: 0.85714vw !important;
  }
  #gunplaselection .font-14 {
    font-size: 1vw !important;
  }
  #gunplaselection .font-16 {
    font-size: 1.14286vw !important;
  }
  #gunplaselection .font-18 {
    font-size: 1.28571vw !important;
  }
  #gunplaselection .font-20 {
    font-size: 1.42857vw !important;
  }
  #gunplaselection .font-22 {
    font-size: 1.57143vw !important;
  }
  #gunplaselection .font-24 {
    font-size: 1.71429vw !important;
  }
  #gunplaselection .font-26 {
    font-size: 1.85714vw !important;
  }
  #gunplaselection .font-28 {
    font-size: 2vw !important;
  }
  #gunplaselection .font-30 {
    font-size: 2.14286vw !important;
  }
}

@media screen and (max-width: 800px) {
  #gunplaselection .font-10 {
    font-size: 1.07143vw !important;
  }
  #gunplaselection .font-12 {
    font-size: 1.28571vw !important;
  }
  #gunplaselection .font-14 {
    font-size: 1.5vw !important;
  }
  #gunplaselection .font-16 {
    font-size: 1.71429vw !important;
  }
  #gunplaselection .font-18 {
    font-size: 1.92857vw !important;
  }
  #gunplaselection .font-20 {
    font-size: 2.14286vw !important;
  }
  #gunplaselection .font-22 {
    font-size: 2.35714vw !important;
  }
  #gunplaselection .font-24 {
    font-size: 2.57143vw !important;
  }
  #gunplaselection .font-26 {
    font-size: 2.78571vw !important;
  }
  #gunplaselection .font-28 {
    font-size: 3vw !important;
  }
  #gunplaselection .font-30 {
    font-size: 3.21429vw !important;
  }
}

#gunplaselection .mt-10 {
  margin-top: 1em !important;
}

#gunplaselection .mt-15 {
  margin-top: 1.5em !important;
}

#gunplaselection .mt-20 {
  margin-top: 2em !important;
}

#gunplaselection .mt-25 {
  margin-top: 2.5em !important;
}

#gunplaselection .mt-30 {
  margin-top: 3em !important;
}

#gunplaselection .mt-35 {
  margin-top: 3.5em !important;
}

#gunplaselection .mt-40 {
  margin-top: 4em !important;
}

#gunplaselection .mt-45 {
  margin-top: 4.5em !important;
}

#gunplaselection .mt-50 {
  margin-top: 5em !important;
}

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

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

#gunplaselection .u-hidden {
  display: none;
  visibility: hidden;
}

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

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

#gunplaselection [data-ruby]:before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 50%;
  font-size: max(0.3em,8px);
  line-height: 1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

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

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

/* ======== ↑ End common ↑ ======== */
/* ======== ↓ main ↓ ======== */
#cduWrap {
  width: 100%;
  background: #fff;
}

#cduFooter {
  max-width: 1016px;
}

#gunplaselection.js-loading .sectionWrapper {
  opacity: 0;
  pointer-events: none;
}

#gunplaselection.js-loading.is-loading .sectionWrapper {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  pointer-events: auto;
}

#gunplaselection .parallaxWrapper {
  position: relative;
}

#gunplaselection .parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -1;
}

#gunplaselection .parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
}

@media screen and (max-width: 800px) {
  #gunplaselection .parallax {
    background-size: auto 100vh;
  }
}

#gunplaselection h2.heading {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1em;
  position: relative;
}

#gunplaselection h2.heading:before, #gunplaselection h2.heading:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.75em;
  height: 2px;
  background: currentColor;
}

#gunplaselection h2.heading:before {
  left: 0;
}

#gunplaselection h2.heading:after {
  right: 0;
}

#gunplaselection h2.heading.js-scroll {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
}

#gunplaselection h2.heading.js-scroll:before {
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
}

#gunplaselection h2.heading.js-scroll:after {
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
}

#gunplaselection h2.heading.is-scroll {
  opacity: 1;
}

#gunplaselection h2.heading.is-scroll:before {
  -webkit-transform: none;
          transform: none;
}

#gunplaselection h2.heading.is-scroll:after {
  -webkit-transform: none;
          transform: none;
}

@media screen and (min-width: 801px) and (max-width: 1400px) {
  #gunplaselection h2.heading {
    font-size: 2.85vw;
  }
}

@media screen and (max-width: 800px) {
  #gunplaselection h2.heading {
    font-size: 5vw;
  }
}

#gunplaselection .c-btn a {
  font-size: 30px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: -0.05em;
  display: block;
  width: 100%;
  max-width: 400px;
  background: #c09411;
  color: #fff;
  padding: 0.25em 1.5em;
  margin: 0 auto;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#gunplaselection .c-btn a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 24px;
  background: url(../images/btn_arrow.svg) no-repeat center/contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#gunplaselection .c-btn a:hover:after {
  right: 8px;
}

@media screen and (min-width: 801px) and (max-width: 1400px) {
  #gunplaselection .c-btn a {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #gunplaselection .c-btn a {
    font-size: min(6vw,30px);
  }
}

#gunplaselection .c-hr {
  background: #006ea9;
  border: 0;
  height: 1px;
}

#gunplaselection .c-line {
  position: relative;
}

#gunplaselection .c-line:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #006ea9;
}

#gunplaselection .c-line.js-scroll:before {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  width: 0;
}

#gunplaselection .c-line.is-scroll:before {
  width: 100%;
}

#gunplaselection .p-kv .logo img {
  margin: 0 auto;
}

#gunplaselection .p-kv_slider {
  width: 100%;
  margin-top: 5px;
  padding-bottom: 18px;
}

#gunplaselection .p-kv_slider .swiper-wrapper {
  -webkit-transition-timing-function: cubic-bezier(0.33, 0, 0.1, 1);
          transition-timing-function: cubic-bezier(0.33, 0, 0.1, 1);
}

#gunplaselection .p-kv_slider .swiper-slide {
  width: 320px;
  max-width: calc(calc(100% - 60px) / 4);
  padding: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#1c69c8), to(#08a0f1));
  background: linear-gradient(90deg, #1c69c8, #08a0f1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#gunplaselection .p-kv_slider .swiper-slide a {
  overflow: hidden;
  display: block;
  border-radius: 8px;
  position: relative;
}

#gunplaselection .p-kv_slider .swiper-slide a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 60, 141, 0)), to(rgba(28, 60, 141, 0.5)));
  background: linear-gradient(rgba(28, 60, 141, 0), rgba(28, 60, 141, 0.5));
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  mix-blend-mode: exclusion;
}

#gunplaselection .p-kv_slider .swiper-slide .arrow {
  display: block;
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: 9%;
  aspect-ratio: 1 / 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#gunplaselection .p-kv_slider .swiper-slide:hover {
  background: -webkit-gradient(linear, left top, right top, from(#ff0054), to(#ff2a71));
  background: linear-gradient(90deg, #ff0054, #ff2a71);
}

#gunplaselection .p-kv_slider .swiper-slide:hover a:after {
  opacity: 1;
}

#gunplaselection .p-kv_slider .swiper-slide:hover .arrow {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

#gunplaselection .p-kv_slider .swiper-pagination {
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
  margin: 30px auto 0;
  width: 93%;
  height: 4px;
  background: #575757;
  -webkit-transform: none !important;
          transform: none !important;
}

#gunplaselection .p-kv_slider .swiper-pagination-progressbar-fill {
  width: 100%;
  height: 100%;
  background: #ff0054;
  display: block;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

#gunplaselection .p-kv.js-scroll {
  -webkit-perspective: 2000px;
          perspective: 2000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

#gunplaselection .p-kv.js-scroll .p-kv_slider {
  -webkit-transition: 1.5s ease 0.6s;
  transition: 1.5s ease 0.6s;
  opacity: 0;
  -webkit-transform: translateZ(200px);
          transform: translateZ(200px);
}

#gunplaselection .p-kv.is-scroll .p-kv_slider {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 800px) {
  #gunplaselection .p-kv {
    padding-top: 2%;
  }
  #gunplaselection .p-kv_slider .swiper-slide {
    max-width: calc(calc(100% - 20px) / 3);
  }
  #gunplaselection .p-kv_slider .swiper-slide .arrow {
    width: 22.5%;
  }
  #gunplaselection .p-kv_slider .swiper-pagination {
    margin-top: 5%;
  }
}

#gunplaselection .p-series {
  padding-top: 50px;
}

#gunplaselection .p-series .block1 {
  background: rgba(28, 60, 141, 0.5);
  padding: 30px 0 0;
}

#gunplaselection .p-series_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#gunplaselection .p-series_list li, #gunplaselection .p-series_list a {
  width: 200px;
  aspect-ratio: 1 / 0.5;
  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;
}

#gunplaselection .p-series_list li img, #gunplaselection .p-series_list a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

#gunplaselection .p-series_list li {
  max-width: calc(100% / 4);
}

#gunplaselection .p-series_list a {
  padding: 15px 20px;
}

#gunplaselection .p-series_list a:hover {
  background: #1440a6;
}

#gunplaselection .p-series.js-scroll .p-series_list > li {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1) 0.3s;
  transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#gunplaselection .p-series.is-scroll .p-series_list > li {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 800px) {
  #gunplaselection .p-series {
    padding-top: 10%;
  }
  #gunplaselection .p-series .block1 {
    padding-top: 6%;
  }
  #gunplaselection .p-series_list {
    margin-top: 4%;
  }
  #gunplaselection .p-series_list li {
    width: calc(100% / 3);
    max-width: none;
  }
  #gunplaselection .p-series_list a {
    width: 100%;
    padding: 1.5vw 2vw;
  }
}

#gunplaselection .p-lineup {
  padding: 40px 0;
  margin-top: 50px;
}

#gunplaselection .p-lineup h2 {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#gunplaselection .p-lineup h2 .logo {
  margin-right: 1.2em;
  max-width: 48%;
  max-height: 150px;
}

#gunplaselection .p-lineup h2.js-scroll {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(-1em);
          transform: translateX(-1em);
}

#gunplaselection .p-lineup h2.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#gunplaselection .p-lineup_sliderWrapper {
  margin-top: 20px;
  position: relative;
}

#gunplaselection .p-lineup_sliderWrapper .slick-arrow {
  position: absolute;
  top: -27%;
  bottom: 0;
  margin: auto;
  font-size: 50px;
  width: 1em;
  height: 1em;
  background: var(--maincolor);
  border: 0.06em solid #fff;
  border-radius: 50%;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

#gunplaselection .p-lineup_sliderWrapper .slick-arrow:after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 27%;
  aspect-ratio: 1 / 1;
  border-left: 0.06em solid #fff;
  border-bottom: 0.06em solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#gunplaselection .p-lineup_sliderWrapper .slick-prev {
  left: -0.5em;
}

#gunplaselection .p-lineup_sliderWrapper .slick-next {
  right: -0.5em;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#gunplaselection .p-lineup_slider .slick-list {
  margin: 0 -20px;
}

#gunplaselection .p-lineup_slider .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: auto !important;
}

#gunplaselection .p-lineup_slider .slick-slide > a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#gunplaselection .p-lineup_slider .slick-slide a:hover figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#gunplaselection .p-lineup_slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#gunplaselection .p-lineup_slider.noSlide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  margin: 0 -20px;
}

#gunplaselection .p-lineup_slider.noSlide .slick-slide {
  float: none;
}

#gunplaselection .p-lineup_slider.noSlide .slick-arrow {
  display: none;
}

#gunplaselection .p-lineup_slider figure {
  background: var(--subcolor);
  border: 1px solid var(--maincolor);
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

#gunplaselection .p-lineup_slider figure + * {
  margin-top: 1em;
}

#gunplaselection .p-lineup_slider figure img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#gunplaselection .p-lineup_slider .tag {
  font-size: 12px;
  text-align: center;
  line-height: 1;
  color: #fff;
  width: 7em;
  margin: 0.5em 0;
  padding: 0.25em 0;
}

#gunplaselection .p-lineup_slider .tag.tagBefore {
  background-color: #007ecd;
}

#gunplaselection .p-lineup_slider .tag.tagOnsale {
  background-color: #ff8c29;
}

#gunplaselection .p-lineup_slider .tag.tagClosed {
  background-color: #999999;
}

#gunplaselection .p-lineup_slider .tag.tagEmpty {
  background-color: #e60000;
}

#gunplaselection .p-lineup_slider .price > * {
  display: inline;
  line-height: 1.5;
}

#gunplaselection .p-lineup_slider .price .value, #gunplaselection .p-lineup_slider .price .unit {
  font-size: 1.5em;
}

#gunplaselection .p-lineup_slider .btn, #gunplaselection .p-lineup_slider .cartBtn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: inherit;
  text-align: center;
  padding: 0.5em 1em;
  margin-top: 1em;
  color: #fff;
  background: #fa5f02;
  border: none;
  width: 100%;
  position: relative;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#gunplaselection .p-lineup_slider .btn[disabled], #gunplaselection .p-lineup_slider .cartBtn[disabled] {
  background: #999;
  pointer-events: none;
}

#gunplaselection .p-lineup_slider .btn:after, #gunplaselection .p-lineup_slider .cartBtn:after {
  content: '';
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 1.125em;
  aspect-ratio: 1 / 1.1111;
  -webkit-transition: inherit;
  transition: inherit;
}

#gunplaselection .p-lineup_slider .btn:hover, #gunplaselection .p-lineup_slider .cartBtn:hover {
  background: #7c2f01;
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

#gunplaselection .p-lineup_slider .itemBlockPB__btnPBCart__text {
  font-size: inherit;
}

@media screen and (min-width: 801px) {
  #gunplaselection .p-lineup_slider .slick-slide {
    width: calc(calc(100% - 160px) / 4);
  }
}

@media screen and (max-width: 1420px) {
  #gunplaselection .p-lineup_sliderWrapper .slick-list {
    margin: 0 -10px;
  }
  #gunplaselection .p-lineup_sliderWrapper .slick-slide {
    padding: 0 10px;
    width: calc(calc(100% - 80px) / 4);
  }
  #gunplaselection .p-lineup_sliderWrapper .slick-arrow {
    font-size: 3.58vw;
  }
}

@media screen and (min-width: 801px) and (max-width: 1400px) {
  #gunplaselection .p-lineup h2 {
    font-size: min(2.4vw,24px);
  }
}

@media screen and (max-width: 800px) {
  #gunplaselection .p-lineup {
    padding: 8% 0;
    margin-top: 10%;
  }
  #gunplaselection .p-lineup h2 {
    font-size: 3.5vw;
  }
  #gunplaselection .p-lineup h2 .logo {
    max-width: 30%;
    max-height: 25vw;
  }
  #gunplaselection .p-lineup_slider .slick-list {
    margin: 0;
  }
  #gunplaselection .p-lineup_slider .slick-track > .slick-slide {
    width: 100%;
    padding: 0 2vw;
  }
  #gunplaselection .p-lineup_slider .slick-track > .slick-slide > * {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2vw;
  }
  #gunplaselection .p-lineup_slider .slick-track > .slick-slide > *:not(:first-child) {
    margin-top: 1.5em;
  }
  #gunplaselection .p-lineup_slider .slick-slide {
    width: 100%;
    height: auto;
  }
  #gunplaselection .p-lineup_slider .slick-slide .slick-slide {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: calc(calc(100% - 2vw) / 2);
    padding: 0 !important;
  }
  #gunplaselection .p-lineup_slider .slick-arrow {
    top: 0;
    width: 12vw;
    height: 12vw;
  }
  #gunplaselection .p-lineup_slider .slick-arrow:after {
    left: 60%;
    width: 20%;
    border-width: 0.2em;
  }
  #gunplaselection .p-lineup_slider .slick-prev {
    left: -10vw;
  }
  #gunplaselection .p-lineup_slider .slick-next {
    right: -10vw;
  }
  #gunplaselection .p-lineup_slider.noSlide {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2vw;
    padding: 0 2vw;
    margin: 0;
  }
  #gunplaselection .p-lineup_slider.noSlide .slick-slide {
    width: calc(calc(100% - 2vw) / 2);
    padding: 0;
  }
}

#gunplaselection .contentsFooter {
  padding: 60px 0;
  margin-top: 50px;
}

#gunplaselection .contentsFooter .copyright {
  font-size: 14px;
  text-align: center;
}

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

#gunplaselection .contentsFooter #totop a {
  display: block;
  width: 50px;
  max-width: 10vw;
  aspect-ratio: 1 / 1;
  background: var(--maincolor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#gunplaselection .contentsFooter #totop a:after {
  content: '';
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 24%;
  aspect-ratio: 1 / 1;
  border-left: 4px solid #fff;
  border-top: 4px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#gunplaselection .contentsFooter #totop a:hover {
  background: var(--subcolor);
}

@media screen and (max-width: 800px) {
  #gunplaselection .contentsFooter {
    padding: 6% 0;
    margin-top: 10%;
  }
  #gunplaselection .contentsFooter .copyright {
    font-size: min(2.4vw,14px);
  }
}

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

.js-scroll.fadeInLeft {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.fadeInRight {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-scroll.fadeInZoom {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-scroll.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

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