@charset "utf-8";
/*
 common
============================================*/
.all_page{
  width: 100%;
  min-width: 1024px;
  overflow: hidden;
}
.all_contents{
  font-size: 14px;
  color: #111;
}

.main_section{
  position: relative;
  padding: 96px 0 0;
}
/*.main_section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.main_section::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  transform: translateX(-50%);
  margin-left: 50%;
  z-index: -1;
}*/

.section_inner{
  min-width: 1024px;
  max-width: 1024px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}

.ranking_note{
  width: 810px;
  margin: 0 auto 72px;
  font-size: 14px;
}
.ranking_note li{
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
}
.ranking_note li + li{
  margin-top: 4px;
}
.camphack_bnr{
  width: 576px;
  margin: 0 auto;
}
.camphack_bnr a:hover{
  opacity: .8;
}

.rule{
  padding: 60px 0;
  background-color: #f7f7f7;
}
.other{
  padding: 60px 0;
}
.other ul li a:hover{
  opacity: .8;
}

/*
 kanban
============================================*/
.kanban_wrap{
  position: relative;
  height: 321px;
}
.kanban_bg{
  position: relative;
  width: 1920px;
  margin-left: 50%;
  transform: translate(-50%);
}
.kanban_bg_list{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  justify-content: space-between;
  z-index: -1;
}
.kanban_bg_list > li{
  width: calc((1920px - 403px) / 4);
}
.kanban_bg_list li:nth-of-type(2){
  margin-right: 400px;
}
.kanban_title{
  border-top: 1px solid #111111;
}

.kanban_bg_list {
  animation: image-switch-4 20s infinite;
}

.kanban_bg .kanban_bg_list:nth-of-type(1) {
  animation-delay: 0s;
  z-index: -1;
}
.kanban_bg .kanban_bg_list:nth-of-type(2) {
  animation-delay: 5s;
  z-index: -2;
}
.kanban_bg .kanban_bg_list:nth-of-type(3) {
  animation-delay: 10s;
  z-index: -3;
}
.kanban_bg .kanban_bg_list:nth-of-type(4) {
  animation-delay: 15s;
  z-index: -4;
}
/*画像4枚　1秒 5%*/
@keyframes image-switch-4 {
  0%{ opacity: 1;}
  10%{ opacity: 1;}
  25%{ opacity: 0;}
  85%{ opacity: 0;}
  100%{ opacity: 1;}
}

