@charset "UTF-8";
.container.__slide_container{
  max-width: 1720px;
  padding: 0 25px;
}

.news__slideWrapper{
  overflow: hidden;
  padding: 15px;
  display: none;
}

.news__slideWrapper.visible{
  display: block;
}

.news__slideList li.swiper-slide{
  height: auto;
}

.news__slideList li.swiper-slide:not(:nth-child(1)){
  display: none;
}

@media screen and (min-width:769px) {
  .news__slideList li.swiper-slide:nth-child(1),
  .news__slideList li.swiper-slide:nth-child(2),
  .news__slideList li.swiper-slide:nth-child(3){
    display: block;
  }
}

@media screen and (min-width:1201px) {
  .news__slideList li.swiper-slide:not(:nth-child(1)){
    display: block;
  }
}

.news__slideList li a{
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.news__slideList li .club_thumbnail{
  aspect-ratio: 328 / 218;
  overflow: hidden;
  width: 100%;
}

.news__slideList li .club_thumbnail img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in;
}

.news__slideList li a:hover .club_thumbnail img{
  transform: scale(1.2);
}

.club_text_box{
  padding: 1.5rem;
}

.news__slideList li .date-and-club{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 8px;
}

.news__slideList li .date-and-club .date {
    display: block;
    color: #a90f34;
    font-weight: 700;
    font-size: 11px;
    font-size: .6875rem;
    letter-spacing: 0;
}

@media screen and (min-width:769px) {
    .news__slideList li .date-and-club .date {
        font-size: 14px;
        font-size: 0.875rem
    }
}

.news__slideList li .date-and-club .tab {
    display: inline-block;
    color: #a90f34;
    border: 1px solid #a90f34;
    padding: 6px 8px 6px;
    font-size: 11px;
    font-size: .6875rem;
    line-height: 1;
    letter-spacing: 0;
}

@media screen and (min-width:769px) {
    .news__slideList li .date-and-club .tab {
        padding: 6px 8px 6px;
        font-size: 14px;
        font-size: 0.875rem
    }
}

.news__slideList li .txt {
    display: block;
    font-size: 13px;
    font-size: .8125rem;
    margin-top: 16px;
}

@media screen and (min-width:769px) {
    .news__slideList li .txt {
        font-size: 15px;
        font-size: 0.9375rem
    }
}

.categoryNews_head{
  margin-bottom: 30px;
}

.categoryNews .categoryNews_head .categoryNews__ttl{
  margin-bottom: 30px;
}

.club_categoryBox{
  text-align: center;
}

.club_categoryBoxInner{
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 260px;
}

.club_categoryTopLink{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: 260px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  background-color: #000;
  padding: 0 24px;
}

.club_categoryTopLink:hover{
  cursor: pointer;
}

.club_categoryListWrapper{
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
  padding: 24px;
  min-width: 100%;
  max-height: 40rem;
  overflow-y: scroll;
}

.club_categoryList{
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  text-align: left;
}

.club_categoryLink{
  color: #000;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0 0.7rem;
  font-size: 13px;
}

@media screen and (min-width: 769px) {
  .categoryNews_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .categoryNews .categoryNews_head .categoryNews__ttl{
    margin-bottom: 0;
  }
  .club_categoryLink{
    white-space: nowrap;
    font-size: 15px;
  }
}

.club_categoryBoxInner .club_categoryListWrapper{
  transform: translateY(-10%);
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;

}

.club_categoryBoxInner .club_categoryListWrapper.open{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.club_categoryBoxInner:focus-within .club_categoryListWrapper.open{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
