@charset "UTF-8";

/* news
========================================*/

/* --- title --- */

.title {
  width: 100%;
  padding: 60px 0 40px;
  text-align: center;
}

.title h1 {
  position: relative;
  max-width: 800px;
  margin: 0 auto 20px;
  padding-bottom: 0.3em;
  text-align: center;
  font-size: 6rem;
  color: #fff;
  font-style: oblique;
  font-family: 'Noto Serif JP';
  font-weight: 600;
  letter-spacing: .08em;
}
.title h1::after {
  position: absolute;
  content: '';
  width: 80%;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: radial-gradient(circle, #e8802b 0%, rgba(255,247,153,0) 100%);
}


/* --- main --- */

main {
  padding-bottom: 40px;
  background: linear-gradient(0deg, rgb(36 23 61) 0%, rgba(23,22,66,1) 100%);
}


/* --- section --- */

.section .section_inr h2 {
  font-size: 4rem;
  font-style: oblique;
  padding-top: 1.2em;
  text-align: center;
}

.section .section_inr h2.border {
  position: relative;
  padding-bottom: .48em;
}
.section .section_inr h2.border::after {
  position: absolute;
  content: '';
  width: 280px;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #fff799;
}

.section .section_inr h3 {
  font-size: 2.8rem;
  padding-top: 1.2em;
  text-align: center;
}

.section .section_inr .lead {
  text-align-last: center;
}


/* --- news --- */

#news {
  position: relative;
  margin: 0 auto;
  padding: 0 0 30px;
  color: #fff;
}

#news h2 {
  position: relative;
  max-width: 800px;
  margin: 0 auto 20px;
  padding-bottom: .3em;
  text-align: center;
  font-size: 4.6rem;
  color: #fff;
  font-style: oblique;
  font-family: 'Noto Serif JP';
  font-weight: 600;
  letter-spacing: .08em;
}
#news h2::after {
  position: absolute;
  content: '';
  width: 80%;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: radial-gradient(circle, rgba(255,247,153,1) 0%, rgba(255,247,153,0) 100%);
}

#news .news_list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
#news .news_list li {
  letter-spacing: .06em;
  border-bottom: 1px solid #8e82a8;
}
#news .news_list li:last-child {
  border-bottom: none;
}
#news .news_list li a {
  position: relative;
  display: flex;
  width: 100%;
  padding: 1.1em 0 1.3em;
}
#news .news_list li a .news_list_date {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-left: .8em;
}
#news .news_list li a .news_list_body {
  font-size: 1.8rem;
  line-height: 1.8;
  margin: 0 4em 0 2em;
}
#news .news_list li a::after {
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-40%);
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../../common/img/ico_ex-link_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
#news .news_list li a:hover .news_list_body {
  text-decoration: underline;
}


@media screen and (max-width: 768px) {

  /* --- main --- */

  main {
    padding-bottom: 20px;
  }

  .section .section_inr {
    width: 90%;
    margin: 0 auto;
  }

  .title {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 20px;
  }

  .title {
    padding: 30px 0 0;
  }
  .title h1 {
    width: 100%;
    font-size: 4rem;
  }
  .title h1::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: radial-gradient(circle, #e8802b 0%, rgba(255,247,153,0) 100%);
  }

  .title p {
    font-size: 1.3rem;
    line-height: 2.2;
    margin-top: 1.2em;
    text-align: left;
  }


  /* --- news --- */

  #news {
    margin: 0 auto;
    padding: 10px 0 20px;
  }
  
  #news h2 {
    padding-bottom: .4em;
    font-size: 3.2rem;
  }

  #news .news_list {
    margin-bottom: 4%;
  }

  #news .news_list li {
    letter-spacing: .06em;
  }
  #news .news_list li:last-child {
    border-bottom: none;
  }
  #news .news_list li a {
    display: block;
    padding: 1.1em 0 1.3em;
  }
  #news .news_list li a .news_list_date {
    font-size: 1.3rem;
    margin-left: .4em;
    margin-bottom: .4em;
  }
  #news .news_list li a .news_list_body {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 0 3em 0 .4em;
  }

}