@charset "utf-8";

/*============================
#news_archive
============================*/
.news_archive li {
  border-bottom: solid 1px #e9e9e9;
}

.news_archive li a {
  padding: 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: #444;
}

.news_archive li a>* {
  display: block;
}

.news_archive li .info {
  font-size: 1.4rem;
  line-height: 1;
  padding-top: .5rem;
  width: 25%;
}

.news_archive li time {
  margin-right: 1.5em;
}

.news_archive li .term:before {
  content: '\07B';
  margin-right: .3em;
}

.news_archive li .term:after {
  content: '\07d';
  margin-left: .3em;
}

.news_archive li .title {
  font-size: 1.6rem;
  line-height: 1.5;
  width: 75%;
  text-decoration: underline;
}

/*@ = PC ONLY = @*/
@media screen and (min-width: 992px) {
  .news_archive li a:hover {
    opacity: .5;
  }

  .news_archive li a:hover .title {
    text-decoration: none;
  }
}

/*@ = tablet = @*/
@media screen and (max-width : 991px) {
  .news_archive li a {
    display: block;
    padding: 2.5rem 1.5rem;
  }

  .news_archive li .info {
    width: 100%;
    padding-top: 0;
  }

  .news_archive li .title {
    width: 100%;
    margin-top: .75em;
  }
}

/*@ = Mobile L = @*/
@media screen and (max-width : 767px) {
  .news_archive li .info {
    font-size: 1.3rem;
  }

  .news_archive li .title {
    font-size: 1.4rem;
  }
}

/*============================
#news_single
============================*/
.news_single .ttl_box {
  padding-bottom: 2.5rem;
  border-bottom: solid 1px #ddd;
  margin-bottom: 3rem;
}

.news_single .ttl_box .info {
  line-height: 1;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1em;
}

.news_single .ttl_box time {
  margin-right: 1.5em;
}

.news_single .ttl_box .term {
  position: relative;
}

.news_single .ttl_box .term:before {
  content: '\07B';
  margin-right: .3em;
}

.news_single .ttl_box .term:after {
  content: '\07D';
  margin-left: .3em;
}

.news_single .ttl_box h1 {
  font-size: 3rem;
  color: #164878;
  line-height: 1.5;
}

.news_single .link_btn {
  text-align: center;
}

/*@ = tablet = @*/
@media (max-width : 991px) {
  .news_single .ttl_box h1 {
    font-size: 2.4rem;
  }

  .news_single .ttl_box .info {
    margin-bottom: .75em;
  }

  .news_single .ttl_box {
    padding-bottom: 2rem;
    margin-bottom: 2.25rem;
  }
}