@charset "UTF-8";

:root {
    --color-primary: #e50012;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.article {
    max-width: 1680px;
    margin-bottom: 0;
    line-height: 1.4;
    overflow: hidden;
    padding-bottom: 100px;
    background: var(--color-primary);
    margin: 0 auto;
}

.article img {
    display: block;
    width: 100%;
    height: auto;
}

.p-0 {
    padding: 0 !important;
}

/* nav
-----------------------------------------------------------*/
.nav {
    margin: 80px 0 120px;
}

.navList {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navList_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 255px;
    height: 100px;
    border: 2px solid white;
    border-radius: 10px;
    text-decoration: none;
}

.navList_link_text {
    color: white;
    font-weight: bold;
    font-size: 24px;
    position: relative;
    margin-right: 30px;
}

.navList_link_text::after {
    background: transparent;
    border-right: solid 2px white;
    border-top: solid 2px white;
    bottom: 0;
    content: "";
    display: block;
    height: 10px;
    margin: auto;
    position: absolute;
    right: -20px;
    top: -5px;
    transform: rotate(135deg);
    width: 10px;
}

.navList_link_image {
    width: 60px;
    height: 80px;
}

.navList > li:first-child .navList_link_image {
    width: 100px;
    height: 80px;
}

.article .navList_link_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* campaign
-----------------------------------------------------------*/
.campaign_inner {
    position: relative;
    width: 900px;
    margin: 0 auto;
    background: #fff200;
    padding: 200px 80px 80px;
}

.campaign_title {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
}

/* スライダー（キャンペーン）
-----------------------------------------------------------*/
/* アロー */
.campaignSlider .splide__arrow {
    background: white;
    opacity: 1;
    box-shadow: var(--shadow);
}

.campaignSlider .splide__arrow--prev {
    width: 40px;
    height: 40px;
    left: -60px;
}

.campaignSlider .splide__arrow--next {
    width: 40px;
    height: 40px;
    right: -60px;
}

.campaignSlider .splide__arrow svg {
    fill: var(--color-primary);
    height: 20px;
    width: 20px;
}

/* ドット（ページネーション） */
.campaignSlider .splide__pagination {
    bottom: -40px;
    gap: 10px;
}

.campaignSlider .splide__pagination__page {
    background: #cccccc;
    opacity: 1;
    width: 14px;
    height: 14px;
}

.campaignSlider .splide__pagination__page.is-active {
    background: var(--color-primary);
    transform: scale(1);
}

/* スライダー（商品）
-----------------------------------------------------------*/
/* アロー */
.productSlider .splide__arrow {
    background: var(--color-primary);
    opacity: 1;
    box-shadow: var(--shadow);
}

.productSlider .splide__arrow--prev {
    width: 40px;
    height: 40px;
    left: -40px;
}

.productSlider .splide__arrow--next {
    width: 40px;
    height: 40px;
    right: -40px;
}

.productSlider .splide__arrow svg {
    fill: white;
    height: 20px;
    width: 20px;
}

/* ドット（ページネーション） */
.productSlider .splide__pagination {
    bottom: -40px;
    gap: 10px;
}

.productSlider .splide__pagination__page {
    background: #cccccc;
    opacity: 1;
    width: 14px;
    height: 14px;
}

.productSlider .splide__pagination__page.is-active {
    background: var(--color-primary);
    transform: scale(1);
}

/* スライダー（新作ゲームソフト特集バナー）
-----------------------------------------------------------*/
/* アロー */
.softSlider .splide__arrow {
    background: var(--color-primary);
    opacity: 1;
    box-shadow: var(--shadow);
}

.softSlider .splide__arrow--prev {
    width: 40px;
    height: 40px;
}

.softSlider .splide__arrow--next {
    width: 40px;
    height: 40px;
}

.softSlider .splide__arrow svg {
    fill: white;
    height: 20px;
    width: 20px;
}

.softSlider .splide__slide {
    display: flex;
    align-items: center;
}

/* .softSlider .splide__slide {
    opacity: 0.7;
}
  
.softSlider .splide__slide.is-visible {
    opacity: 1;
} */

