@charset "UTF-8";

/*CSSDocument*/


/* html body base
===============================================================*/


/*
html ----------------------------------------------------------*/

*{ margin:0px; padding:0px;}

body{
  color:#000000;
  margin:0;
  padding:0;
  background:#FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  text-align:left;
  font-size:100%;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position:relative;
}

a:link,
a:visited,
a:hover,
a:active { color:#000;text-decoration:none;}

ul{ list-style:none;}

img {
  padding:0px;
  margin:0px;
  vertical-align:bottom;
  max-width: 100%;
  height: auto;
}
a {
  transition: all 0.5s ease-out;
}
a:hover {
  opacity:0.7;
}

/*
html ----------------------------------------------------------*/

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 30px;
}
@media screen and (max-width: 768px){
  .l-inner {
    padding: 0 20px;
  }
}

.p-header__logo {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  z-index: 2000;
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 768px){
  .p-header__logo {
    width: 60px;
    height: 60px;
  }
}

.p-footer {
  background-color: #000;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-footer__copyright {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .14em;
}
@media screen and (max-width: 768px){
  .p-footer {
    height: 40px;
  }
  .p-footer__copyright {
    font-size: 12px;
  }
}

.u-zoomIn,
.u-topZoomIn {
  opacity: 0;
}
.u-zoomIn.is-active,
.u-topZoomIn.is-active {
	animation-name:zoomIn;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomIn{
  40% {
  opacity: 0;
	transform: scale(0.6);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.u-fadeUp {
  opacity: 0;
}
.u-fadeUp.is-active {
  opacity: 1;
  animation: fadeup .8s linear 1;
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* body base
===============================================================*/
