@charset "UTF-8";
/* common.css */

/*--------------------
1:body.elements
--------------------*/
html, body, #barba-wrapper {
  height: 100%;
}
body {
  color: #000;
  font-family: Lato, "Noto Sans Japanese", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

#wrapper {
  position: fixed;
  overflow: auto;
  width: 100%;
  height: 100%;
}
a {
  text-decoration: none;
}
.container {
  /* overflow: auto; */
}

[class^="btn-"] {
  display: block;
  font-weight: bold;
  line-height: 1;
  padding: 16px;
  text-align: center;
  width: 240px;
}
.btn-01 {
  background: #000;
  color: #fff;
}
.btn-02 {
  background: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 14px;
}
.btn-02:hover {
  background-color: #000;
  color: #fff;
}

/* anime */
.from-top, .from-bottom, .from-right, .from-left {
  opacity: 0;
  transform: translateY(-40px);
}
.from-bottom { transform: translateY(40px);}
.from-right { transform: translateX(40px);}
.from-left { transform: translateX(-40px);}
.start-big {
  transform: scale(3,3);
  opacity: 0;
}
.fade { opacity: 0;}
.trans {
  transition: .5s cubic-bezier(0.77, 0, 0.175, 1);
}