/* スライダー（サムネイルスライダー）
-----------------------------------------------------------*/
.thumbnailSlider {
    margin-top: 40px;
}

.thumbnailSlider + .thumbnailSlider {
    margin-top: 40px;
}

.thumbnailSlider .accessarySlider_wrap {
    padding-bottom: 40px;
}

.productThumbnailSlider {
    margin-top: 20px;
}

.productThumbnailSlider_image {
    width: 100px;
    height: 110px;
    background: #f0f0f0;
}

.article .productThumbnailSlider_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.productThumbnailSlider .splide__list {
    justify-content: center;
}

.productThumbnailSlider .splide__track--nav>.splide__list>.splide__slide.is-active {
    border: 3px solid transparent;
}

.productThumbnailSlider .splide__track--nav>.splide__list>.splide__slide.is-active .productThumbnailSlider_image {
    background: #fbd9dc;
}

/* カード
-----------------------------------------------------------*/
.card {
    width: 900px;
    background: white;
    padding: 40px 80px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 0 auto;
}

.card + .card {
    margin-top: 40px;
}

.card_title {
    background-color: var(--color-primary);
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 26px;
    padding: 8px;
}

/* 本体, 周辺機器, ソフト
-----------------------------------------------------------*/
.campaign + .detail {
    margin-top: 80px;
}

.detail_note {
    width: fit-content;
    margin: 0 auto;
    font-size: 12px;
    text-indent: -1em;
    padding-left: 1em;
    margin-top: 20px;
}

.copywright {
    font-size: 12px;
}

/* 本体
-----------------------------------------------------------*/
.console_lead {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin-top: 40px;
}

.console_text {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

/* Nintendo Switch 2 本体 */
.switch2ConsoleProduct {
    width: fit-content;
    margin: 0 auto;
}

/* Nintendo Switch 2 新機能 */
.feature {
    margin-top: 80px;
}

.featureTitle {
    background: var(--color-primary);
    padding: 40px;
    color: white;
}

.featureTitle_top {
    font-weight: bold;
    text-align: center;
    font-size: 26px;
}

.featureTitle_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.article img.featureTitle_image {
    width: 160px;
}

.featureTitle_text {
    font-weight: bold;
    font-size: 60px;
    margin-left: 20px;
}

/* featureList */
.featureList {
    margin-top: 40px;
}

.featureList > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featureList > li + li {
    margin-top: 20px;
}

.featureList_detail {
    width: 48%;
}

.featureList_image {
    width: 48%;
    display: flex;
    justify-content: center;
}

.featureList_title {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
    font-size: 27px;
    line-height: 56px;
    font-weight: bold;
}

.featureList_title::before,
.featureList_title::after {
    content: "";
    width: 8px;
    background-color: var(--color-primary);
}

.featureList_text {
    font-size: 13px;
    line-height: 1.7;
    font-weight: bold;
    margin-top: 20px;
}

/* カメラ */
.featureList > li.-camera {
    flex-direction: row-reverse;
}

.-camera .featureList_detail {
    width: 70%;
}

.-camera .featureList_image {
    width: 26%;
}

.article .-camera .featureList_image img {
    width: 140px;
}

/* 周辺機器
-----------------------------------------------------------*/
.accessaryList {
    margin-top: 20px;
}

.accessaryList > li + li {
    margin-top: 40px;
}

.accessaryList_title {
    border: 1px solid black;
    border-radius: 20px;
    font-weight: bold;
    font-size: 26px;
    padding: 0 20px;
    width: fit-content;
    margin: 0 auto 20px;
}

/* 商品スライダー内部
-----------------------------------------------------------*/
.accessarySlider_wrap {
    background: #f0f0f0;
    padding: 40px;
    padding-bottom: 60px;
}

.product {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.product_image {
    width: 335px;
    height: 335px;
}
  
.article .product_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product_detail {
    width: 335px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product_label {
    background: #ffd500;
    padding: 2px 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    width: fit-content;
    margin: 0 auto;
}

.product_name {
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.product_buttons {
    width: 280px;
    margin: 20px auto 0;
    text-align: center;
}

.product_buttons .customButton + .customButton {
    margin-top: 20px;
}

.product_limited {
    font-size: 15px;
    font-weight: bold;
    margin-top: 20px;
}

/* ソフト
-----------------------------------------------------------*/
.card.soft {
    padding-right: 0;
    padding-left: 0;
}

.soft_inner {
    padding-right: 80px;
    padding-left: 80px;
}

.soft_container {
    margin-top: 40px;
}

.soft_container + .soft_container {
    margin-top: 80px;
}

.soft_title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.soft_title > span {
    font-weight: bold;
}

.soft_button {
    margin: 40px auto 0;
}

.ranking_wrap {
    list-style: none;
    margin: 0 auto;
    width: 640px;
}

.soft_container:last-child .soft_button {
    margin-top: 0;
}

/* copywright
-----------------------------------------------------------*/
.copywright {
    display: block;
    color: white;
    font-size: 12px;
    width: fit-content;
    margin: 40px auto 0;
}

/* switchNav
-----------------------------------------------------------*/
.switchNav {
    width: fit-content;
    display: flex;
    border-radius: 30px;
    background: white;
    padding: 5px;
    margin: 40px auto 0;
}

.switchNav_item {
    display: block;
    text-decoration: none;
    border-radius: 30px;
    padding: 7px 10px;
    padding-left: 20px;
}

.switchNav_item.-active {
    background: var(--color-primary);
    padding: 7px 10px;
}

.switchNav_text {
    line-height: 1;
    font-weight: bold;
    color: #979797;
    font-size: 20px;
    user-select: none;
}

.switchNav_item.-active .switchNav_text {
    color: white;
}

.switchNav_item.-active .switchNav_text::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #ffffff;
    margin-right: 4px;
    margin-bottom: 1px;
}

.switchNav_note {
    text-align: center;
    font-size: 16px;
    color: white;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 40px;
}

/* sticky
-----------------------------------------------------------*/
.stickyWrap {
    display: none;
    position: fixed;
    right: calc(50% - 960px);
    bottom: 6px;
    width: 383px;
    height: auto;
    margin: 0;
    padding: 15px 10px 0 0;
    z-index: 1000;
}

@media screen and (max-width: 1920px) {
    .stickyWrap {
        right: 10px;
    }
}

.stickyWrap .stickyInner {
    position: relative;
    -webkit-filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.2));
    filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.2));
}

