/* ************************************************************************
   ************************************************************************

    COMMON SETTINGS

   ************************************************************************
   ************************************************************************ */
/* ------------------------------
    RESPONSIVE SETTINGS
  ------------------------------ */
/* ------------------------------
    FONT
  ------------------------------ */
.t__min {
  font-family: serif !important;
}

/* ------------------------------
    COLOR SETTINGS
  ------------------------------ */
/* ------------------------------
    MIXIN
  ------------------------------ */
/* ------------------------------
    KEYFRAME
  ------------------------------ */
@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
}
@keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
}
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopClY {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes loopClY {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes countDown {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes countDown {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
@-webkit-keyframes rotateInf {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@keyframes rotateInf {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.topicsList__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .topicsList__wrapper {
    padding: 3rem 0 64px;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__wrapper {
    padding: 1rem 2.5vw 64px 0;
  }
}
@media screen and (min-width: 320px) {
  .topicsList__main {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__main {
    width: 70%;
  }
}
@media screen and (min-width: 320px) {
  .topicsList__side {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__side {
    width: 25%;
  }
}
.topicsList__articleLink {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: solid 1px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 320px) {
  .topicsList__articleLink {
    padding: 24px 2.5vw 24px;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__articleLink {
    padding: 32px 2.5vw 32px 5vw;
  }
}
.topicsList__articleLink::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.04);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
}
.topicsList__articleLink:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}
.topicsList__articleLink:hover .topicsList__articleFigure img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.topicsList__articleFigure, .topicsList__articleHeader {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 320px) {
  .topicsList__articleFigure {
    width: 30%;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__articleFigure {
    width: 30%;
  }
}
.topicsList__articleFigure .imgWrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .topicsList__articleFigure .imgWrapper {
    border-radius: 6px;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__articleFigure .imgWrapper {
    border-radius: 16px;
  }
}
.topicsList__articleFigure img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
}
.topicsList__articleHeader {
  width: 65%;
}
@media screen and (min-width: 320px) {
  .topicsList__articleHeader {
    padding: 4px 0;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__articleHeader {
    padding: 24px 0;
  }
}
.topicsList__articleTitle {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .topicsList__articleTitle {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__articleTitle {
    font-size: 2.4rem;
  }
}
.topicsList__articleInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
}
@media screen and (min-width: 320px) {
  .topicsList__articleInfo {
    font-size: 1.2rem;
    gap: 8px;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__articleInfo {
    font-size: 1.6rem;
    gap: 24px;
  }
}
.topicsList__articleCat, .topicsList__articleTime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .topicsList__articleCat, .topicsList__articleTime {
    gap: 4px;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__articleCat, .topicsList__articleTime {
    gap: 8px;
  }
}
.topicsList__articleCat svg, .topicsList__articleTime svg {
  display: block;
}
@media screen and (min-width: 320px) {
  .topicsList__articleCat svg, .topicsList__articleTime svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__articleCat svg, .topicsList__articleTime svg {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.topicsList__articleCat {
  background: rgba(var(--color-rd)/0.16);
  color: rgb(var(--color-rd));
  border-radius: 6px;
}
@media screen and (min-width: 320px) {
  .topicsList__articleCat {
    padding: 3px 6px 3px 4px;
  }
}
@media screen and (min-width: 600px) {
  .topicsList__articleCat {
    padding: 4px 10px 4px 6px;
  }
}
.topicsList__articleCat svg {
  fill: rgb(var(--color-rd));
}
.topicsList__articleTime {
  opacity: 0.48;
}/*# sourceMappingURL=topics.css.map */