/*
 slide
==================================================== */
.title_logolist {
  visibility: hidden;
  height: 0;
}
.slider {
  position: relative;
  width: 100%;
  height: 74px;
  background-image: url("https://r.r10s.jp/evt/event/sports/camphack/_pc/img/20251015/slider_bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  box-sizing: border-box;
  z-index: 2;
}
.slideWrap {
  width: 960px;
  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: 72px;
  height: 100%;
}
.slideWrap:before{
  left:0;
  top:0;
  background: linear-gradient(to right,#111 0%, transparent 100%);
}
.slideWrap:after{
  right:0;
  top:0;
  background: linear-gradient(to left,#111 0%, transparent 100%);
}

.slideshow {
  display: flex;
  flex-wrap: nowrap !important;
  align-items:center;
  justify-content: unset;
  padding: 12px 0;
  width: calc(144px * var(--slider_num));
  /* ↑calc(ロゴ1枚の幅 * ロゴが並ぶ枚数)*/
  height: 100%;
}
.slideWrap.anime_start._01 .slideshow{
  animation: loop-slide 80s infinite linear;
}
.slideshow > li {
  min-width:calc((100% - (10px * var(--slider_num)) )/ var(--slider_num));
  /* ↑calc((100% - calc(余白の数値 * ロゴが並ぶ枚数) / ロゴが並ぶ枚数)*/
  width: 100%;
  height: 100%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  /* border-radius: 8px; */
  overflow:hidden;
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: 134px;
}
.slideshow > li a:hover{
  opacity: .8;
}

.slideshow > li a {
  display: block;
  width: 100%;
  padding: 4px;
  background-color: #fff;
  
  /*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: auto;
}
  @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;
}

/*
 title
============================================*/
.main_title{
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.main_title::after{
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 64px;
  height: 2px;
  background-color: #111;
  z-index: 1;
}
.main_sub_title{
  margin-bottom: 4px;
  color: #bf0000;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.default_title{
  margin-bottom: 32px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.other_title{
  margin-bottom: 32px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

.fukidashi_text{
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.default_text_wrap{
  width: 572px;
  margin: 32px auto;
  font-size: 16px;
  line-height: 1.6;
}
.editorItem_wrap .default_text_wrap{
  position: relative;
  width: 660px;
  margin-top: -100px;
  padding: 48px 44px 0;
  background-color: #fff;
  z-index: 1;
}
/* .editorItem_wrap .default_img{
  height: 440px;
  overflow: hidden;
} */
.editorItem_wrap .modal_inner .default_text_wrap{
  /* width: 860px; */
  width: 572px;
  padding: 0;
  z-index: 0;
}
.editorItem_wrap .modal_inner .default_img + .default_text_wrap{
  margin-top: 32px;
}
.default_text_wrap p + p{
  margin-top: 16px;
}
.default_text_wrap strong{
  font-weight: bold;
  background: linear-gradient(transparent 55%, #fedee7 55%);
}

/*
 entry_area
==================================================== */
.entry_area{
  padding: 24px 0 36px;
}
.kanban_text{
  margin-bottom: 28px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
.entry_button_wrap .rcEntryButton-button:hover{
  opacity: .8;
}
.periodWrap01{
  margin-top: 32px;
}
.periodTxt{
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  line-height: 1.6;
}
.campaignLinkList{
  width: 400px;
  margin: 0 auto 20px;
}
.campaignLinkList li{
  position: relative;
  text-align: center;
  box-sizing: border-box;
}
.campaignLinkList li + li::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 20px;
  background-color: #d2d2d2;
  margin: auto 0;
}
.campaignLinkList li a{
  display: inline-block;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.1;
  color: #222;
}
.campaignLinkList li a:hover{
  text-decoration: none;
}
.campaignLinkList li a:hover span{
  text-decoration: underline;
}
.campaignLinkList li a ._icon_right{
  margin-left: 4px;
  color: #404040;
}
.cautionTxt_wrap{
  text-align: center;
  line-height: 1.5;
}
.cautionTxt{
  font-size: 12px;
  font-size: #333;
  text-indent: -1em;
  padding-left: 1em;
}

/*
 modal
==================================================== */
.modal_content_wrapper{
  /* max-width: 960px; */
  max-width: 660px;
  width: calc(100% - 32px);
}
.modal_scroller{
  position: relative;
  border-radius: 8px;
  max-height: calc(100dvh - 40px);
}
.modal_content{
  padding: 76px 0 64px;
}
.modal_scroller_spacer{
  display: none;
}
.modal_inner{
  padding-bottom: 104px;
}
.modal_close_topRight{
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  font-size: 28px;
  font-weight: bold;
  color: #cdcdcd;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  z-index: 2;
}
.modal_close_bottom_wrap{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 0 64px;
  border-radius: 8px;
  background: #fff;
  background: linear-gradient(to bottom, transparent 62px, #ffffff 62px);
}
.modal_close_bottom_wrap::before{
  content: "";
  display: block;
  position: absolute;
  top: -42px;
  left: 0;
  width: 100%;
  height: 104px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 50%, rgba(255,255,255,1) 100%);
}
.modal_close_bottom{
  cursor: pointer;
  position: relative;
  width: 340px;
  height: 62px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #111;
  border-radius: 31px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  z-index: 1;
}
.modal_close_topRight:hover,
.modal_close_bottom:hover{
  opacity: .8;
}

/*
 about_modal
==================================================== */
.about_modal_btn{
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 86px;
  text-align: center;
  margin: 0 auto;
  border: 1px solid #111;
  border-radius: 0 0 4px 4px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.about_modal_btn:hover{
  opacity: .8;
  text-decoration: none;
  color: #333;
}
.about_modal_btn img{
  width: 312px;
  height: auto;
}
.about_inner_title{
  margin-bottom: 28px;
  text-align: center;
}
.about_inner_title img{
  width: 392px;
  height: auto;
}
.about_inner_subTitle{
  font-size: 18px;
  font-weight: bold;
}

/*
 recommend
==================================================== */
.recommend{
  padding-top: 124px;
  padding-bottom: 40px;
}
.shop_recommend::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #d9e9ba;
  background-image: url("https://r.r10s.jp/evt/event/sports/camphack/_pc/img/20251015/bg_shop_recommend.jpg");
  background-position: top center;
  background-repeat: repeat-y;
  background-size: 1920px auto;
  z-index: -2;
}
.shop_recommend::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 136px;
  background-image: url("https://r.r10s.jp/evt/event/sports/camphack/_pc/img/20251015/bg_shop_recommend_top.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  z-index: -1;
}
.editor_recommend::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e7d3bc;
  background-image: url("https://r.r10s.jp/evt/event/sports/camphack/_pc/img/20251015/bg_editor_recommend.jpg");
  background-position: top center;
  background-repeat: repeat-y;
  background-size: 1920px auto;
  z-index: -2;
}
.editor_recommend::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 136px;
  background-image: url("https://r.r10s.jp/evt/event/sports/camphack/_pc/img/20251015/bg_editor_recommend_top.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  z-index: -1;
}
.shops.main_section{
  padding-top: 124px;
}
.shops::before{
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 136px;
  background-image: url("https://r.r10s.jp/evt/event/sports/camphack/_pc/img/20251015/bg_shop_top.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: -1;
}

.recommend_kv_text{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin: -100px auto 0;
  width: 504px;
  height: 141px;
  background-image: url("https://r.r10s.jp/evt/event/sports/camphack/_pc/img/20251015/recommend_kv_text.png");
  background-repeat: no-repeat;
  background-size: contain;
  line-height: 1.5;
  z-index: 1;
}

/*
 editorArea
==================================================== */
.editor__image{
  width: 112px;
  margin: 0 auto 20px;
}
.editor__catchcopy{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #111;
  line-height: 1.5;
}
.editor__name{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #111;
  line-height: 1.5;
  margin-bottom: 16px;
}
.editor__description{
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  width: 586px;
  margin: 0 auto 40px;
}
.editor__comment{
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #111;
  margin-bottom: 48px;
}
.editor__comment::after{
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background-color: #bf0000;
  margin: 12px auto;
}

/*
 keyword
============================================*/
.searchBox_wrap .search_box {
  border: 1px solid #111;
  width: 780px;
  height: 54px;
  margin: 0 auto;
  border-radius: 0;
}
.searchBox_wrap .search_box_submit {
  width: 54px;
  padding: 0;
  background-color: #111;
  /* 角丸用↓ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; 
}
.searchBox_wrap .search_input {
  padding-left: 20px;
  font-size: 16px;
}
.searchBox_wrap .search_input::placeholder {
  color: #999999;
}
.searchBox_wrap .search_box_ic {
  font-size: 28px;
  color: #fff;
}
.category_wrap{
  margin: 68px 0 0;
}
.category_wrap ul > li a{
  display: block;
  text-align: center;
  color: #111;
  font-size: 16px;
  line-height: 1.2;
}
.category_wrap ul > li a ._img{
  margin: 0 0 12px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.category_wrap ul > li a:hover{
  text-decoration: none;
}
.category_wrap ul > li a:hover ._img{
  opacity: .8;
}

/*
 alcor・ad
==================================================== */
.editorTab_area .ad_wrap{
  width: 472px;
  margin: 0 auto;
}
.ad_wrap + .ad_wrap{
  margin-top: 20px;
}
.ad_item{
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.ad_shop_logo{
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  overflow: hidden;
}
.ad_shop_logo a{
  padding: 8px;
}
.alcor_slider {
  width: 976px;
  margin-top: -12px;
  margin-left: -8px;
  padding: 12px 8px 20px;
}
.alcor_item{
  padding: 12px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
}

.editor__image{
border-radius: 50%;
overflow: hidden;
}
