#page {
    position: relative;
    z-index: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    /*background: #f6f7f8;*/
    background: #343a40 !important;
    overflow: hidden;
}

@media only screen and (max-width: 738px) {
    #page {
        background:#edeff1;
    }
}

/* PARTNER */
.p-topPartner {
    padding: 8px 4px; /* 内側の余白 */
    background-color: #fff; /* 背景色 */
}

.p-topPartner_body {
    display: flex; /* Flexboxでレイアウト */
    flex-wrap: wrap; /* 要素を折り返し可能に */
    justify-content: space-between; /* 均等配置 */
    gap: 0; /* 隙間なし（必要に応じて調整可能） */
}

.p-topPartner_body_item {
    width: calc(10%); /* 横に10個並べる幅 */
    box-sizing: border-box; /* パディングやボーダーを幅に含める */
    text-align: center; /* テキストを中央揃え */
    padding: 2px 6px; /* 内側の余白 */
}

.p-topPartner_body_item a {
    text-align: center;
    display: block; /* ブロック要素化 */
}

.p-topPartner_body_item a > img {
    display: block; /* ブロック要素化 */
    margin: 0 auto; /* 中央揃え */
    width: auto; /* アスペクト比を維持 */
    max-width: 100%; /* 親要素の幅を超えない */
}

@media (max-width: 768px) {
    .p-topPartner_body_item {
        width: calc(20%); /* 横に5個並べる幅 */
    }
}
/* PARTNER */

/* FOOTER NAVI */
@media (max-width: 768px) {
    .scrollableNavigationBar {
        position: fixed; /* 画面下部に固定 */
        bottom: 0; /* 下端に配置 */
        left: 0;
        right: 0;
        display: block;
        overflow-x: auto; /* 横スクロール有効 */
        overflow-y: hidden; /* 縦スクロール無効 */
        background: #24292e; /* 背景色 */
        scrollbar-width: none; /* Firefoxでスクロールバー非表示 */
        z-index: 9999; /* 他要素より前面に表示 */
    }

    .scrollableNavigationBar ul {
        display: flex;
        justify-content: space-between; /* 均等配置 */
        list-style: none; /* リストマーカー非表示 */
        padding: 0; /* デフォルトの余白を削除 */
        margin: 0; /* デフォルトの余白を削除 */
        width: calc(25% + 20rem); /* 画面幅に合わせる */
    }

    .scrollableNavigationBar ul>li {
        flex: 0 0 20%; /* 各アイテムを幅20%で固定 (横に5個配置) */
        text-align: center; /* テキストを中央揃え */
        box-sizing: border-box; /* パディングやボーダーを含めた幅調整 */
        border: 1px solid #8477a0;
    }

    .scrollableNavigationBar ul>li+li {
        border-left: none;
    }

    .scrollableNavigationBar ul>li>a,
    .scrollableNavigationBar ul>li>a>img {
        display: block;
        width: 100%; /* アイテム内で全幅に */
        height: auto; /* アスペクト比を保つ */
    }

    /* Webkit系ブラウザのスクロールバーを非表示 */
    .scrollableNavigationBar::-webkit-scrollbar {
        display: none;
    }
}
/* FOOTER NAVI */


.newsList > li {
  position: relative;
}

.newsList > li:after {
  background: #d6d6d6; /* ボーダーの色 */
  bottom: 0;
  content: "";
  display: block;
  height: 1px; /* ボーダーの高さ */
  left: 0;
  margin-left: 15px;
  position: absolute;
  width: calc(100% - 30px); /* 横幅をリストアイテムの幅に合わせる */
}

/* ベーススタイル */
.news-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center; /* 垂直方向に中央揃え */
  gap: 8px; /* NEWSとアイコンの間のスペース */
}

/* アイコンのネオン風エフェクト */
.neon-icon_primary {
  font-size: 20px; /* アイコンのサイズ */
  color: #007bff; /* 濃い青 */
  text-shadow: 
    0 0 5px #00f, 
    0 0 10px #00f, 
    0 0 20px #00f, 
    0 0 40px #0ff, 
    0 0 80px #0ff, 
    0 0 100px #0ff;
}
.neon-icon_white {
  color: #fff; /* ベースの色は白 */
  text-shadow: 
    0 0 2.5px #fff,   /* 小さな白い光 */
    0 0 5px #fff,  /* 少し広がった白い光 */
    0 0 10px #ccc,  /* 明るいグレーの光 */
    0 0 20px #ccc,  /* より広がったグレーの光 */
    0 0 40px #bbb;  /* 一番外側の薄い光 */
}

.neon-icon_deeppink {
    color: #e83e8c;
    text-shadow: 
        0 0 5px #e83e8c, 
        0 0 10px #e83e8c, 
        0 0 20px #ff6ec7, 
        0 0 40px #ff6ec7, 
        0 0 80px #ff6ec7, 
        0 0 100px #ff6ec7;
}



/* テキストのスタイル */
.news-text {
  display: inline-flex;
  align-items: center; /* アイコンとテキストを中央揃え */
  gap: 8px; /* テキストとアイコンの間隔 */
}


.gymnast-slick__item {
  margin-right: 1px;
  margin-left: 1px;
  text-align: center;

}

.gymnast-slick__item img {
  height: auto;
  width: 100%;
  transform: scale(0.8);
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  border-radius: 8px;
}


.gymnast-slick__item.slick-center img {
  transform: scale(1.05); /* 少し拡大 */
  filter: grayscale(0%);
  opacity: 1;
}

.gymnast-caption {
  display: none; /* デフォルトは非表示 */
  margin-top: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.gymnast-slick__item.slick-center .gymnast-caption {
  display: block; /* 中央スライドのキャプションを表示 */
}





.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* 横に最大10名 */
  gap: 10px; /* 各カードの間隔 */
  padding: 20px 0 20px 0;
}