.stickyInner a {
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
}

.stickyInner a:hover {
    opacity: unset;
}

.stickyInner .sticky_closeBtn {
    position: absolute;
    top: -12px;
    right: -12px;
    cursor: pointer;
    width: auto;
}

/* ボタン
-----------------------------------------------------------*/
.customButton {
    display: inline-flex;
    align-items: center;
    width: 250px;
    height: 60px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: .2s;
    position: relative;
    cursor: pointer;
    padding: 0 40px;
    color: #001b76;
    border: 2px solid #ffc606;
    background: linear-gradient(180deg, #ffcd40 0%, #ffcd40 50%, #ffc606 50%, #ffc606 100%);
}

.customButton:hover {
    opacity: 0.8;
}

.customButton_icon {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    border-radius: 50%;
}

.customButton_arrow {
    width: 0px;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-left: 4px;
    border-left: 10px solid #ffc606;
}

/* オンラインストアで購入する */
.customButton.-online {
    font-size: 14px;
    padding: 0 14px;
    color: #FFF;
    border: 2px solid #001b76;
    background: linear-gradient(180deg, #062a8e 0%, #062a8e 50%, #001b76 50%, #001b76 100%);
}

.customButton.-online .customButton_arrow {
    border-left: 10px solid #001b76;
}

/* ソフト */
.customButton.-soft {
    display: flex;
    width: 360px;
    height: 100px;
    border-radius: 60px;
    font-size: 18px;
    padding: 0;
    justify-content: center;
    color: #FFF;
    border: 2px solid #1eae67;
    background: linear-gradient(180deg, #33c688 0%, #33c688 50%, #1eae67 50%, #1eae67 100%);
    text-align: center;
}

.customButton.-soft .customButton_arrow {
    border-left: 10px solid #1eae67;
}