/*ロゴCSS*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
html {
	background-color: #08172e!important
}
.container {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Poppins';
}
.container h1 { font-size: 3em; letter-spacing: 10px ;color:#C09B51;  margin-right:-10px; text-align:right; margin-bottom: 0px; animation: fadeIn 6s;}
.lhumkoon-logo {
	width:300px;
	margin:0 auto;
}
.lhumkoon-logo svg {
	width:100%!important;
}
#logo-bottom-1-L {
  fill: #00007f;
}

.logo-item {
  fill: #C09B51; /*塗りつぶし色*/
  stroke-width: 2; /*線の太さ*/
  stroke-dasharray: 2000; /*線の間隔*/
  stroke-dashoffset: 0; /*線の始まりの開始位置*/
  animation-name: anime-logo; /*keyframe名*/
  animation-duration: 3s; /*所要時間*/
  animation-timing-function: linear; /*進行割合*/
}

@media only screen and (max-width: 575px) {
  .lhumkoon-logo {
	  width:225px;
  }
  .container h1  { font-size: 2em }
}

/* アニメーション設定 */
@keyframes anime-logo {
  0% {
    fill: #08172e; /*塗りつぶし色*/
    stroke-dashoffset: 2000; /*線の始まりの開始位置*/
    stroke: #C09B51; /*パスの色*/
  }
  80% {
    fill: #08172e; /*塗りつぶし色*/
  }
  100% {
    stroke-dashoffset: 0; /*線の始まりの開始位置*/
    stroke: #C09B51; /*パスの色*/
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}