@charset "UTF-8";
#maincontents {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  color: #333333;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  color: #333;
  text-decoration: none;
  transition-duration: 0.3s;
  opacity: 1;
  cursor: pointer;
}

a:hover {
  color: #666;
  transition-duration: 0.3s;
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.l-headNews .p-headNews__text,
.l-headNews .p-headNews__link {
  color: #fff;
}

.l-headNews {
  position: relative;
  z-index: 100;
}

.fade-slide ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.fade-slide ul li {
  grid-area: 1/1;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.fade-slide ul li > * {
  grid-area: 1/1;
  position: relative;
}
.fade-slide ul li .slide-texts {
  z-index: 1;
}

/* common.scss の末尾などに追加 */
/* ===============================================
//  スクロール連動 背景色変更
// ===============================================*/
.bg-changer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-color: #ffffff;
  transition: background-color 1s ease-in-out;
}

body,
.l-main,
section,
.read {
  background-color: transparent !important;
}

/* common.scss の末尾など、適切な場所に追加 */
/* ===============================================
//  Movie アニメーション
// ===============================================*/
#movie {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
#movie .video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.8);
  filter: blur(5px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out, filter 1.5s ease-out;
}
#movie .video.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}/*# sourceMappingURL=common.css.map */