@charset "utf-8";
/* CSS Document */
*, *::before, *::after {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  ;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #292929;
  font-size: 0.975rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
  min-height: 100vh;
  overflow-wrap: break-word;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img, picture, video {
  display: block;
  height: auto;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
em {
  font-style: normal;
}
button {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

.opacityIn {
  opacity: 0;
  transition: all 1s;
}
.opacityIn.active {
  opacity: 1;
}
.fadeIn {
  opacity: 0;
  transform: translateY(120px);
  transition: all 1s;
}
.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}
.fadeIn_l {
  opacity: 0;
  transform: translateX(-120px);
  transition: all 1s;
}
.fadeIn_l.active {
  opacity: 1;
  transform: translateX(0);
}
.fadeIn_r {
  opacity: 0;
  transform: translateX(120px);
  transition: all 1s;
}
.fadeIn_r.active {
  opacity: 1;
  transform: translateX(0);
}
/* 遅延表示用 common.Lazy.js
-----------------------------------------------------------------*/
#Content .lazy, #Content .all_lazy > * {
  opacity: 0;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 15px;
  bottom: 95px;
  display: block;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: .3s;
  
/*   デフォルトは非表示 */
  opacity: 0;
}
.pagetop img {width: 100%;height: auto;}
.pagetop:hover {
    box-shadow: 0 0 10px #fff;
}
