@charset "utf-8";

/* 規定スタイルを解除開始 */

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 規定スタイルを解除終わり */

.header-inner {
  max-width: 1200px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display:flex;
  justify-content: space-between;
  align-items: center;
}

.main{
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 10px 10px;
}

.main img{
  display: block;
}

.main-logo img{
  opacity: 0;
  animation-delay: 2.5s; /* 開始までの時間 */
  animation-duration: 3.0s; /* アニメーションの時間 */

  animation-name:main-logo-Anime;
  animation-fill-mode:forwards;
}

@keyframes main-logo-Anime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.asiato{
  width: 100%;
  display: flex;
  justify-content: center;
}

.footerFixed{
  min-height: 100vh;
  position: relative;
  padding-bottom: 60px; /* フッターの高さを指定 */
  box-sizing: border-box;
}

.footer{
  position: absolute;
  bottom: 0;
  min-width: 100%;
  text-align: center;
}

.copyright{
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}