@charset "UTF-8";

/* 下層ページ　共通仕様 */
.sub-page-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: clamp(50px, 4vw, 80px);
}

/* ページトップ */
.page-title-area {
  padding: 2.5vw 5vw 1.5vw;
  background: linear-gradient(to bottom right, #F5FAFF, #97C8EB);
  overflow: hidden;
}

.page-title-area-iiner {
  width: 100%;
  margin: 0 auto;
}

.page-title--01 {
  font-size: 8em;
  font-weight: bold;
  color: #97c8eb7d;
  line-height: 0.7;
  margin-bottom: 15px;
}

.page-title--02 {
  font-size: 1.8em;
  font-weight: bold;
  color: #004C99;
}


/* お知らせ */
.news-all__category-menu-area {
  width: 100%;
  height: 130px;
  position: relative;
}

.news-all__category-menu {
  position: absolute;
  width: 170px;
  top: 0;
  right: 0;
  box-shadow: 0px 0px 8px #00000010;
}

.news-all__category--01,
.news-all__category--02,
.news-all__category--03 {
  width: 100%;
  height: 40px;
  position: relative;
  cursor: pointer;
  transition: background-color .3s ease;
}

.news-all__category--01 {
  border: solid 2px #004C99
}

.news-all__category--02 {
  border-bottom: solid 1px #004C99;
}

.news-all__category--01:hover,
.news-all__category--02:hover,
.news-all__category--03:hover {
  background-color: #004C99;
}

.news-all__category--01:hover .category-icon{
  border-top: solid 2px #FCFCFC;
  border-right: solid 2px #FCFCFC;
}

.news-all__category--01:hover .category_text,
.news-all__category--02:hover .category_text,
.news-all__category--03:hover .category_text {
  color: #FCFCFC;
}



.news-all__category-group {
  border: solid 1px #004C99;
  transform: translateY(-1%);
  display: none;
}

.category_text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-weight: 500;
  color: #004C99;
}

.category-icon {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-70%) rotate(135deg);
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #004C99;
  border-right: solid 2px #004C99;
}

.category-icon.show {
  transform: translateY(-35%) rotate(315deg);
}

.news-all__list-area {
  margin: clamp(10px, 3vw, 40px) 0;
}

.news-content {
  display: flex;
  align-items: center;
  gap: 7%;
  padding: clamp(20px, 3%, 27px) clamp(10px, 2%, 18px);
}

.news-content{
  border-bottom: solid 1px #D9D9D9;
}

.news-content.last-view{
  border: none;
}


.news-content-category {
  width: 100px;
  height: 40px;
  position: relative;
  border: solid 1px #004C99;
}

.news-content-category span {
  width: 100%;
  color: #004C99;
  font-weight: 600;
  font-size: 1em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.category-color {
  background-color: #036dd6;
  font-weight: 500;
}

.category-color span {
  color: #FCFCFC;
}

.news-content-title {
  font-weight: 500;
  text-decoration: underline;
  font-size: 1.1em;
}

.news-content-title a {
  transition: opacity .3s ease;
}

.news-content-title a:hover {
  opacity: .8;
}


@media(max-width:780px) {

  /* 下層ページ　共通仕様 */
  .sub-page-title {
    font-size: 1.8em;
  }


  /* ページトップ */
  .page-title-area {
    padding: 20px 5vw 15px;
  }


  .page-title--01 {
    font-size: 5em;
    margin-bottom: 7px;
  }

  .page-title--02 {
    font-size: 1.5em;
  }


  /* お知らせ */
  .news-content {
    flex-wrap: wrap;
  }

  .news-content-title {
    width: 100%;
    margin-top: clamp(12px, 3vw, 20px);
  }

  .news-content-category {
    width: 100px;
    height: 35px;
  }


}