@charset "UTF-8";
/* -----------------------------------------------------------
   REPORTS
------------------------------------------------------------*/

#l-reports:after{
  display: none;
}
#l-reports .l-sort{
  width: 100%;
  margin: 0 auto;
}
#l-reports .l-inner .reports-list li{
  /* padding: 0 1.5%;
  margin-right: 0;
  margin-bottom: 2%; */
}

@media screen and (min-width : 1024px) {
  #l-reports .l-inner{
    width: 80%;
    max-width: 1060px;
  }
}
@media screen and (max-width : 1023px) {
  #l-reports .l-sort{
    width: 100%;
  }
  #l-reports .l-inner .reports-list li{
    /* padding: 0 1%;
    margin-bottom: 5vw; */
  }
}
/* -----------------------------------------------------------
   ARTICLE-MAIN
------------------------------------------------------------*/
/* 詳細ページなし */

/* -----------------------------------------------------------
   SLIDER
------------------------------------------------------------*/
/* 詳細ページなし */

/* -----------------------------------------------------------
   LIST
------------------------------------------------------------*/
.topics-new{
  margin: min(70px,5.4vw) auto 0;
}
.topics-new h4{
  margin-bottom: min(55px,4.2vw);
  text-align: center;
  font-size: clamp(2.0rem,1.8vw,2.4rem);
}
@media screen and (max-width : 767px) {
  .topics-new{
    margin: min(53px,14vw) auto 0;
  }
  .topics-new h4{
    margin-bottom: min(35px,9.3vw);
  }
}


/* -----------------------------------------------------------
   202602改修
------------------------------------------------------------*/
/* Topics一覧に「もっと見る」ボタンを追加 */
#reportsList .more-button .label {
  color: #0050FF;
  font-family: "Roboto", serif;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  display: block;
  margin: auto;
  width: fit-content;
  transition: .3s;
  cursor: pointer;
  user-select: none;
  input {
    display: none;
  }
  .arrow {
    position: absolute;
    display: inline-block;
    width: 15px;
    height: 1px;
    margin-top: 5px;
    border-radius: 9999px;
    background-color: #0050ff;
    text-indent: -9999px;
    bottom: 0.4em;
    right: -25px;
    transition: .3s;
  }
  &:hover .arrow {
    right: -35px;
  }
  .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 8px;
    height: 1px;
    border-radius: 9999px;
    background-color: #0050FF;
    transform: rotate(40deg);
    transform-origin: calc(100% - 0.5px) 50%;
  }
}
#reportsList .reports-list li {
  opacity: 0;
  animation: fadeIn .2s linear forwards;
  animation-delay: calc(rem(sibling-index() - 1, 8) * .1s);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#reportsList .reports-list li a figure {
  position: relative;
  aspect-ratio: 1200 / 675;
  background-color: #ececec;
}
#reportsList .reports-list li a figure::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1 / 1;
  width: 40px;
  background-color: #00000099;
  mask-image: url(../img/loading.webp);
  mask-size: 100%;
  mask-position: center;
  mask-repeat: no-repeat;
}
#reportsList .reports-list li a figure img {
  position: relative;
  z-index: 1;
}

.l-main {
  position: relative;
}
.backhead {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1;
  right: 1em;
  bottom: 1em;
  width: 60px;
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: #0050ff;
  background-image: url(../img/icon-backhead.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  border-radius: 100%;
  transform: translate(100%, 0);
  pointer-events: none;
  cursor: pointer;
  transition: 0.2s linear;
  opacity: 0;
}
.backhead.on {
  transform: translate(0, 0);
  pointer-events: auto;
  opacity: 1;
}
.backhead:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .backhead {
    width: 48px;
    right: 0.5em;
    bottom: 0.5em;
  }
}