<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100000 !important;
  background: #fff100;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.tenmetsu_001 {
     margin-right: 2%;
}




@media only screen and (min-width: 1000px) {
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 700px;
}
.tenmetsu {
     font-size: 110%;
     font-weight: 900;
     letter-spacing: 1em;
	animation: flash 1s linear infinite;
     padding-top: 45px;
     color: #000000;
     font-style: italic;
}
}


@media only screen and (max-width: 1000px) {
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 300px;
}
.tenmetsu {
     font-size: 60%;
     font-weight: 900;
     letter-spacing: 0.75em;
	animation: flash 1s linear infinite;
     padding-top: 20px;
     color: #000000;
     font-style: italic;
}
}


@keyframes flash {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}




/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}



/*========= レイアウトのためのCSS ===============*/

#container{
    width:100%;
    height: 100vh;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a{
    color: #333;
}

a:hover{
     text-decoration: none;   
}</pre></body></html>