@charset "UTF-8";
/* CSS Document */
.section-top {
  margin: 0 auto;
}
.news-title {
  padding-top: 100px;
  text-align: center;
  color: #333;
}
.news-title h2 {
  font-size: 4.5vw;
  line-height: 1;
  position: relative;
  padding: 40px 0 15px 0;
  margin-bottom: 15px;
  color: #070F6C;
  letter-spacing: 0.3rem;
}
.news-title h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  border-bottom: solid 1px #C1C1C1;
  transform: translateX(-50%);
  animation: border_anim 1s linear forwards;
}
@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100px;
  }
}
.section-news {
  margin: 0 auto 80px;
  padding-left: 10%;
  padding-right: 10%;
  text-align: left;
  color: #333;
}
.section-news h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.time-and-category {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.time-and-category time {
  display: block;
  letter-spacing: 0.1rem;
  line-height: 1;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.3rem;
  padding-right: 20px;
}
.news-category {
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  margin-left: 30px;
  padding: 5px;
  border: solid 1px #03A88A;
  background-color: #03A88A;
  font-weight: 400;
  width: 100px;
  color: #FFF;
  text-align: center;
  border-radius: 5px;
}
.news-image {
  background-size: cover;
  background-position: center;
  padding-top: 56.25%;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
}
.news-description {
  line-height: 2.5;
  margin-bottom: 50px;
  font-weight: 400;
}
.news-title p {
  line-height: 1;
  font-size: 1.0rem;
  letter-spacing: 0.2rem;
  color: #070F6C;
  margin-bottom: 60px;
  font-family: 'Lato', sans-serif;
}
.back {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: #070F6C;
  color: #FFF;
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.3rem;
}
.section-news a {
  text-decoration: none;
}
.news-description a {
  color: #3f95e1;
}
@media(max-width:340px) {
  .time-and-category {
    display: block;
  }
  .news-category {
    margin-left: 0;
  }
  .time-and-category time {
    margin-bottom: 15px;
  }
}
@media(min-width:1060px) {
  .section-news {
    margin-bottom: 150px;
  }
  .news-title {
    padding-right: 0;
    text-align: center;
    padding-top: 272px;
  }
  .news-title h2 {
    font-size: 4rem;
    padding-bottom: 30px;
    margin-bottom: 30px;
    padding-top: 0;
    letter-spacing: 0.7rem;
  }
  .news-title p {
    font-size: 1.4rem;
    margin-bottom: 100px;
  }
  .section-news h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .time-and-category time {
    font-size: 1.4rem;
  }
  .news-category {
    font-size: 1.4rem;
    width: 130px;
  }
  .time-and-category {
    margin-bottom: 40px;
  }
  .news-image{
    margin-bottom: 40px;
  }
  .news-description {
    font-size: 1.6rem;
    margin-bottom: 100px;
  }
  .news-description a {
    transition: ease .3s;
  }
  .news-description a:hover {
    color: #8ab6ff;
    transition: ease .3s;
  }
  .back {
    font-size: 1.6rem;
    padding: 10px 0;
    transition: all .2s;
    width: 280px;
    margin: 0 auto;
  }
  .back:hover {
    background-color: #03A88A;
    color: #FFF;
    box-shadow: rgba(7, 15, 108, 0.25) 0px 13px 27px -5px, rgba(7, 15, 108, 0.3) 0px 8px 16px -8px;
  }
}