@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
.newsarea {
  min-height: 100dvh;
  background: url(../images/bg.jpg) top 10% center/cover no-repeat;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 480px) {
  .newsarea {
    background: url(../images/bg.jpg) top 10% left 25%/cover no-repeat;
    padding-bottom: 50px;
  }
}
.newsarea__wrapper {
  max-width: 1240px;
  width: calc(100% - 30px);
}
.newsarea__snowlogo {
  width: 100%;
  text-align: center;
  padding-top: 70px;
}
@media all and (max-width: 1367px) {
  .newsarea__snowlogo {
    padding-top: 35px;
  }
}
@media all and (max-width: 1367px) {
  .newsarea__snowlogo img {
    max-width: 250px;
  }
}
.newsarea__txt {
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  border-radius: 8px;
  padding: 80px 50px;
  text-align: center;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
}
@media all and (max-width: 1367px) {
  .newsarea__txt {
    width: 90%;
    margin: 20px auto 0;
    padding: 40px 25px;
  }
}
@media all and (max-width: 896px) {
  .newsarea__txt {
    width: 100%;
  }
}
@media all and (max-width: 480px) {
  .newsarea__txt {
    padding: 30px 20px;
  }
}
.newsarea__txt h1 {
  position: relative;
  font-weight: 700;
  font-size: 2.4rem;
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
  word-break: keep-all;
  line-height: 2;
}
@media all and (max-width: 1367px) {
  .newsarea__txt h1 {
    font-size: 2rem;
  }
}
@media all and (max-width: 480px) {
  .newsarea__txt h1 {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.newsarea__txt h1::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 60px;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  height: 3px;
  background-color: #0096cd;
}
@media all and (max-width: 480px) {
  .newsarea__txt h1::before {
    width: 50px;
  }
}
.newsarea__txt p:not(.newsarea__link) {
  margin-top: 50px;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2;
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
}
@media all and (max-width: 1367px) {
  .newsarea__txt p:not(.newsarea__link) {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 896px) {
  .newsarea__txt p:not(.newsarea__link) {
    text-align: left;
  }
}
@media all and (max-width: 480px) {
  .newsarea__txt p:not(.newsarea__link) {
    font-size: 1.5rem;
  }
}
.newsarea__txt p:not(.newsarea__link) + p {
  margin-top: 30px;
}
.newsarea__en {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 30px;
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .newsarea__en {
    text-align: left;
  }
}
.newsarea__line {
  text-underline-offset: 6px;
  text-decoration: underline;
}
.newsarea__link {
  margin-top: 40px;
}
.newsarea__link a {
  position: relative;
  display: block;
  border-radius: 8px;
  background: #0096cd;
  color: #fff;
  width: 100%;
  max-width: 350px;
  margin: auto;
  padding: 15px 35px;
  font-size: 1.8rem;
  font-weight: 700;
  word-break: keep-all;
  display: grid;
  place-content: center;
}
@media all and (max-width: 1367px) {
  .newsarea__link a {
    max-width: 330px;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 480px) {
  .newsarea__link a {
    font-size: 1.5rem;
  }
}
.newsarea__link a:hover {
  background: #02364B;
  opacity: 1;
}
.newsarea__link a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  background: url(../images/arrowleft_white.svg) center center/contain no-repeat;
  width: 30px;
  height: 30px;
}