@charset "UTF-8";
/*
====================================
single news
====================================
*/
.single-news {
  padding-top: 200px;
  padding-bottom: 120px;
  background: #f8f8f8;
}
.single-news__layout {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: start;
}
.single-news__main {
  width: calc(100% - 320px);
  background: linear-gradient(180deg, #edf7f4 0%, #b9ddec 100%);
}
.single-news__article {
  padding: 48px 40px 60px;
  border-bottom-right-radius: 72px;
  box-sizing: border-box;
}
.single-news__header {
  margin-bottom: 34px;
}
.single-news__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #b7b7b7;
}
.single-news__date, .single-news__cat {
  font-family: "futura-pt", sans-serif;
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 400;
  color: #5b5b5b;
  letter-spacing: 0;
}
.single-news__title {
  margin: 12px 0 0;
  font-family: "futura-pt", sans-serif;
  font-size: 4rem;
  line-height: 1.08;
  font-weight: 400;
  color: #5b5b5b;
  letter-spacing: 0;
}
.single-news__content p {
  margin: 20px 0 0;
  font-size: 1.5rem;
  line-height: 1.9;
  font-weight: 400;
  color: #1b2c55;
}
.single-news__aside {
  min-width: 0;
  width: 320px;
}
.single-news__related {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.single-news__more {
  margin-top: 140px;
}
.single-news__moreGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.single-news__pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(27, 44, 85, 0.15);
  gap: 20px;
}
.single-news__pagerBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  min-width: 320px;
  border: 1px solid #cbd8df;
  background: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #1b2c55;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
  display: flex;
  justify-content: center;
}
.single-news__pagerBtn:hover {
  background: rgba(255, 255, 255, 0.8);
}
.single-news__pagerBtn i {
  font-size: 1.4rem;
}

@media screen and (max-width: 1200px) {
  .single-news__main {
    width: 100%;
  }
  .single-news__layout {
    flex-direction: column;
    gap: 24px;
  }
  .single-news__aside {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .single-news__related {
    margin-top: 0;
  }
  .single-news__moreGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .single-news {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .single-news__layout {
    gap: 16px;
  }
  .single-news__main {
    width: 100%;
  }
  .single-news__article {
    padding: 24px 16px 28px;
    border-bottom-right-radius: 28px;
  }
  .single-news__header {
    margin-bottom: 20px;
  }
  .single-news__meta {
    gap: 10px;
    padding-bottom: 8px;
    flex-wrap: wrap;
  }
  .single-news__date, .single-news__cat {
    font-size: 1.4rem;
  }
  .single-news__title {
    margin-top: 10px;
    font-size: 2.8rem;
    line-height: 1.25;
    word-break: break-word;
  }
  .single-news__aside {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .single-news__related {
    gap: 10px;
  }
  .single-news__more {
    margin-top: 48px;
  }
  .single-news__moreGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .single-news__pager {
    margin-top: 40px;
    padding-top: 18px;
    gap: 10px;
    flex-direction: column;
  }
  .single-news__pagerBtn {
    width: 100%;
    min-width: 0;
    font-size: 1.4rem;
    padding: 10px 14px;
  }
}
/*
====================================
sidebar cta
====================================
*/
.sidebar-cta {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #49c08b 0%, #2c8ed3 100%);
}
.sidebar-cta__inner {
  position: relative;
  padding: 26px 22px 28px;
  color: #fff;
}
.sidebar-cta__title {
  margin: 0 0 14px;
  font-family: "futura-pt", sans-serif;
  font-size: 2.4rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}
.sidebar-cta__text {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.7;
  opacity: 0.9;
}
.sidebar-cta__btn {
  margin-top: 20px;
  text-align: center;
}
.sidebar-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #1b2c55;
  text-decoration: none;
  transition: 0.3s;
}
.sidebar-cta__link:hover {
  opacity: 0.85;
}
.sidebar-cta__link i {
  font-size: 1.2rem;
  color: #2c8ed3;
}

/* 背景ドット */
.sidebar-cta::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.5;
}/*# sourceMappingURL=single.css.map */