@charset "UTF-8";
/* メインビジュアル */
.content-header__sports ul{
  width: 100%;
  display: flex;
}
.content-header__sports ul li{
  width: 12.5%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(5rem);
}
.content-header__sports ul li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-header__sports .sports-header-txt{
  width: 100%;
  background: #000;
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: table;
}
.content-header__sports .sports-header-txt .sports-header__category{
  display: inline-block;
  font-size: 28px;
  background: #bd202b;
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  padding: 10px 60px 10px 30px;
  white-space: nowrap;
}
.content-header__sports .sports-header-txt .sports-header__copy{
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  font-size: 20px;
  padding: 10px 30px 10px 0;
}
@keyframes fadein {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(2.5rem);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.content-header__sports ul:first-child li.active:nth-of-type(1) {
  animation: fadein 0.5s ease 0.15s 1 forwards;
}
.content-header__sports ul:first-child li.active:nth-of-type(2) {
  animation: fadein 0.5s ease 0.30s 1 forwards;
}
.content-header__sports ul:first-child li.active:nth-of-type(3) {
  animation: fadein 0.5s ease 0.45s 1 forwards;
}
.content-header__sports ul:first-child li.active:nth-of-type(4) {
  animation: fadein 0.5s ease 0.60s 1 forwards;
}
.content-header__sports ul:first-child li.active:nth-of-type(5) {
  animation: fadein 0.5s ease 0.75s 1 forwards;
}
.content-header__sports ul:first-child li.active:nth-of-type(6) {
  animation: fadein 0.5s ease 0.90s 1 forwards;
}
.content-header__sports ul:first-child li.active:nth-of-type(7) {
  animation: fadein 0.5s ease 1.05s 1 forwards;
}
.content-header__sports ul:first-child li.active:nth-of-type(8) {
  animation: fadein 0.5s ease 1.20s 1 forwards;
}
.content-header__sports ul:last-child li.active:nth-of-type(1) {
  animation: fadein 0.5s ease 1.35s 1 forwards;
}
.content-header__sports ul:last-child li.active:nth-of-type(2) {
  animation: fadein 0.5s ease 1.50s 1 forwards;
}
.content-header__sports ul:last-child li.active:nth-of-type(3) {
  animation: fadein 0.5s ease 1.65s 1 forwards;
}
.content-header__sports ul:last-child li.active:nth-of-type(4) {
  animation: fadein 0.5s ease 1.80s 1 forwards;
}
.content-header__sports ul:last-child li.active:nth-of-type(5) {
  animation: fadein 0.5s ease 1.95s 1 forwards;
}
.content-header__sports ul:last-child li.active:nth-of-type(6) {
  animation: fadein 0.5s ease 2.10s 1 forwards;
}
.content-header__sports ul:last-child li.active:nth-of-type(7) {
  animation: fadein 0.5s ease 2.25s 1 forwards;
}
.content-header__sports ul:last-child li.active:nth-of-type(8) {
  animation: fadein 0.5s ease 2.40s 1 forwards;
}
@media screen and (max-width: 768px){
  .content-header__sports ul:first-child li:nth-child(7),
  .content-header__sports ul:first-child li:nth-child(8),
  .content-header__sports ul:last-child li:nth-child(7),
  .content-header__sports ul:last-child li:nth-child(8){
    display: none !important;
  }
  .content-header__sports ul:first-child,
  .content-header__sports ul:last-child{
    flex-wrap: wrap;
  }
  .content-header__sports ul:first-child li,
  .content-header__sports ul:last-child li{
    width: 33.333%;
  }
  .content-header__sports .sports-header-txt{
    display: block;
  }
  .content-header__sports .sports-header-txt .sports-header__category{
    font-size: 15px;
    padding: 5px 50px 5px 15px;
  }
  .content-header__sports .sports-header-txt .sports-header__copy{
    font-size: 11px;
    letter-spacing: 1px;
    padding: 5px 15px;
  }
}
/* メインコンテンツ */
.c-article-heading h2{
  color: #b91f2a;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding-left: 40px;
}
.c-article-heading h2:before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-article__recommend .c-article-heading h2:before{
  background: url(../img/common/icon-recommend.svg) no-repeat;
  width: 23px;
  height: 30px;
}
.c-article__ranking .c-article-heading h2:before{
  background: url(../img/common/icon-rank.svg) no-repeat;
  width: 30px;
  height: 24px;
}
.c-article__result .c-article-heading h2:before{
  background: url(../img/common/icon-result) no-repeat;
  width: 26px;
  height: 32px;
}
.c-article__ranking{
  margin-top: 55px;
}
.c-article-list{
  margin-top: 25px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.c-article-list .c-article-item{
  width: calc(50% - 12.5px);
  background: #fff;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.c-article-list .c-article-item:first-child{
  width: 100%;
}
.c-article-list .c-article-item:not(:first-child) .c-article-lead,
.c-article-list .c-article-item:not(:first-child) .c-article-info{
  display: none !important;
}
.c-article-list .c-article-item .c-article-img{
  width: 38%;
  position: relative;
}
.c-article-list .c-article-item .c-article-txt{
  width: 62%;
  padding: 15px 20px;
  line-height: 1.5;
}
.c-article-list .c-article-item:first-child .c-article-img{
  width: 30%;
}
.c-article-list .c-article-item:first-child .c-article-txt{
  width: 70%;
}
.c-article-list .c-article-item .c-article-txt .c-article-ttl{
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}
.c-article-list .c-article-item:first-child .c-article-txt .c-article-ttl{
  font-size: 20px;
}
.c-article-list .c-article-item .c-article-txt .c-article-lead{
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.c-article-list .c-article-item .c-article-txt .c-article-info{
  margin-top: 10px;
  width: 100%;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.c-article-list .c-article-item .c-article-txt .c-article-info .c-article-tag{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-article-list .c-article-item .c-article-txt .c-article-info .c-article-tag span{
  color: #bd202b;
  background: #e1e1e1;
  font-size: 10px;
  border-radius: 3px;
  white-space: nowrap;
  padding: 5px 15px;
}
.c-article-list .c-article-item .c-article-txt .c-article-info .c-article-date{
  margin-left: 15px;
  color: #848484;
  font-size: 12px;
  white-space: nowrap;
}
.c-article__recommend .c-article-list .c-article-item .c-article-img .c-article-img__pickup{
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.c-article__recommend .c-article-list .c-article-item .c-article-img .c-article-img__pickup picture,
.c-article__recommend .c-article-list .c-article-item .c-article-img .c-article-img__pickup > img{
  width: calc(50% - 1.5px);
}
.c-article__recommend .c-article-list .c-article-item:nth-child(n+2) .c-article-img .c-article-img__pickup{
  display: block;
}
.c-article__recommend .c-article-list .c-article-item:nth-child(n+2) .c-article-img .c-article-img__pickup picture,
.c-article__recommend .c-article-list .c-article-item:nth-child(n+2) .c-article-img .c-article-img__pickup > img{
  width: 100%;
}
.c-article__recommend .c-article-list .c-article-item:nth-child(n+2) .c-article-img .c-article-img__pickup picture:nth-child(n+2),
.c-article__recommend .c-article-list .c-article-item:nth-child(n+2) .c-article-img .c-article-img__pickup > img:nth-child(n+2){
  display: none;
}
.c-article__ranking .c-article-list .c-article-item:first-child .c-article-img:after{
  content: "";
  background: url(../img/common/icon-rank_1.svg) no-repeat;
  width: 65px;
  height: 65px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.c-article__ranking .c-article-list .c-article-item:nth-child(2) .c-article-img:after{
  content: "";
  background: url(../img/common/icon-rank_2.svg) no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 5px;
  left: 5px;
}
.c-article__ranking .c-article-list .c-article-item:nth-child(3) .c-article-img:after{
  content: "";
  background: url(../img/common/icon-rank_3.svg) no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 5px;
  left: 5px;
}
.c-article__ranking .c-article-list .c-article-item:nth-child(4) .c-article-img:after{
  content: "";
  background: url(../img/common/icon-rank_4.svg) no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 5px;
  left: 5px;
}
.c-article__ranking .c-article-list .c-article-item:nth-child(5) .c-article-img:after{
  content: "";
  background: url(../img/common/icon-rank_5.svg) no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 5px;
  left: 5px;
}
.c-keyword{
  border: 1px solid #bd202b;
  padding: 20px 15px;
}
.c-keyword-heading h2{
  color: #b91f2a;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding-left: 25px;
}
.c-keyword-heading h2:before{
  content: "";
  background: url(../img/common/icon-keyword.svg) no-repeat;
  width: 15px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.c-keyword ul{
  margin-top: 15px;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.c-keyword ul li a{
  display: inline-block;
  line-height: 1;
  color: #bd202b;
  font-size: 15px;
  font-weight: bold;
  border: 1px solid #bd202b;
  border-radius: 20px;
  padding: 5px 10px;
}
.c-result-list{
  margin-top: 20px;
  width: 100%;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.c-result-list a.c-result-item{
  width: calc(50% - 15px);
  padding-bottom: 10px;
  border-bottom: 1px dotted #848484;
}
.c-result-matchDay p{
  color: #848484;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
}
.c-result-main{
  margin-top: 5px;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
.c-result-OpponentTeam{
  width: 35%;
  min-width: 185px;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: nowrap;
}
.c-result-OpponentTeam img{
  width: 25%;
}
.c-result-OpponentTeam p{
  margin: 0 2.5%;
  width: 45%;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #000;
  font-size: 28px;
  font-weight: bold;
}
.c-result-OpponentTeam p span:first-child,
.c-result-OpponentTeam p span:last-child{
  letter-spacing: -2px;
}
.c-result-article{
  width: 63%;
  margin-left: 2%;
}
.c-result-article p{
  color: #000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-articleList-heading h2{
  letter-spacing: .2em;
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  white-space: nowrap;
}
.c-articleList-heading h2:before{
  content: '';
  margin-right: 25px;
  display: inline-block;
  width: 18px;
  height: 25px;
  background: url(../img/sightseeing/icon_pickup.png) no-repeat top 5px left;
  background-size: contain;
}
.c-articleList-heading h2:after{
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #bd202b;
  margin-left: 50px;
  position: relative;
  top: 2px;
  flex: 1;
}
.c-btn__more{
  margin-top: 40px;
}
@media screen and (max-width: 768px){
  .c-article-heading{
    text-align: center;
  }
  .c-article-heading h2{
    font-size: 18px;
    display: inline-block;
    padding-left: 30px;
  }
  .c-article__recommend .c-article-heading h2:before{
    width: 19px;
    height: 25px;
  }
  .c-article-list{
    margin-top: 15px;
    display: block;
  }
  .c-article-list .c-article-item{
    margin-top: 5px;
    width: 100%;
  }
  .c-article-list .c-article-item .c-article-txt{
    padding: 15px 10px;
  }
  .c-article-list .c-article-item:first-child{
    margin-top: 0;
    display: block;
  }
  .c-article-list .c-article-item:first-child .c-article-img,
  .c-article-list .c-article-item:first-child .c-article-txt{
    width: 100%;
  }
  .c-article-list .c-article-item:first-child .c-article-txt{
    padding: 10px;
  }
  .c-article-list .c-article-item:first-child .c-article-txt .c-article-ttl{
    font-size: 14px;
    text-align: center;
  }
  .c-article-list .c-article-item .c-article-txt .c-article-ttl{
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .c-article-list .c-article-item .c-article-txt .c-article-lead,
  .c-article-list .c-article-item .c-article-txt .c-article-info{
    display: none;
  }
  .c-btn__more{
    margin: 15px auto 30px;
  }
  .c-keyword{
    padding: 15px 10px;
  }
  .c-keyword-heading{
    text-align: center;
  }
  .c-keyword-heading h2{
    display: inline-block;
    font-size: 18px;
    padding-left: 20px;
  }
  .c-keyword-heading h2:before{
    width: 12px;
    height: 24px;
  }
  .c-keyword ul{
    margin-top: 10px;
    gap: 5px;
  }
  .c-keyword ul li:nth-child(n+7){
    display: none;
  }
  .c-keyword ul li a{
    font-size: 12px;
  }
  .c-article__ranking{
    margin-top: 25px;
  }
  .c-article__ranking .c-article-heading h2:before{
    width: 23px;
    height: 18px;
  }
  .c-article__result .c-article-heading h2:before{
    width: 20px;
    height: 26px;
  }
  .c-article__result .slick-list{
    padding-bottom: 1px;
  }
  .c-result-list{
    margin: 0 0 55px;
    padding-bottom: 10px;
  }
  .c-result-list a.c-result-item{
    margin-top: 10px;
    display: block;
    width: 100%;
    padding: 10px 0;
    position: relative;
  }
  .c-slide-group {
    display: flex;
    flex-direction: column;
  }
  .c-result-matchDay{
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-result-matchDay p{
    font-size: 9px;
  }
  .c-result-main{
    display: block;
  }
  .c-result-OpponentTeam{
    min-width: 190px;
    margin: 0 auto;
  }
  .c-result-article{
    width: 100%;
    margin: 0;
  }
  .c-result-list .slick-prev{
    transform: translate(calc(-50% - 25px), 0);
  }
  .c-result-list .slick-next{
    transform: translate(calc(-50% + 25px), 0);
  }
  .c-articleList-heading h2{
    margin-bottom: 10px;
    letter-spacing: .1em;
  }
  .c-articleList-heading h2:before{
    margin-right: 18px;
  }
  .c-articleList-heading h2:after{
    margin-left: 25px;
  }
  .blog-list-large__sports .list-large .icon_wrap,
  .blog-list-large__sports .list-large .list-content-txt,
  .blog-list-large__sports .list-large .list-content-cattag,
  .blog-list-large__sports .list-large .entry-date{
    display: none;
  }
  .blog-list-large__sports .list-large > a{
    width: 100%;
    display: flex;
    flex-direction: initial;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
  }
  .blog-list-large__sports .list-large > a .list-thumb{
    width: 35%;
  }
  .blog-list-large__sports .list-large > a figure .c-reporterIcon{
    width: 30%;
    max-width: 80px;
    bottom: 2%;
    right: 2%;
  }
  .blog-list-large__sports .list-large > a .list-large-content{
    width: 65%;
    height: auto;
    padding: 15px 10px !important;
  }
  .blog-list-large__sports .list-large .list-content-ttl{
    margin: 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .blog-list-large__sports .list-large:first-child > a,
  .blog-list-large__sports .list-large:nth-child(7n) > a{
    display: block;
  }
  .blog-list-large__sports .list-large:first-child > a .list-thumb,
  .blog-list-large__sports .list-large:nth-child(7n) > a .list-thumb{
    width: 100%;
  }
  .blog-list-large__sports .list-large:first-child > a .list-large-content,
  .blog-list-large__sports .list-large:nth-child(7n) > a .list-large-content{
    width: 100%;
  }
}
