/*メディアクエリ（サンプル最後に取る）*/
/*sp（なくても良い）*/
@media screen and (max-width: 480px) {}
/*tablet 768px以下*/
@media screen and (max-width: 767px) {}
/*pc 1000px以下*/
@media screen and (max-width: 1000px) {}
.popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility 0s linear .25s;
}
/* 開いた状態 */
.popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .25s ease, visibility 0s;
}
/* 背景も少しふわっと */
.popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .5);
    opacity: 0;
    transition: opacity .25s ease;
}
.popup.is-open .popup__backdrop {
    opacity: 1;
}
/* 中身：最初は少し上＆小さめ → ふわっと出る */
.popup__content {
    position: relative;
    width: 408px;
    margin: 20vh auto 0px;
    transform: translateY(-10px) scale(.98);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}
.popup.is-open .popup__content {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.popup__close {
    height: 39px;
    padding: 8px 8px 8px;
    background-color: #313c8e;
    border: 0px;
    font-size: 4rem;
    color: #fff;
    line-height: 0.5;
    margin-left: 100%;
    margin-bottom: 5px;
}
.campaign-btn {
    position: fixed;
    z-index: 25;
    bottom: 60px;
    right: 60px;
    width: 200px;
}
@media screen and (min-width: 501px) {
    .main_bg {
        display: grid;
        grid-template-columns: 1fr min(55rem, 100%) 1fr;
        align-items: stretch;
        background-color: #cfcae5;
        background-image: radial-gradient(circle, #bba6cc 3.5px, transparent 3.5px), radial-gradient(circle, #bba6cc 3.5px, transparent 3.5px), radial-gradient(circle, #bba6cc 3.5px, transparent 3.5px), radial-gradient(circle, #bba6cc 3.5px, transparent 3.5px);
        background-position: 0 0, 17px 0, 8.5px 17px, 25.5px 17px;
        background-size: 34px 34px;
        overflow: hidden;
    }
}
.side-menu {
    position: relative;
    overflow: hidden;
}
.side-stack {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.side-stack img {
    position: relative;
    display: block;
    width: 1005px; /* ← 見せたいサイズ */
    height: auto;
}
/* 左右の位置だけ分ける */
.left-menu .side-stack {
    top: 60px;
    right: 0;
}
.left-menu .side-stack img {
    right: 200px;
}
.right-menu .side-stack {
    top: 60px;
    left: 0;
}
.right-menu .side-stack img {
    right: 280px;
}
.main_mv-contents {
    background-image: url("../images/mv/mv_bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 778px;
    position: relative;
    overflow: hidden;
    background-color: #eee;
}
.main_mv-title {
    position: relative;
    z-index: 3;
    top: 20px;
    width: calc(100% - 60px);
    left: 0;
    right: 0;
    margin: 0px auto;
}
.main_mv-title .img-sub {
    position: absolute;
    bottom: -15px;
    left: 0;
    max-width: 260px;
    filter: drop-shadow(3px 0px 6px rgba(181, 81, 154, 0.75));
}
body:not(.is-loaded) .main-mv-swiper .swiper-slide {
    transition: none !important;
}
/* 読み込み完了後は通常どおり */
body.is-loaded .main-mv-swiper .swiper-slide {
    transition: transform 500ms ease, z-index 0ms linear 500ms;
}
body.is-loaded .main-mv-swiper .swiper-slide-active {
    transition: transform 500ms ease, z-index 0ms linear 0ms;
}
/* Swiper全体 */
.main-mv-swiper {
    width: 100%;
    transform: scale(1.35);
    overflow: visible; /* 中央のはみ出しを許可 */
    margin-top: 100px;
}
.main-mv-swiper .swiper-wrapper {
    overflow: visible;
}
/* 各スライド */
.main-mv-swiper .swiper-slide {
    position: relative; /* ← z-indexを効かせる */
    z-index: 1;
    transition: transform 500ms ease, z-index 0ms linear 500ms;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}
/* ★中央（アクティブ）スライド */
.main-mv-swiper .swiper-slide-active {
    z-index: 10;
    transition: transform 500ms ease, z-index 0ms linear 0ms;
    transform: translate3d(0, 8px, 0);
}
/* 左：中央に10px入り込む */
.main-mv-swiper .swiper-slide-prev {
    transform: translate3d(20px, 0, 0);
    z-index: 5;
}
/* 右：中央に10px入り込む */
.main-mv-swiper .swiper-slide-next {
    transform: translate3d(-20px, 0, 0);
    z-index: 5;
}
/* 影を付けたい場合（軽い） */
.main-mv-swiper .swiper-slide img {
    display: block;
    width: 100%;
    filter: drop-shadow(0px 0px 3px rgba(128, 0, 115, 0.75));
}
/* デフォルト矢印を消す */
.main-mv-swiper .swiper-button-prev svg, .main-mv-swiper .swiper-button-next svg {
    display: none;
}
.main-mv-swiper .swiper-button-prev svg, .main-mv-swiper .swiper-button-next svg {
    display: none;
}
.main-mv-swiper .swiper-button-next::after, .main-mv-swiper .swiper-button-prev::after{
	display: none;
}
/* ボタンサイズ調整（必要に応じて） */
.main-mv-swiper .swiper-button-prev, .main-mv-swiper .swiper-button-next {
    width: 28px;
    height: 28px;
}
/* 画像のクリック領域 */
.main-mv-swiper .swiper-button-prev img, .main-mv-swiper .swiper-button-next img {
    display: block;
    pointer-events: none; /* ← クリックは親divに */
}
.main-mv-swiper .swiper-button-next {
    right: 170px;
}
.main-mv-swiper .swiper-button-prev {
    left: 170px;
}
.read-contents {
    position: relative;
    background-color: #313c8e;
    padding: 70px 40px 100px;
}
.read-contents::before {
    content: "";
    background-image: url("../images/bg/read_left.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 129px;
    height: 395px;
}
.read-contents::after {
    content: "";
    background-image: url("../images/bg/read_right.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
        width: 142px;
    height: 420px;
}
.read-contents h2 {
    width: 320px;
    margin: 0px auto;
}
.read-contents p {
    font-size: 1.3rem;
    text-align: center;
    line-height: 2.6;
    color: #fff;
    margin-top: 10px;
}
.link-contents {
    background-color: #fff;
    padding: 40px 0px 20px;
}
.link-box ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.link-box li {
    width: 48%;
    margin-bottom: 20px;
}
.link-box li a {
    --offset: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    text-decoration: none;
    /* 押し込み用 */
    transform: translate(0, 0);
    transition: transform 0.15s ease;
}
.link-box li a img {
    border: 2px solid #000;
    background-color: #fff;
}
#bts2026-lp .link-box li p {
    display: block;
    background-color: #fff;
    width: 100%;
    padding: 10px 0px;
    font-family: "Changa One", sans-serif;
    text-align: center;
    font-size: 2.8rem;
    color: #313c8e;
    font-weight: 400;
    line-height: 2;
	letter-spacing: 0.1rem;
    border: 2px solid #000;
}

.link-box li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    border: 2px solid #000;
    z-index: -1;
    transform: translate(var(--offset), var(--offset));
    transition: transform 0.15s ease;
}
/* hover：沈む（product-btnと同じ理屈） */
.link-box li a:hover {
    transform: translate(var(--offset), var(--offset));
}
/* 緑プレートを引っ込める */
.link-box li a:hover::before {
    transform: translate(0, 0);
}
/* クリック時（任意） */
.link-box li a:active {
    transform: translate(calc(var(--offset) + 2px), calc(var(--offset) + 2px));
}
.link-box li:nth-of-type(1) a::before{
	background: #d65278;
}
.link-box li:nth-of-type(2) a::before{
	background: #ccda7e;
}
.link-box li:nth-of-type(3) a::before{
	background: #ffda64;
}
.link-box li:nth-of-type(4) a::before{
	background: #d65278;
}
.link-box li:nth-of-type(5) a::before{
	background: #a683dd;
}
.link-box li:nth-of-type(6) a::before{
	background: #a1e5db;
}
.margin-box {
    padding: 0px 30px 80px;
}
.link-contents .margin-box {
    padding: 0px 30px 20px;
}

#champion .margin-box,
#newbalance .margin-box{
	padding: 0px 30px 50px;
}
/* テキストスライダー */
.slide_text-contents {
    overflow: hidden;
    background-color: #ccda7e;
    padding: 7px 0px;
    border-top: 7px solid #313c8e;
    border-bottom: 7px solid #313c8e;
}
.slide_text-area {
    display: flex;
    align-items: center;
    animation: marquee-left 30s linear infinite;
    /* コンテンツを2倍に複製して無限ループ */
    width: max-content;
}
#bts2026-lp .slide_text-area p {
    font-family: "Changa One", sans-serif;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1;
    color: #313c8e;
    white-space: nowrap;
}
.white .slide_text-area p {
    color: #000;
}
.slide_text-area .slide_ta-img {
    width: 50px;
    margin: 0px 20px;
}
@keyframes marquee-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* 全体幅の半分ずらす */
    }
}
/* テキストスライダー */
#coleman {
    position: relative;
    padding-top: 65px;
}
#coleman::before {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 65px;
    top: 0;
    left: 0;
}
.brand-contents {
    position: relative;
    padding-bottom: 60px;
}
.circle-area {
    margin-top: -65px;
    width: 100%;
    height: 65px;
    /* ====== ここが「半円を透過」させるマスク ====== */
    --r: 24px; /* 半円半径 */
    --gap: 110px; /* 半円のピッチ */
    /* “穴”を作る: 黒(表示) / 透明(抜き) のマスク */
    -webkit-mask: /* 上側の半円を「透明」にしたいので、透明→黒の順で作る */ radial-gradient(circle var(--r) at calc(var(--gap)/2) 0, transparent 99%, #000 100%) 0 0 / var(--gap) 100% repeat-x;
    mask:
        radial-gradient(circle var(--r) at calc(var(--gap)/2) 0, transparent 99%, #000 100%) 0 0 / var(--gap) 100% repeat-x;
}
#coleman .brand-contents {
    position: relative;
    background-image:
        repeating-linear-gradient(0deg, #ffffff, #ffffff 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px), repeating-linear-gradient(90deg, #ffffff, #ffffff 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px);
    background-color: #eab8cf;
    background-size: 40px 40px;
    background-repeat: repeat;
    background-position: center;
}
#coleman .circle-area {
    background-image:
        repeating-linear-gradient(0deg, #ffffff, #ffffff 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px), repeating-linear-gradient(90deg, #ffffff, #ffffff 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px);
    background-color: #eab8cf;
    background-size: 40px 40px;
    background-position: center;
}
.brand-contents h2 {
    margin: 0px auto 30px;
}
#coleman .brand-contents h2 {
    width: 388px;
}
.bts_point-area {
    padding-left: 100px;
	margin-top: 40px;
    margin-bottom: 40px;
}
.bts_point-area .fade-in-text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: calc(var(--delay) * 0.5s);
}
.fade-in-text.visible {
    opacity: 1;
    transform: translateY(0);
}
.bts_point-area li {
    position: relative;
    width: 366px;
    height: 63px;
    margin-bottom: 20px;
}
.bts_point-area .point-box {
    background-image: url("../images/sb_white.png");
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    filter: drop-shadow(0px 7px 0px rgba(0, 0, 0, 0.75));
}
.bts_point-area li.first .point-box {
    padding-right: 30px;
    padding-left: 0px;
}
.bts_point-area li.second::before {
    content: "";
    width: 87px;
    height: 87px;
    position: absolute;
    left: -95px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/icon_001.png");
    background-size: contain;
    background-repeat: no-repeat;
}
#coleman .bts_point-area li.first .point-box {
    background-image: url("../images/sb_blue.png");
    background-size: contain;
    background-repeat: no-repeat;
}
.bts_point-area p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #000;
	font-feature-settings: "palt" 1;
}
.bts_point-area .first p {
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
}
#coleman .bts_point-area li.second::before {
    background-image: url("../images/icon_001.png");
    background-size: contain;
    background-repeat: no-repeat;
}
.product-area {
    width: 90%;
    margin: 0px auto;
}
.product-area .mainimg-area {
    position: relative;
    z-index: 3;
    margin-bottom: 50px;
}
.product-area .mainimg-area .front {
    position: relative;
    z-index: 2;
}
#bts2026-lp .product-area .mainimg-area .back {
    position: absolute;
    top: -14px;
    left: -14px;
    z-index: 1;
    width: 107%;
    mix-blend-mode: multiply;
}

