@charset "UTF-8";
.section-news {
  position: relative;
  background-color: #EFFCFF;
}
.section-news::before {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  width: 100%;
  height: 13.3333333333vw;
  max-height: 40px;
  background: url(..//images/decoration/header_bg2.svg) no-repeat top center/100% 100%;
}
.section-news__list {
  padding: 21.3333333333vw 10% 20px;
  text-align: left;
  list-style: none;
}
.section-news__list-items {
  margin: 0 auto 40px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}
.section-news__list-items__image {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
}
.section-news__list-items__title {
  font-size: 2rem;
  color: #54B8CC;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
.section-news__list-items__description {
  color: #585F62;
  font-family: "Noto Sans JP", sans-serif;
}
.section-news__list-items a {
  display: block;
  text-decoration: none;
  color: #585F62;
  text-align: center;
}
.section-news__list-items a img {
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 0 auto 10px;
}
.section-news__list-items a span {
  margin-bottom: 5px;
}
.section-news__list-items a h3 {
  display: block;
  color: #54B8CC;
}

.more-btn {
  background-color: #FFE178;
  border-radius: 10px;
  width: 70%;
  max-width: 270px;
  margin: 0 auto 80px;
  padding: 10px 0;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  color: #585F62;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}
.more-btn:hover {
  color: #fff;
  background-color: #54B8CC;
  transition: all 0.3s;
}
.more-btn a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #585F62;
}

@media (min-width: 700px) {
  .section-news::before {
    max-height: 60px;
  }
  .section-news__list {
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 9.0277777778vw;
  }
  .section-news__list-items {
    width: 90%;
    padding: 0;
    margin: 0 auto 40px;
  }
  .section-news__list-items a {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .section-news__list-items a img {
    display: block;
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0;
    border-radius: 10px 0 0 10px;
  }
  .section-news__list-items a h3 {
    margin-left: 0;
  }
  .only-news {
    padding: 40px;
  }
}
#screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #C6EAF2;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

body {
  background: #FFE178;
  /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: #EFFCFF;
  /*画面を開いた後の背景色を指定*/
}

.screenbg {
  display: none;
  content: "";
  position: fixed;
  transform: scale(100);
  background-color: #FFE178;
  /*伸びる背景色の設定*/
  z-index: 999;
  /*丸のスタートの形状*/
  top: calc(50% - 1rem);
  /*50%から円の半径を引いた値*/
  left: calc(50% - 1rem);
  /*50%から円の半径を引いた値*/
  width: 2rem;
  height: 2rem;
}

/*bodyにappearクラスがついたら出現*/
body.appear .screenbg {
  display: block;
  border-radius: 50%;
  animation-name: PageAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    /*丸のスタート位置と形状*/
    transform: scale(100);
  }
  100% {
    /*丸の終了位置と形状*/
    transform: scale(0);
    display: none;
    /*終了時は消える*/
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=news.css.map */