@font-face {
  font-family: "Yu Mincho";
  src: local("Yu Mincho Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Mincho";
  src: local("Yu Mincho Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Mincho";
  src: local("Yu Mincho Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Mincho";
  src: local("Yu Mincho Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Mincho";
  src: local("Yu Mincho Bold");
  font-weight: 700;
}
.p-news-list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 120px;
}

.p-news-list__item {
  margin-bottom: 0;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.article-content {
  display: grid;
  grid-template-columns: 60% 1fr 34%;
  overflow: visible;
}

.content-thumbnail,
.content-body {
  grid-row: 1/-1;
}

.content-thumbnail {
  grid-column: 1/2;
  margin: 0 auto;
  background: #f0eee8;
  padding: 70px;
  position: relative;
  vertical-align: top;
  width: 100%;
  box-sizing: border-box;
}
.content-thumbnail img {
  display: block;
  margin: 0 auto;
  height: 100%;
  max-width: 100%;
  width: auto;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.15s ease-in-out;
}
.content-thumbnail::before {
  content: "";
  background-size: cover;
  position: absolute;
  top: -10px;
  right: -100px;
  width: 292px;
  aspect-ratio: 585/205;
  background-image: url(../images/deco-cloud-1.svg);
}

.content-text {
  grid-column: 3/4;
  vertical-align: top;
  margin-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-date {
  position: absolute;
  right: -50px;
  font-size: 55px;
  top: 20px;
  line-height: 1;
  font-family: "Yu Mincho", serif;
  filter: invert(100%) grayscale(100%) contrast(100);
  mix-blend-mode: difference;
}
.content-date span {
  display: block;
  font-size: 25px;
}

.content-title {
  font-family: "Yu Mincho", serif;
}

.content-body {
  line-height: 1.9;
}

.p-news-list__item:nth-of-type(even) .article-content {
  grid-template-columns: 34% 1fr 60%;
}
.p-news-list__item:nth-of-type(even) .content-thumbnail {
  grid-column: 3/4;
}
.p-news-list__item:nth-of-type(even) .content-thumbnail::before {
  left: -100px;
  right: auto;
  background-image: url(../images/deco-cloud-2.svg);
}
.p-news-list__item:nth-of-type(even) .content-text {
  grid-column: 1/2;
}
.p-news-list__item:nth-of-type(even) .content-date {
  right: auto;
  left: -50px;
}

/*---------------------------------------------------------------
 *  $768px
 * --- */
@media screen and (max-width: 768px) {
  .p-news-list {
    padding: 40px 0 0;
    gap: 80px;
  }
  .p-news-list__item {
    width: 90%;
  }
  .content-thumbnail::before {
    width: 200px;
    top: -10px;
    right: -50px;
  }
}
/*---------------------------------------------------------------*\
 * $600px
 * ---------------------------------------------------------------*/
@media screen and (max-width: 600px) {
  .article-content {
    grid-template-columns: 49% 1fr 44%;
  }
  .content-thumbnail {
    padding: 25px;
  }
  .content-thumbnail img {
    width: 100%;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  }
  .content-date {
    right: -10px;
    font-size: 20px;
    top: -25px;
  }
  .content-text h3 {
    width: 100%;
    margin: 10% auto 10%;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
  }
  .content-text h4 {
    padding: 0 0 4px 13px;
    border-left: 1px solid #000;
    font-size: 1rem;
    line-height: 15px;
  }
  .p-news-list__item:nth-of-type(even) .article-content {
    grid-template-columns: 44% 1fr 49%;
  }
  .p-news-list__item:nth-of-type(even) .content-date {
    right: auto;
    left: -10px;
  }
}
/*---------------------------------------------------------------*\
 * $480px - iPhone SE, 5s, 5 and 4s
 * ---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  .article-content {
    padding: 0;
  }
}
/*# sourceMappingURL=maps/archive-news.css.map */