.player-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa; /* カードの背景色 */
  border: 1px solid #ddd;
  border-radius: 8px;
  /*padding: 10px;*/
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.player-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.player-name {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  white-space: nowrap; /* 改行を防ぐ */
  overflow: hidden;
  text-overflow: ellipsis; /* 名前が長い場合の省略表示 */
}





.js-cardGoods {
    position: relative;
    display: block;
    width: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-transition: opacity 50ms 0s linear;
    transition: opacity 50ms 0s linear;
    border-radius: 4px;
    overflow: hidden;
    padding: 20px 0 20px 0;
}

.js-cardGoods:disabled {
    opacity: 0.3
}

.js-cardGoods_inner {
    position: relative;
    display: block
}

.js-cardGoods_inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
    border: 2px solid rgba(194,0,0,0);
    -webkit-transition: all 50ms 0s linear;
    transition: all 50ms 0s linear;
    border-radius: 4px
}

.js-cardGoods_inner:hover {
    -webkit-box-shadow: none;
    box-shadow: none
}

.js-cardGoods_inner:hover:before {
    border: 2px solid #007bff;
    box-shadow: 0 0 10px 2px rgba(0, 123, 255, 0.7); /* ネオン風の光を作る */
    transition: box-shadow 0.3s ease-in-out; /* スムーズな変化 */
}

.js-cardGoods_inner_image {
    width: 100%;
    height: auto
}

.js-cardGoods_inner_title {
    width: 100%;
    padding: 16px;
    line-height: 1.4;
    color: #0a0a0a;
    background-color: #f6f6f6;
    min-height: 64px;
    overflow: hidden
}

.js-cardGoods_inner_title_text {
    font-size: 1rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /*min-height:3rem;*/
    line-height: normal;
}

.tablet .js-cardGoods_inner_title_text {
    font-size: 1.6rem
}

.js-cardGoods_inner_title_text_loading {
    width: 72%
}

.js-cardGoods_inner_title_text_loading img {
    width: 100%;
    height: 18px
}

.js-cardGoods_inner_title_price {
    margin-top: 8px;
    font-size: 1.2rem;
    color: #707070
}

.js-cardGoods_inner_title_price span {
    display: inline-block
}


.keen-slider {
  position: relative;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #007bff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.arrow--left {
  left: -15px;
}

.arrow--right {
  right: -15px;
}

.arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}


.js-linkButton {
    position: relative;
    display: inline-block;
    width: 100%;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    color: #0a0a0a;

    border-radius: 25px;
    max-width: 290px;
    padding: 14px;
    text-align: center;
    text-decoration: none !important;
    line-height: 1.5;
    font-size: 1.5rem;
    font-weight: bold;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear
}

.js-linkButton:hover {
    opacity: 0.7;
    -webkit-transform: scale(0.96);
    transform: scale(0.96)
}

.js-linkButton.__small {
    font-size: 1.3rem;
    padding: 12px;
    max-width: 240px
}

.js-linkButton:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid rgba(246,246,246,0.7);
    border-radius: 25px
}

.js-linkButton.__outline {
    color: #f6f6f6;
    background-image: none !important;
    background-color: rgba(255,255,255,0.08) !important
}

.js-linkButton:disabled {
    opacity: 0.3
}


.rsv {
    display: inline-block;
    border-radius: 50%; /* 必要なら角を丸くする */
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.7), 0 0 20px rgba(0, 123, 255, 0.5); /* ネオン風の光を追加 */
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* スムーズな変化 */
}

.rsv:hover {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.9), 0 0 30px rgba(0, 123, 255, 0.7); /* ホバー時に光を強調 */
    transform: scale(1.05); /* ホバー時に少し拡大 */
}




.js-cardInsta {
    position: relative;
    display: block;
    width: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-transition: opacity 50ms 0s linear;
    transition: opacity 50ms 0s linear;
    border-radius: 4px;
    overflow: hidden;
    padding: 20px 0 20px 0;
}

.js-cardInsta:disabled {
    opacity: 0.3
}

.js-cardInsta_inner {
    position: relative;
    display: block
}

.js-cardInsta_inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
    border: 2px solid rgba(194,0,0,0);
    -webkit-transition: all 50ms 0s linear;
    transition: all 50ms 0s linear;
    border-radius: 4px
}

.js-cardInsta_inner:hover {
    -webkit-box-shadow: none;
    box-shadow: none
}

.js-cardInsta_inner:hover:before {
    border: 2px solid #007bff;
    box-shadow: 0 0 10px 2px rgba(0, 123, 255, 0.7); /* ネオン風の光を作る */
    transition: box-shadow 0.3s ease-in-out; /* スムーズな変化 */
}

.js-cardInsta_inner_image {
    width: 100%;
    height: auto
}

.js-cardInsta_inner_title {
    width: 100%;
    padding: 16px;
    line-height: 1.4;
    color: #0a0a0a;
    background-color: #f6f6f6;
    min-height: 64px;
    overflow: hidden
}

.js-cardInsta_inner_title_text {
    font-size: 1rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /*min-height:3rem;*/
    line-height: normal;
}

.tablet .js-cardInsta_inner_title_text {
    font-size: 1.6rem
}

.js-cardInsta_inner_title_text_loading {
    width: 72%
}

.js-cardInsta_inner_title_text_loading img {
    width: 100%;
    height: 18px
}

.js-cardInsta_inner_title_price {
    margin-top: 8px;
    font-size: 1.2rem;
    color: #707070
}

.js-cardInsta_inner_title_price span {
    display: inline-block
}

.keen-slider-insta {
  position: relative;
}