.product-head {
    margin-bottom: 10px;
}
.product-head span {
    display: inline-block;
    font-size: 2.6rem;
    font-weight: 600;
	font-feature-settings: "palt" 1;
    padding: 6px 10px 7px;
    line-height: 1;
    margin-bottom: 10px;
}
#coleman .product-head span {
    color: #313c8e;
    background-color: #9eefe6;
}
.product-area .price, .product-area .capacity {
    font-size: 2.0rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.product-btn {
    display: block;
    width: 350px;
    margin: 30px auto 0px;
    border: 2px solid #000;
    background-color: #fff;
    filter: drop-shadow(0px 7px 0px rgba(0, 0, 0, 0.75));
    padding: 15px 44px;
    transition:
        transform 0.15s ease, filter 0.15s ease;
}
.product-btn:hover {
    transform: translateY(7px);
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.75));
}
.product-btn.red {
    background-color: #d65278;
}
#bendavis .brand-contents {
    position: relative;
    background-image: url("../images/bg/bg_purple.png");
    background-size: 473px 473px;
    background-repeat: repeat;
    background-position: center;
}
#bendavis .circle-area {
    background-image: url("../images/bg/bg_purple.png");
    background-size: 473px 473px;
    background-repeat: repeat;
    background-position: center;
}
#bendavis .brand-contents h2 {
    max-width: 456px;
}
#bendavis .bts_point-area .first .point-box {
    background-image: url("../images/sb_orange.png");
}
#bendavis .bts_point-area li.second::before {
    background-image: url("../images/icon_002.png");
}
#bendavis .product-head span {
    background-color: #f9deb7;
    color: #313c8e;
}
#bendavis .product-area .price, #bendavis .product-area .capacity {
    color: #fff;
}

