@charset "UTF-8";
/*
    dm-posts（ホワイトペーパー・ブログ）
---------------------------------*/
.dmPosts {
  padding-top: 11rem;
  padding-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .dmPosts {
    padding-top: 90px;
    padding-bottom: 10rem;
  }
}

.dmPosts_lead {
  margin-top: 3rem;
  color: #4c4c4a;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .dmPosts_lead {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}

.dmPosts_cont {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .dmPosts_cont {
    margin-top: 4rem;
  }
}

.dmPosts_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  .dmPosts_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .dmPosts_list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.dmPosts_card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.2rem 1.2rem rgba(28, 29, 29, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dmPosts_card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 0.6rem 1.8rem rgba(28, 29, 29, 0.12);
}

.dmPosts_cardThumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #fafafa;
}
.dmPosts_cardThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dmPosts_cardBody {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2.4rem;
}
@media screen and (max-width: 767px) {
  .dmPosts_cardBody {
    padding: 2rem;
  }
}

.dmPosts_cardDate {
  display: block;
  margin-bottom: 1rem;
  color: #4c4c4a;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
}

.dmPosts_cardTitle {
  margin-bottom: 2.4rem;
  color: #1c1d1d;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .dmPosts_cardTitle {
    font-size: 1.6rem;
  }
}
.dmPosts_cardTitle:last-child {
  margin-bottom: 0;
}

.dmPosts_cardBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 1.2rem 2rem;
  color: #1c1d1d;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #f4ce53;
  border-radius: 10rem;
  transition: opacity 0.3s;
}
.dmPosts_card:hover .dmPosts_cardBtn {
  opacity: 0.8;
}

.dmPosts_none {
  color: #4c4c4a;
  font-size: 1.6rem;
}

/*
    ブログ記事ページ
---------------------------------*/
.blogSingle_date {
  display: inline-block;
  margin-top: 1.6rem;
  color: #4c4c4a;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}

/*
    ホワイトペーパー詳細ページ
---------------------------------*/
.wpSingle_thumb {
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wpSingle_thumb {
    margin-bottom: 3rem;
  }
}
.wpSingle_thumb img {
  max-width: 100%;
  height: auto;
  border: 1px solid #eee;
  border-radius: 0.6rem;
}

.wpSingle_dl {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wpSingle_dl {
    margin-top: 4rem;
  }
}
.wpSingle_dl a {
  display: inline-block;
  padding: 1.8rem 6rem;
  color: #1c1d1d;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #f4ce53;
  border-radius: 10rem;
  transition: opacity 0.3s;
}
.wpSingle_dl a:hover {
  opacity: 0.8;
}

/*
    記事・詳細ページ共通（一覧へ戻る）
---------------------------------*/
.dmSingle_back {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .dmSingle_back {
    margin-top: 6rem;
  }
}
.dmSingle_back a {
  display: inline-block;
  padding: 1.4rem 4rem;
  color: #1c1d1d;
  font-size: 1.4rem;
  font-weight: 700;
  border: 1px solid #1c1d1d;
  border-radius: 10rem;
  transition: opacity 0.3s;
}
.dmSingle_back a:hover {
  opacity: 0.7;
}

/*# sourceMappingURL=dm-posts.css.map */
