@charset "UTF-8";
/*==========================================
変数 inc.scss
===========================================*/
/*==========================================
 共通
===========================================*/
.jumbotron {
  padding: clamp(60px, 12vw, 120px) 4vw clamp(30px, 6vw, 60px);
}
.jumbotron_head {
  color: #004a95;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.jumbotron_head_en {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.jumbotron_head_ja {
  font-weight: 900;
  letter-spacing: 0.4em;
}

.newsArea {
  padding: 60px 0 120px;
  background: #ededed;
}
.newsArea_tagArea {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.newsArea .tagArea_tag {
  min-width: 113px;
  margin: 0 8px 10px;
}

/*==========================================
 お知らせ一覧
===========================================*/
.news-list {
  margin-bottom: 80px;
}
.news-list_item {
  width: 100%;
  min-height: 80px;
  padding: 25px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.3s ease-in-out;
}
.news-list_item:nth-child(n+2) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .news-list_item {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .news-list_item {
    padding: 20px;
  }
}
.news-list_tag {
  min-width: 164px;
  height: 30px;
  padding: 0 1em;
  margin-right: 30px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #004a95;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .news-list_tag {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 576px) {
  .news-list_tag {
    min-width: 120px;
    margin-right: 20px;
  }
}
.news-list_date {
  margin-right: 30px;
  font-family: "Bebas Neue", cursive;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .news-list_date {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.news-list_ttl {
  margin-right: 50px;
  letter-spacing: 0.1em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .news-list_ttl {
    width: 90%;
    margin: 0;
  }
}
@media screen and (max-width: 576px) {
  .news-list_ttl {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.news-list .arw {
  width: 20px;
  height: 22px;
  margin-right: -5px;
  margin-left: auto;
  border-radius: 50%;
  position: relative;
  vertical-align: middle;
}
.news-list .arw::after {
  content: "";
  display: block;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  width: 14px;
  height: 14px;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 11px);
  transition: 0.3s ease-in-out;
}
.news-list_item:hover {
  background: linear-gradient(to right, #003387, #187fc2);
}
.news-list_item:hover .news-list_tag {
  color: #004a95;
  background: #fff;
}
.news-list_item:hover .news-list_date {
  color: #fff;
}
.news-list_item:hover .news-list_ttl {
  color: #fff;
}
.news-list_item:hover .arw::after {
  border-color: #fff;
}

/*==========================================
 お知らせ詳細
===========================================*/
.single-news .ttlWrap {
  padding: 25px;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(to right, #003387, #187fc2);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .single-news .ttlWrap {
    padding: 20px;
  }
}
.single-news .ttlWrap_tag {
  width: 164px;
  height: 30px;
  padding: 0 1em;
  margin-right: 30px;
  letter-spacing: 0.1em;
  color: #004a95;
  background: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .single-news .ttlWrap_tag {
    width: 120px;
    margin-right: 20px;
  }
}
.single-news .ttlWrap_date {
  font-family: "Bebas Neue", cursive;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.single-news .ttlWrap_ttl {
  width: 100%;
  margin-top: 20px;
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 576px) {
  .single-news .ttlWrap_ttl {
    font-size: 1.6rem;
  }
}
.single-news .textWrap {
  padding: 80px 25px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 576px) {
  .single-news .textWrap {
    padding: 60px 20px;
  }
}/*# sourceMappingURL=news.css.map */