.stripe-area {
    background-image: repeating-linear-gradient(314deg, #d6c7f2, #d6c7f2 2px, #ceb3dd 2px, #ceb3dd 17px);
    padding-top: 30px;
}
.online-head {
    margin-bottom: 20px;
}
.online-area {
    padding: 26px;
    border-radius: 30px;
    background-color: #313c8e;
}
.online-area .mainimg-area {
    position: relative;
}
#bts2026-lp .online-area .mainimg-area .deco {
    position: absolute;
    z-index: 3;
    width: 234px;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
}
#bts2026-lp .online-area .mainimg-area .front {
    position: absolute;
    z-index: 3;
    width: 100%;
    bottom: 0px;
    left: 0;
}
.online-area .mainimg-area::after {
    content: "";
    background-image: url("../images/icon_heart.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 3;
    bottom: 15px;
    left: 15px;
    width: 110px;
    height: 110px;
}
.online-area .pointo-head{
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 600;
    padding: 6px 10px 7px;
    line-height: 1;
    margin: 15px 0px;
	color: #313c8e;
	background-color: #fff;
}

.online-area .product-head {
    font-size: 2.6rem;
    font-weight: 600;
    color: #fff;
	font-feature-settings: "palt" 1;
	margin-top: 15px;
}
.online-area .pointo-head + .product-head {
    margin-top: 0px;
}

.online-area .price, .online-area .capacity {
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}
.sbi-box {
    padding: 0px 30px 50px;
}
.sbi-head {
    margin-top: 80px;
}
.sbi-subhead {
    font-size: 3.0rem;
    font-weight: 600;
    letter-spacing: 0.5rem;
    color: #fff;
    background-color: #313c8e;
    padding: 5px 5px 6px;
    text-align: center;
    margin: 80px 20px 0px;
}
.sbi-swiper-wrap {
    position: relative;
}
.sbi-swiper {
    margin: 20px 20px 0px;
}
.sbi-swiper li {
    padding-bottom: 20px;
}
.sbi-swiper .item-box {
    border: 3px solid #000;
    border-radius: 13px;
    background-color: #fff;
    padding: 30px 23px;
    filter: drop-shadow(0px 10px 0px rgba(49, 60, 142, 1.0));
}
.sbi-swiper .item-box .item {
    border: 3px solid #000;
    background-color: #d65278;
    margin-bottom: 25px;
}
.second .sbi-swiper .item-box .item {
    background-color: #c8dc6f;
}
.third .sbi-swiper .item-box .item {
    background-color: #9492d3;
}
.sbi-swiper .item-box h5 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #313c8e;
}
.sbi-swiper .item-box .price {
    font-size: 2.1rem;
    font-weight: 500;
    color: #313c8e;
    margin-top: 5px;
}
.sbi-swiper .product-btn.red {
    position: relative;
    margin: 40px auto 0px;
}
.swiper-button-prev.sbi-prev, .swiper-button-next.sbi-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-button-prev.sbi-prev img, .swiper-button-next.sbi-next img {
    pointer-events: none;
}
.swiper-button-prev.sbi-prev svg, .swiper-button-next.sbi-next svg {
    display: none;
}
.sbi-swiper-wrap .swiper-button-next::after, .sbi-swiper-wrap .swiper-button-prev::after{
	display: none;
}
/* 左右の位置 */
.swiper-button-prev.sbi-prev {
    left: -5px; /* ← 外に出す */
}
.swiper-button-next.sbi-next {
    right: -5px;
}
.sbi-box.third {
    margin-bottom: 30px;
}
#converse .brand-contents {
    position: relative;
    background-image:
        repeating-linear-gradient(0deg, #fbcfc9, #fbcfc9 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px), repeating-linear-gradient(90deg, #fbcfc9, #fbcfc9 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px);
    background-color: #f48678;
    background-size: 40px 40px;
    background-repeat: repeat;
    background-position: center;
}
#converse .circle-area {
    background-image:
        repeating-linear-gradient(0deg, #fbcfc9, #fbcfc9 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px), repeating-linear-gradient(90deg, #fbcfc9, #fbcfc9 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px);
    background-color: #f48678;
    background-size: 40px 40px;
    background-position: center;
}
#converse .brand-contents h2 {
    max-width: 395px;
}
#converse .bts_point-area .first .point-box {
    background-image: url("../images/sb_green.png");
}
#converse .bts_point-area li.second::before {
    background-image: url("../images/icon_003.png");
}
#converse .product-head span {
    color: #313c8e;
    background-color: #ccda7e;
}
#converse .stripe-area {
    background-image: repeating-linear-gradient(314deg, #f29a76, #f29a76 2px, #f7ba8b 2px, #f7ba8b 17px);
}
#champion .brand-contents {
    position: relative;
    background-image: url("../images/bg/bg_green.png");
    background-size: 473px 473px;
    background-repeat: repeat;
    background-position: center;
}
#champion .circle-area {
    background-image: url("../images/bg/bg_green.png");
    background-size: 473px 473px;
    background-repeat: repeat;
    background-position: center;
}
#champion .brand-contents h2 {
    max-width: 456px;
}
#champion .bts_point-area .first .point-box {
    background-image: url("../images/sb_orange.png");
}
#champion .bts_point-area li.second::before {
    background-image: url("../images/icon_001.png");
}
#champion .product-head span {
    color: #313c8e;
    background-color: #f9deb7;
}
#champion .product-area .price, #champion .product-area .capacity {
    color: #313c8e;
}
#champion .sbi-swiper .item-box .item {
    background-color: #9492d3;
}
#newbalance .brand-contents {
    position: relative;
    background-image:
        repeating-linear-gradient(0deg, #caa3b6, #caa3b6 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px), repeating-linear-gradient(90deg, #caa3b6, #caa3b6 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px);
    background-color: #ffd37b;
    background-size: 40px 40px;
    background-repeat: repeat;
    background-position: center;
}
#newbalance .circle-area {
    background-image:
        repeating-linear-gradient(0deg, #caa3b6, #caa3b6 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px), repeating-linear-gradient(90deg, #caa3b6, #caa3b6 1px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 46px);
    background-color: #ffd37b;
    background-size: 40px 40px;
    background-position: center;
}
#newbalance .bts_point-area .first .point-box {
    background-image: url("../images/sb_red.png");
}
#newbalance .bts_point-area li.second::before {
    background-image: url("../images/icon_005.png");
}
#newbalance .product-head span {
    color: #313c8e;
    background-color: #fff;
}
#newbalance .sbi-swiper .item-box .item {
    background-color: #9492d3;
}
.others-contents {
    background-color: #a1e5db;
    background-image: url("../images/bg/bg_others.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
}
.others-contents h2 {
    margin-bottom: 40px;
}
.others-main-box h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #313c8e;
    margin-top: 20px;
    margin-bottom: 10px;
}
.others-main-box .price {
    font-size: 2.1rem;
    font-weight: 600;
    color: #313c8e;
}
.others-swiper-wrap{
	position: relative;
}
.others-swiper {
	    margin: 80px 20px 0px;
}
.others-swiper-wrap .swiper-button-prev, .others-swiper-wrap .swiper-button-next {
    width: 48px;
    height: 48px;
    top: var(--swiper-navigation-top-offset, 30%);
}
.others-swiper-wrap .swiper-button-prev{
	  left: -10px;
}
.others-swiper-wrap .swiper-button-next{
	  right: -10px;
}
.others-swiper-wrap .swiper-button-prev svg, .others-swiper-wrap .swiper-button-next svg {
    display: none;
}
.others-swiper-wrap  .swiper-button-next::after, .others-swiper-wrap  .swiper-button-prev::after{
	display: none;
}
.others-swiper li {
    padding-bottom: 30px;
}
.others-swiper h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #313c8e;
    margin-bottom: 10px;
}
.others-swiper .price {
    font-size: 2.1rem;
    font-weight: 600;
    color: #313c8e;
}
.others-swiper .price + h3{
	margin-top: 25px;
}
.others-swiper .item{
	background-color: #fff;
	margin-bottom: 20px;
	
}
.campaign-contents {
    background-color: #d65278;
    padding-top: 20px;
}
.campaign-img {
	display: block;
    margin: 60px auto 50px;
}
.campaign-contents .note {
    font-size: 1.4rem;
    line-height: 2.2;
}
.br_sp {
    display: none;
}
@media screen and (max-width: 1600px) {
    .left-menu .side-stack img {
        right: 300px;
    }
    .right-menu .side-stack img {
        right: 330px;
    }
}
@media screen and (max-width: 1242px) {
    .campaign-btn {
        position: fixed;
        z-index: 5;
        bottom: 30px;
        right: 30px;
        width: 20%;
    }
}
@media screen and (max-width: 1100px) {
    .left-menu .side-stack img {
        right: 360px;
    }
}
@media screen and (max-width: 555px) {
    .popup__content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: calc(100% - 32px); /* 余白確保 */
        margin: 0;
        transform: translate(-50%, -50%) scale(.98);
    }
    .popup.is-open .popup__content {
        transform: translate(-50%, -50%) scale(1);
    }
    .popup__close {
        margin-left: 89%;
    }
    .campaign-btn {
        bottom: 65px;
        right: 15px;
        width: 120px;
    }
    .main_bg {
        overflow-x: hidden;
    }
    .main_mv-contents {
        height: 765px;
        background-position: bottom center;
        background-size: cover;
    }
    .main-mv-swiper .swiper-button-prev {
        left: 160px;
    }
    .main-mv-swiper .swiper-button-next {
        right: 160px;
    }
    .margin-box {
        padding: 0px 20px 80px;
    }
	#champion .margin-box,
