@charset "UTF-8";

.c-news-category__list > .webgene-blog {
  align-items: center;
  display: flex;
  gap: 10px;
}

.c-news-category__item {
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 999px;
  color: #013384;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  line-height: calc(19 / 13);
  min-width: 144px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.c-news-category__item:hover, .c-news-category__item.is-select {
  background-color: #013384;
  color: #FFFFFF;
  opacity: 1;
}

.p-news .c-news-list {
  border-top: dotted 1.5px #8ec1e1;
  margin-top: 66px;
}
.p-news .c-news-item {
  border-bottom: dotted 1.5px #8ec1e1;
}
.p-news .c-news-item::after {
  background: url(../images/news_arrow_blue.svg) no-repeat center/contain;
}
.p-news .c-news-item__date {
  color: #868686;
}
.p-news .c-news-item__title {
  color: #033384;
  font-size: 16px;
  font-weight: 500;
}
.p-news-detail .p-main__inner {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding-block: 100px;
  padding-inline: 20px;
}
.p-news-detail .c-news__head {
  align-items: center;
  display: flex;
  gap: 30px;
}
.p-news-detail .c-news-item__cate {
  margin-top: 0;
}

.c-news-detail {
  margin-inline: auto;
  max-width: 844px;
}

.detail-text {
  color: #483c42;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 2;
  padding-top: 41px;
}

.detail__btn {
  background: #013384;
  border: 1px solid #333333;
  border-radius: 999px;
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: calc(21 / 15);
  margin-inline: auto;
  margin-top: 74px;
  max-width: 218px;
  padding-block: 12px;
  padding-inline: 10px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
  width: 100%;
}
.detail__btn:hover {
  background: #fff;
  color: #013384;
}

.post-ttl {
  border-bottom: 1.5px solid #8b8b8b;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1.32px;
  line-height: 1.4545454545;
  margin-top: 47px;
  padding-bottom: 18px;
  padding-left: 29px;
  padding-top: 10px;
  position: relative;
}
.post-ttl::before {
  background: #2da5e0;
  content: "";
  height: 57%;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.post-detail__content > h2:first-child {
  margin-top: 0;
}
.post-detail__content h2 {
  align-items: center;
  display: flex;
  font-size: 20px;
  font-weight: 500;
  gap: 10px;
  letter-spacing: 0.06em;
  margin-bottom: 35px;
  margin-top: 53px;
}
.post-detail__content h2::before {
  background-color: #2da5e0;
  border-radius: 3px;
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}
.post-detail__content h3 {
  border-bottom: 1.5px solid #2da5e0;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  margin-top: 83px;
  padding-bottom: 12px;
}

.post-detail__content img,
.page-detail__item img {
  aspect-ratio: 595/365;
  border-radius: 10px;
  display: block;
  height: 365px;
  margin: 40px auto 10px;
  margin-inline: auto;
  max-width: 600px;
}

@media (min-width: 768px) {
  .post-detail__content h2 {
    gap: 17px;
  }
  .post-detail__content img,
  .page-detail__item img {
    margin: 75px auto 20px;
    width: 43.5578330893vw;
  }
}