@charset "UTF-8";


body {
  position: relative;
  color: #333;
  font-size: 1.6rem;
  font-family: 'Gulim','Century Gothic','maaemo_regular',sans-serif;
  overflow: hidden;
  background-color: rgba(255,255,255,0.7);
	  background-blend-mode: lighten;
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("/img/Createrna_top3_all.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;/* ← 固定サイズ */
  background-attachment: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  opacity: 0;
  animation: fadeInBackground 3s ease-in-out forwards;
  z-index: -1;
}



@keyframes fadeInBackground {
  to {
    opacity: 1;
  }
}