#newbalance .margin-box{
	padding: 0px 20px 50px;
}
    .link-contents .margin-box {
        padding: 0px 20px 20px;
    }
    .read-contents::before {
			background-image: url(../images/bg/read_left_sp.png);
        width: 80px;
    }
    .read-contents::after {
			    background-image: url(../images/bg/read_right_sp#bts2026-lp .link-box li p.png);
        width: 92px;
        height: 280px;
    }
    .read-contents {
        padding: 70px 10px 70px;
    }
    .read-contents h2 {
        width: 280px;
    }
    .read-contents p {
        font-size: 1.4rem;
    }
    #coleman .brand-contents h2 {
        width: 80%;
    }
    .bts_point-area {
        padding-left: 80px;
    }
    .bts_point-area li {
        position: relative;
        width: 100%;
        height: 70px;
        margin-bottom: 40px;
    }
    .bts_point-area li.second::before {
        width: 67px;
        height: 67px;
        left: -75px;
    }
    #bts2026-lp .product-area .mainimg-area .back {
        width: 105%;
        top: 10px;
        left: 5px;
    }
    #bendavis .brand-contents h2 {
        width: 85%;
    }
    #converse .brand-contents h2 {
        width: 80%;
    }
    #champion .brand-contents h2 {
        width: 86%;
    }
    .product-head span {
        font-size: 2.2rem;
    }
    .product-area .price, .product-area .capacity {
        font-size: 1.8rem;
    }
    .product-btn {
        width: 90%;
    }
    .sbi-subhead {
        font-size: 2.6rem;
        margin: 40px 0px 0px;
    }
    .sbi-swiper {
        margin: 20px 0px 0px;
    }
    .sbi-swiper .item-box .price {
        font-size: 1.8rem;
    }
    .others-main-box h3 {
        font-size: 2.2rem;
    }
    .others-main-box .price {
        font-size: 1.8rem;
    }
    .others-swiper h3 {
        font-size: 2.2rem;
    }
    .others-swiper .price {
        font-size: 1.8rem;
    }
    .modal-close {
        right: 0;
        height: 27px;
    }
    .br_sp {
        display: block;
    }
}
@media screen and (max-width: 450px) {
    .main_mv-contents {
        height: 630px;
    }
    .main-mv-swiper {
        margin-top: 80px;
    }
    .main-mv-swiper .swiper-button-next {
        right: 140px;
    }
    .main-mv-swiper .swiper-button-prev {
        left: 140px;
    }
    .bts_point-area .point-box {
        background-image: url(../images/sb_white_sp.png);
			background-size: 100%;
        height: 90px;
        padding-bottom: 10px;
    }
    #coleman .bts_point-area li.first .point-box {
        background-image: url(../images/sb_blue_sp.png);
			height: 100%;
    }
    #bendavis .bts_point-area li.first .point-box, #champion .bts_point-area li.first .point-box {
        background-image: url(../images/sb_orange_sp.png);
			height: 100%;
    }
    #converse .bts_point-area li.first .point-box {
        background-image: url(../images/sb_green_sp.png);
			height: 100%;
    }
    #newbalance .bts_point-area li.first .point-box {
        background-image: url(../images/sb_red_sp.png);
			height: 100%;
    }
    #bts2026-lp .online-area .mainimg-area .deco {
        width: 50%;
    }
    .swiper-button-next.sbi-next {
        right: -25px;
    }
    .swiper-button-prev.sbi-prev {
        left: -25px;
    }
    .online-area .mainimg-area::after {
        width: 70px;
        height: 70px;
    }
	.online-area .pointo-head {
                font-size: 1.6rem;
        letter-spacing: -0.05rem;
    }
    .online-area .product-head {
        font-size: 2.2rem;
    }
}
@media screen and (max-width: 400px) {
    .main_mv-contents {
        height: 570px;
    }
    .main-mv-swiper .swiper-button-prev, .main-mv-swiper .swiper-button-next {
        width: 20px;
        height: 20px;
    }
    .main-mv-swiper .swiper-button-next {
        right: 125px;
    }
    .main-mv-swiper .swiper-button-prev {
        left: 125px;
    }
	#bts2026-lp .link-box li p{
		font-size: 2.3rem;
	}
}
@media screen and (max-width: 360px) {
    .main_mv-contents {
        height: 520px;
    }
    .main-mv-swiper .swiper-button-next {
        top: 120px;
        right: 115px;
    }
    .main-mv-swiper .swiper-button-prev {
        top: 120px;
        left: 115px;
    }
    .read-contents h2 {
        width: 230px;
    }
	#bendavis .product-head span, #bendavis .online-area .product-head{
		letter-spacing: -0.1rem;
	}
	#bts2026-lp .link-box li p{
		font-size: 2.2rem;
	}
    .bts_point-area .point-box {
        padding-bottom: 15px;
    }
    .bts_point-area li {
        margin-bottom: 20px;
    }
    #bts2026-lp .product-area .mainimg-area .back {
        width: 103%;
    }
    .others-swiper .slick-slide {
        margin: 0 30px;
    }
}