﻿@charset "UTF-8";

.news-list__container {
    width: 100%;
    max-width: var(--container-static);
    margin: 0 auto 10rem;
  }
  .news_wrap {
    padding: 0 1rem;
    opacity: 0;
  }
  .news_wrap--active {
    opacity: 1;
  }
  .news_item {
    margin-bottom: 6rem;
  }
  .news_item--hidden {
    display: none;
  }
  .news_cont {
    display: none;
  }
  .news_detail {
    display: block;
  }
  .news_ttl-wrap {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: solid 1px var(--color-black);
  }
  .news_item .news_date {
    width: 100%;
    margin-bottom: .5rem;
    text-align: left;
    font-family: var(--font-en), var(--hiragino-gothic);
    font-size: 1.5rem;
  }
  .news_item .news_detail-ttl,
  .news_item .news_ttl-wrap .news_cont {
    display: block;
    width: 100%;
    font-size: 2rem;
    line-height: 1.6;
  }
  .news_item .news_detail-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  @media (max-width: 768px) {
    .news-list__container {
      padding: 0 1rem;
      margin-bottom: 0;
    }
    .news_wrap {
      padding: 0;
    }
    .news_item .news_date {
      margin-bottom: .5rem;
      font-size: 1.2rem;
  
    }
    .news_item .news_detail-ttl,
    .news_item .news_ttl-wrap .news_cont {
      font-size: 1.4rem;
      line-height: 1.6;
    }
    .news_item .news_detail-text {
      font-size: 1.3rem;
      line-height: 1.6;
    }
  }