@charset "UTF-8";
/*
******************************
    fadeアニメーション
*******************************
*/
/* 初期状態 */
.js-fadeInTrigger,
.js-fadeUpTrigger,
.js-fadeDownTrigger,
.js-fadeLeftTrigger,
.js-fadeRightTrigger {
  opacity: 0;
}

/* その場でfade */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下からfade */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上からfade */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左からfade */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右からfade */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
******************************
    背景が徐々に透明度が濃くなるアニメーション 
*******************************
*/
@keyframes moveanime {
  0% {
    bottom: 35px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: 35px;
  }
}
/*
******************************
    画像やテキストのワイプ表示アニメーション 
*******************************
*/
.img-wrap {
  opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative !important;
}

.img-animation:before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: black;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

/* 画像やテキストのワイプ表示のアニメーション1 */
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
/* 画像やテキストのワイプ表示のアニメーション2 */
@keyframes img-animation {
  99% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
/*
******************************
    メインビジュアルでスライドする画像を少しずつ拡大していくアニメーション
*******************************
*/
@keyframes img-expansion {
  100% {
    transform: scale(1.2, 1.2);
  }
}
/*
******************************
    スクロールダウンで高さ・位置・透過が変化して線が上から下に動くアニメーション 
*******************************
*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
}
/*
******************************
    セクションの横棒が伸びるアニメーション
*******************************
*/
.js-lineExtend.is-animated {
  border-top: 1px solid black;
  animation: lineExtend 1s ease-in-out forwards;
  display: inline-block;
  position: relative;
  top: 3px;
}

@keyframes lineExtend {
  0% {
    width: 0;
  }
  100% {
    width: 220px;
  }
}
/*
******************************
    画像がblurしながら浮かび上がるアニメーション
*******************************
*/
.blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/*
******************************
    readButton
*******************************
*/
.readBtn a {
  font-size: 1.4rem;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 220px;
  max-width: 220px;
  padding: 20px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  transform: skew(-10deg, 0deg);
  background: #054A91;
  color: #fff;
  border: 1px solid #787878;
}

.readBtn a span {
  transform: skewX(10deg);
}

.readBtn a:before {
  content: "";
  width: 65px;
  height: 1px;
  position: absolute;
  right: -20px;
  background: #313131;
  top: 35%;
  transition: 0.2s ease-in-out;
}

.readBtn a:after {
  content: "";
  width: 40px;
  height: 1px;
  position: absolute;
  right: -5px;
  background: #313131;
  top: 55%;
  transition: 0.2s ease-in-out;
}

.readBtn a:hover {
  background: #054A91;
  color: #fff;
  background: #fff;
  color: #313131;
}

.readBtn a:hover:before,
.readBtn a:hover:after {
  transform: translateX(10px);
}

/*
******************************
    トップへ戻るボタン 
*******************************
*/
#page-top {
  position: absolute;
  right: 35px;
  bottom: 35px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 2rem;
  color: #fff;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  animation: moveanime 2s ease-in-out infinite;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}

/*
******************************
    header
*******************************
*/
.header {
  background: #fff;
}
@media screen and (max-width: 479px) {
  .header {
    position: fixed;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header {
    position: fixed;
  }
}

.header * {
  color: black;
}
@media screen and (max-width: 479px) {
  .header * {
    color: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header * {
    color: #fff;
  }
}

@media screen and (max-width: 479px) {
  .hamburger span {
    background: black;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger span {
    background: black;
  }
}

@media screen and (max-width: 479px) {
  .hamburger.active span {
    background: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger.active span {
    background: black;
  }
}

@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp__item-head {
    border-top: 1px solid #fff;
  }
}

/*
******************************
    pageHeader
*******************************
*/
.pageHeader {
  position: relative;
}

.pageHeader__bgImg {
  height: 300px;
  width: 100%;
  margin-top: 80px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 479px) {
  .pageHeader__bgImg {
    height: 200px;
    background-position: center;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__bgImg {
    height: 200px;
    background-position: center;
  }
}

.pageHeader__sectionTitle {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  color: #054A91;
  margin-bottom: 16px;
  background: -webkit-linear-gradient(180deg, rgb(0, 63, 255), rgb(255, 255, 255));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 99;
}
@media screen and (max-width: 479px) {
  .pageHeader__sectionTitle {
    font-size: 4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__sectionTitle {
    font-size: 4rem;
  }
}

.pageHeader__sectionTitle:after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 49px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  z-index: 99;
}

.pageHeader__sectionTitle-sub {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  z-index: 99;
}

.pageHeader__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .pageHeader__mask {
    height: 200px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__mask {
    height: 200px;
  }
}

.pageHeader__mask-mask1 {
  height: 300px;
  z-index: 15;
  background: rgba(1, 63, 147, 0.35);
}

/*
******************************
    本ページ共通
*******************************
*/
@media screen and (max-width: 479px) {
  table td,
  table th {
    width: 100%;
    padding: 16px;
    display: block;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  table td,
  table th {
    width: 100%;
    padding: 16px;
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  main {
    min-height: calc(100vh - 390px);
  }
}

/*
******************************
    header
*******************************
*/
.header {
  box-shadow: 0 0 17px 0 rgba(172, 183, 191, 0.08);
}

/*
******************************
    breadcrumb
*******************************
*/
.breadcrumb {
  margin-top: 80px;
}

.breadcrumb__wrapper {
  width: 1180px;
  max-width: 90%;
  margin-inline: auto;
  padding-block: 16px;
}
@media screen and (max-width: 479px) {
  .breadcrumb__wrapper {
    padding-block: 10px;
  }
}

.breadcrumb__list {
  display: flex;
  gap: 16px;
  font-size: 1.2rem;
}

.breadcrumb__link {
  color: #054A91;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

i.fa-solid.fa-angle-right {
  display: flex;
  align-items: center;
}

.fa-angle-right:before {
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  font-weight: 800;
  font-style: initial;
  color: #054A91;
}

/*
******************************
    news
*******************************
*/
.news__wrapper {
  width: 950px;
  max-width: 90%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 72px;
}
@media screen and (max-width: 479px) {
  .news__wrapper {
    flex-direction: column-reverse;
    gap: 32px;
    padding-top: 16px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news__wrapper {
    flex-direction: column-reverse;
    gap: 32px;
    padding-top: 16px;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .news__wrapper {
    gap: 48px;
  }
}

.news__sideBar {
  width: 210px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 479px) {
  .news__sideBar {
    width: 100%;
    gap: 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news__sideBar {
    width: 100%;
    flex-direction: row;
    gap: 24px;
  }
}

@media screen and (min-width:480px) and (max-width:959px) {
  .news__category {
    width: 50%;
  }
}

@media screen and (min-width:480px) and (max-width:959px) {
  .news__archive {
    width: 50%;
  }
}

.news__contents {
  width: 680px;
}
@media screen and (max-width: 479px) {
  .news__contents {
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news__contents {
    width: 100%;
  }
}

.news__contentsTitle {
  font-size: 1.8rem;
  border-bottom: 1px solid #054A91;
}

.news__link {
  display: flex;
  gap: 24px;
  height: 70px;
  align-items: center;
}
@media screen and (max-width: 479px) {
  .news__link {
    height: auto;
    flex-wrap: wrap;
    row-gap: 6px;
  }
}

.news__item {
  height: 70px;
  border-bottom: 1px solid #B3B3B3;
}
@media screen and (max-width: 479px) {
  .news__item {
    height: auto;
    padding-block: 16px;
  }
}

.news__date {
  font-size: 1.4rem;
}
@media screen and (max-width: 479px) {
  .news__date {
    font-size: 1.6rem;
  }
}

.news__tag {
  min-width: 110px;
  line-height: 16px;
  background: #054A91;
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  display: inline-block;
}
@media screen and (max-width: 479px) {
  .news__tag {
    line-height: unset;
    background: #054A91;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 479px) {
  .news__tag::after {
    content: "\a";
    white-space: pre;
  }
}

.news__articleTitle {
  color: #054A91;
  font-weight: unset;
  font-size: 1.4rem;
}
@media screen and (max-width: 479px) {
  .news__articleTitle {
    font-size: 1.8rem;
    width: 100%;
  }
}

.news__articleTitle:hover {
  text-decoration: underline;
}

.news__groupName {
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  background: #054A91;
}

.news__categoryLink,
.news__yearLink {
  display: block;
  padding: 10px 10px 10px 20px;
  color: #054A91;
  font-size: 1.4rem;
  font-weight: unset;
}

.news__categoryLink:hover,
.news__yearLink:hover {
  text-decoration: underline;
}

.news__categoryItem,
.news__yearItem {
  border-bottom: 1px solid #B3B3B3;
}

.news__Notfound {
  font-size: 1.6rem;
  line-height: 80px;
}

.news__displayGroupName {
  display: inline-block;
  border-bottom: 4px solid #054A91;
  padding: 0 20px 5px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #054A91;
}
@media screen and (max-width: 479px) {
  .news__displayGroupName {
    padding: 0 10px 5px;
    font-size: 2.4rem;
  }
}

.news__pagination {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  gap: 32px;
}

.news__currentBtn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid black;
  text-align: center;
}

.news__pagination .fa-angle-left:before {
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  font-weight: 800;
  font-style: initial;
  color: black;
  margin-right: 8px;
}

.news__pagination .fa-angle-right:before {
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  font-weight: 800;
  font-style: initial;
  color: black;
  margin-left: 8px;
}

/*
******************************
    contactAndRecruit
*******************************
*/
.contactAndRecruit {
  visibility: hidden;
  display: none;
}

/*
******************************
    single(個別記事ページ)
*******************************
*/
.single__wrapper {
  width: 950px;
  max-width: 90%;
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 479px) {
  .single__wrapper {
    padding-top: 24px;
    gap: 16px;
  }
}

.single__category {
  display: inline-block;
  background: #CBE1F4;
  color: #054A91;
  text-align: center;
  font-size: 1.1rem;
  padding: 4px 30px;
  border-radius: 5px;
}

.single__info {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 479px) {
  .single__info {
    gap: 20px;
  }
}

.single__date {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.single__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #054A91;
  border-bottom: 1px solid #B3B3B3;
  padding-bottom: 6px;
}

.single__content {
  font-size: 1.5rem;
}
@media screen and (min-width:480px) and (max-width:959px) {
  .single__content {
    font-size: 1.6rem;
  }
}

.single__returnBtn {
  border: 1px solid black;
  padding: 12px 24px;
  margin-top: 32px;
  transition: 0.4s;
}

.single__returnBtn:hover {
  background: black;
  color: #fff;
}

.single__sentence {
  line-height: 2.2em;
}

.single__img {
  width: 60%;
  display: block;
  margin-top: 1em;
}
@media screen and (max-width: 479px) {
  .single__img {
    width: 100%;
    max-width: 570px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .single__img {
    width: 100%;
    max-width: 570px;
  }
}/*# sourceMappingURL=news.css.map */