@charset "UTF-8";
/* --------------------------------
 * header
 * -------------------------------- */
.header {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: #fff;
  text-align: center;
  top: 0;
  left: 0;
  box-shadow: 0px -4px 4px 3px #C0C0C0;
  transition: all 0.5s ease-out;
}
.header h1 {
  height: 46px;/* header h1 height: 46px; */
}
/*.header.fixed {
  top: -100px;
}*/
.header-logo {
  padding-top: 3px;
  display: block;
  max-width: 180px;
  line-height: 1.0;
  margin: 0 auto;
}

/* flex-img ------------------------ */
.flex-img img {
  width: 100%;
  height: auto;
  display: block;
}



/* ----------------
 * foote-nav
 * ---------------- */
.foote-nav-wrap {
	width: 100%;
	position: fixed;
	z-index: 999;
	transform: translateY(150px);
}
.foote-nav {
	display: flex;
	justify-content: space-between;
}
/*.foote-nav.fashion li {
	width: 49.8%;
}*/
.foote-nav li a {
	display: block;
	width: 100%;
}
.foote-nav li a img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
/*　上に上がる動き　*/
.foote-nav-wrap.UpMove {
  animation: UpFooternav 0.5s forwards;
}
@keyframes UpFooternav {
  from {
    opacity: 0;
    transform: translateY(250px);
  }
  to {
    opacity: 1;
    transform: translateY(10px);
  }
}
/*　下に下がる動き　*/
.foote-nav-wrap.DownMove {
  animation: DownFooternav 0.5s forwards;
}
@keyframes DownFooternav {
  from {
    opacity: 1;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(250px);
  }
}