@charset "UTF-8";
:root{
  --slider_num:0; /* jsでスライダーをカウントした個数に変わる */
}

/* kanban css */

.title_bg{
  background-image: url(https://r.r10s.jp/evt/event/sports/week/_pc/img/20250919/title_base.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width:640px;
  flex-shrink: 0;
}

.d-demo._top{
    background-image: url(https://r.r10s.jp/evt/event/sports/week/_cmn/img/20250919/btm_slide_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
    width:640px;
  flex-shrink: 0;
}
.d-demo._btm{
    background-image: url(https://r.r10s.jp/evt/event/sports/week/_cmn/img/20250919/top_slide_bg_2.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width:640px;
  flex-shrink: 0;
}

/* kanban_slider */
.ecm-kanban {
  position: relative;
  overflow: hidden;
}
.swiper-box {
  display: flex;
  flex-direction:row;
  flex-wrap: nowrap;
  justify-content: center;
}
.d-demo {
  width: 640px;
  min-height:320px;
  background-color: #ccc;
}
.d-demo__slider {
  width: 100%;
}
.swiper-wrapper {
  display: flex;
  flex-direction: row;
  width:max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
}
.d-demo__slide {
  display:block;
  /* width: 100% ; */
  height:320px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.d-demo__slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.swiper-container-main {
  transition:
    opacity 0.6s linear,
    transform 0.3s linear;
}
.swiper-box {
  position: relative;
}
.kanban-logo {

  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ffffff;
  bottom: 0;
  box-sizing: border-box;
}
.kanban-logo img {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.kanban-logo.logo-white img {
  transform: translateY(calc(-50% + 0px));
  left: 0%;
}
.kanban-title {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -28%);
  z-index: 30;
  width: 100%;
  text-align: center;
  color: #ffffff;
}
.kanban-title p {
  -moz-text-shadow: 0px 0px 9px rgba(0, 0, 0, 1);
  -webkit-text-shadow: 0px 0px 9px rgba(0, 0, 0, 1);
  -ms-text-shadow: 0px 0px 9px rgba(0, 0, 0, 1);
  text-shadow: 0px 0px 9px rgba(0, 0, 0, 1);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    '游ゴシック体',
    YuGothic,
    'Yu Gothic Medium',
    Roboto,
    'ヒラギノ角ゴ ProN W3',
    Hiragino Kaku Gothic ProN,
    'メイリオ',
    Meiryo,
    sans-serif;
  font-size: 4vw;
}
.d-demo__slider{
  opacity: 0;
}
.fade_in {
  opacity: 1;
  -webkit-transition: opacity 1s linear;
  -moz-transition: opacity 1s linear;
  -ms-transition: opacity 1s linear;
  -o-transition: opacity 1s linear;
  transition: opacity 1s linear;
}


/*
 slide
==================================================== */
.title_logolist {
  visibility: hidden;
  height: 0;
}
.slider {
  background-color: #000000;
  height:70px ;
  padding: 10px 0;
  width: 100%;
  box-sizing: border-box;
  z-index:2;
}
.slideWrap {
  width: 1250px;
  height: 100%;
  position: relative;
  white-space: nowrap;
  touch-action:none;
  /*-webkit-overflow-scrolling: touch;*/
  overflow-x: scroll;
  overflow-y: hidden;
  margin:0 auto;

}

.slideWrap:before,
.slideWrap:after{
    position: absolute;
    z-index: 2;
    display: block;
    content: "";
    width: 160px;
    height: 100%;
}
.slideWrap:before{
  left:0;
  top:0;
  background: linear-gradient(to right,#000 0%, transparent 100%);
}
.slideWrap:after{
  right:0;
  top:0;
  background: linear-gradient(to left,#000 0%, transparent 100%);
}

.slideshow {
  display: flex;
  flex-wrap: nowrap !important;
  align-items:center;
  justify-content: unset;
  padding: 0;
  width: calc(164px * var(--slider_num));
  /* ↑calc(ロゴ1枚の幅 * ロゴが並ぶ枚数)*/
  height: 100%;
;
}
.slideWrap.anime_start._01 .slideshow{
  animation: loop-slide 60s infinite linear;
}
.slideshow > li {
  min-width:calc((100% - (4px * var(--slider_num)) )/ var(--slider_num));
  /* ↑calc((100% - calc(余白の数値 * ロゴが並ぶ枚数) / ロゴが並ぶ枚数)*/
  width: 100%;
  height: 100%;
  margin-right: 4px;
  display: flex;
  align-items: center;
  /* border-radius: 4px; */
  overflow:hidden;
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: 160px;
}
/*
.slideshow > li a {
  display: block;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: ease;
  transition-duration: 0.3s;
}
.slideshow > li a:active{
  transform: scale(1.05);
  transform-origin:center!important;
}
*/
.slideWrap .slideshow li img {
  width: 100%;
  height: 100%;
}
  @keyframes loop-slide {
    from {
  transform: translateX(0%);
    }
    to {
  transform: translateX(-100%);
    }
}
.paused{animation-play-state: paused !important;}
.slider .slideWrap {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slider .slideWrap::-webkit-scrollbar {
  display: none;
}
.rad-table-existItemDisplay li,
.rad-table-body li {
  overflow: hidden;
}




/*
 floatingnavi
============================================*/
.ecm-floating-navi-container._sports_week{

}
.ecm-floating-navi-container._sports_week .ecm-floating-navi{
  height: 56px;
  width:960px;
  margin:0 auto;
}

.ecm-floating-navi-container._sports_week .ecm-floating-navi>*:first-child{
  margin-left: 0;
}

.ecm-floating-navi-container._sports_week .ecm-floating-navi-item.ecm-floating-navi-item-anchor{
  width: 25%;
  font-size:14px;
  padding: 4px 12px;
  background-color: #F4F2ED;
}

.ecm-floating-navi-container._sports_week .ecm-floating-navi-item.ecm-floating-navi-item-anchor[data-in-viewport=true]{
  background-color: #000000;
  color:#ffffff;
  border-bottom: 2px solid #44ffa9;
}
/*
 entry_wrap
============================================*/
.entry_area{
  padding: 36px 0 80px;
}
.periodWrap01{
  margin: 28px 0 0;
  line-height: 1.4;
}
.period_wrap{
  margin-bottom: 20px;
}
.period{
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}
.period + .period{
  margin-top: 8px;
}
.period_title{
  font-size: 15px;
}
.cautionTxt_wrap{
  font-size: 12px;
}
.cautionTxt{
  /* text-indent: -1em;
  padding-left: 1em; */
  text-align: center;
  color: #333333;
  font-size: 12px;
  line-height: 1.6;
}
.campaignLink_wrap{
  margin: 16px auto;
  width: 480px;
}
.campaignLink_wrap li{
  text-align: center;
  box-sizing: border-box;
}
.campaignLink_wrap li + li{
  border-left: 1px solid #a5a5a5;
}
.campaignLink_wrap li a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 1.3;
   color: #333; 
}
.campaignLink_wrap li a ._icon_right{
  margin-left: 6px;
  color: #666;
}


/* contents */
.image_title{
  margin-bottom: 48px;
}
.brand_area{
  background-image: linear-gradient(to bottom,#ffffff 0,#ffffff 44px,#7BF3BC 44px,#7BF3BC 100%);
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.brand_area .image_title{
  margin-bottom: 20px;
}

.ad_alt{
  font-size:12px;
  color:#333333;
  line-height:1.6;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 48px;
}

.-mix-ad-area{}
.white_box{
  background-color: #ffffff;
  padding: 16px;
  border-radius: 12px;
}
.-mix-ad-area .white_box + .white_box{
  margin-top: 32px;
}

.shop_area{
  background-image: linear-gradient(to bottom,#ffffff 0,#ffffff 44px,#F4F2ED 44px,#F4F2ED 100%);
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.shop_area .ecm-ad{
  border-radius: 12px;
  overflow: hidden;
}

.search_area{
  background-image: linear-gradient(to bottom,#ffffff 0,#ffffff 44px,#F4F2ED 44px,#F4F2ED 100%);
  padding-bottom: 80px;
  margin-bottom: 80px;
}


.ecm-search._custom{
  border:none;
  height: 46px;
  width: 578px;
  margin: 0 auto;
  border-radius: 8px;
  margin-bottom: 48px;
}
.ecm-search._custom .ecm-search-input{
  padding-left:16px;
  font-size:12px;
}
.ecm-search._custom .ecm-search-submit{
  width:46px;
  background-color: #000000;
  color:#ffffff;
  border-radius:0 8px 8px 0;
  font-size: 20px;
}
.ecm-search._custom .ecm-search-submit .ecm-icon-search{
  font-size: 20px;  
}

.cat_ttl{
  text-align: center;
  font-size:24px;
  color:#333333;
  margin-bottom: 24px;
}

.category_wrap .d-grid{
  margin-bottom:48px;
}
.category_wrap .d-grid a:hover{
  color: #2e2e2e;
  opacity: 0.8;
}
.category_wrap .d-grid .cat_image{
  border-radius: 50%;
  overflow: hidden;
}
.category_wrap .d-grid .cat_image img{
  width: 100%;
}

.category_wrap .d-grid .cat_text{
  text-align: center;
  font-size:14px;
  line-height: 1.6;
  color:#2e2e2e;
  margin-top: 10px;
}


.search_brand{}
.search_brand + .search_brand{
  margin-top: 40px;
}

.search_brand_ttl{
  text-align: center;
  font-size:24px;
  margin-bottom: 16px;
}

.more_button{
  margin:24px auto 0 ;
  width:400px;
}

.more_button .ecm-button{
  width:100%;
  height:64px;
  background-color: #000000;
  color:#ffffff;
  font-size:18px;
  border-radius: 8px;
  padding:16px;
  position: relative;
}
.more_button .ecm-button i{
  position: absolute;
  right:13px;
}

.ranking_area{
  background-image: linear-gradient(to bottom,#ffffff 0,#ffffff 44px,#F4F2ED 44px,#F4F2ED 100%);
  padding-bottom: 80px;
  margin-bottom: 80px;
}


.design_tab{
  margin-bottom: 32px;
}
.design_tab + .design_tab{
  padding-top: 32px;
  border-top:2px solid #d9d9d9;
}
.design_tab .ecm-tab-card{

  background-color: #ffffff;
  color:#333333;
  font-size:12px;
  text-align: center;
  justify-content: center;
  width:100%;
  height: 56px;
  margin: 0 0 16px;
  font-size:18px;
}

.design_tab .ecm-tab-card[aria-selected=true]{
  background-color: #000000;
  border-color: #000000;
  color:#ffffff;
}
.design_tab .ecm-tab-card span{
  font-size: 16px;
}

.ranking_alt {
    margin: 20px 0 0;
    color: #333333;
    font-size: 10px;
    line-height: 1.6;
}
.ranking_alt p {
    text-indent: -1em;
    padding-left: 1em;
  
}

.ecm-commentary-headline.-recommend{
  font-size:24px;
  padding-bottom: 8px;
}
.ecm-commentary-headline.-recommend:after{
  margin-left: -43px;
  width: 86px;
}