@charset "UTF-8";

@media all {
  .article__block {
    padding: 6.4rem 0 3rem;
    border-bottom: 1px solid #707070;
  }
  .article__header-date {
    font-size: clamp(12px, 14 / 1400 * 100vw, 14px);
    position: relative;
    color: var(--black);
    letter-spacing: 0.01em;
  }
  .article__header-category {
    font-size: clamp(12px, 14 / 1400 * 100vw, 14px);
    margin-left: 0.7em;
    padding-left: 0.7em;
    letter-spacing: 0.01em;
  }
  .article__header-category[data-type=report] {
    border-left: 1px solid #707070;
    color: var(--blue);
  }
  .article__header-category[data-type=news] {
    padding: 0 0.7em;
    border-radius: 100vmax;
    background: var(--light-blue);
    line-height: 1.6;
    text-align: center;
  }
  .article__header-title {
    font-size: 3rem;
    margin-top: 1em;
    font-weight: 700;
    letter-spacing: 0.015em;
    line-height: 1.8;
		margin-bottom: 60px;
  }
  .article__img {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 3.5rem;
  }
  .article__text {
    margin-top: 2.5em;
    letter-spacing: 0.015em;
  }
  .article__link {
    display: block;
    margin-top: 2.2em;
    letter-spacing: 0.015em;
    -webkit-text-decoration: revert;
            text-decoration: revert;
  }
  .article__page {
    margin-top: 3.3rem;
  }
  .article__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6.3rem;
  }
  .article__prev-link, .article__next-link {
    transition: var(--transition);
    position: relative;
  }
	
	.article__block .article__text-wrap p{
	margin-bottom: 30px;
	}
	
	.article__text-wrap a{
	color: blue;
	text-decoration: underline;
	font-weight: 700;
	}
}
@media (hover: hover) {
  .article__prev-link:hover, .article__next-link:hover {
    opacity: var(--opacity);
  }
}
@media all {
  .article__prev-link::before, .article__next-link::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.5em;
    width: 6px;
    aspect-ratio: 1/1;
    border-top: 2px solid var(--black);
    border-right: 2px solid var(--black);
  }
  .article__prev-link::before {
    right: 115%;
    transform: rotate(-135deg);
  }
  .article__next-link::before {
    left: 115%;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 767px) {
  .article__block {
    padding: 35px 0 20px;
  }
  .article__img {
    margin-top: 20px;
  }
  .article__text {
    margin-top: 1.5em;
  }
  .article__link {
    margin-top: 1.5em;
  }
  .article__page {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .only-tab,
  .only-pc,
  .not-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .only-sp,
  .only-pc,
  .not-tab {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .only-sp,
  .only-tab,
  .not-pc {
    display: none;
  }
}