@charset "utf-8";

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
}
body{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  background-color: #000;
  color: #fff;
}
ul,ol{
  list-style: none;
  padding: 0;
}
a{
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  display: block;
}
img,video{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
h1,h2,h3,h4,h5,p{
  margin: 0;
  padding: 0;
}
::before , ::after {
	box-sizing: inherit;
}
button {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

/* 共通 */
h2{
  margin: 0 auto;
  margin-bottom: 20px;
  line-height: 45px;
  text-transform: uppercase;
}
h2 span.ja{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #dfdfdf;
}
h2 span.en{
  font-family: "Syncopate", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  color: #efefef;
}
p{
  font-size: 1.6rem;
  line-height: 26px;
}

.button{
  width: 130px;
  height: 30px;
  margin: 70px 0 0 auto;
  /* border: 1px solid #fff; */
}
.button a{
  width: 130px;
  height: 30px;
  padding-left: 10px;
  line-height: 30px;
  text-align: center;
  font-weight: 200;
  color: #fff;
  /* hover用↓ */
  display: inline-block;
  outline: none;
  position: relative;
  border: 1px solid #fff;
  transition: color 0.5s ease;
}
.button a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.button a span.button_text{
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 16px;
  display: inline-block;
  position: relative;
}


p.p2{
  margin-top: 7px;
}
p.p3{
  margin-top: 15px;
  font-size: 1.2em;
}


/* js slidein css↓ */
.container{
	overflow: hidden;
}
.slidein{
	transition: 1.8s cubic-bezier(0, 0.75, 0.25, 1);
}
.slide_left{
	transform: translateX(calc(-50vw - 50%));
}
.slide_right{
	transform: translateX(calc(50vw + 50%));
}
.show{
	transform: translateX(0);
}
.title.slidein{
	transition: 1.8s cubic-bezier(2, 0, 0.25, 1);
}
.st1.slidein,
.st2.slidein,
.st3.slidein{
  transition: 1.4s cubic-bezier(0.75, 0, 0.25, 1);
  transition-delay: 1.1s;
}
.st2.slidein{
	transition-delay: 1.5s;
}
.st3.slidein{
	transition-delay: 2.0s;
}


/* slogan3 Blur css↓ */
.slogan p.slogan3 {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 5.8s;
  animation-duration: 5.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 1.8s;
  animation-delay: 4.9s;
}
@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    filter: blur(15px);
  }
  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
  }
}

@media screen and (max-width: 768px){
  .slogan p.slogan3{
    opacity: 1;
    animation-duration: .8s;
  }
  p.slogan3.blur{
    transition: 0.3s;
    animation-delay: 0s;
  }
  p.slogan3.au_slogan {
    opacity: 0;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    transition: transform 0.5s linear;
    -webkit-animation-duration: 5.5s;
    animation-duration: 5.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .au_slogan.blur{
    animation-delay: 0.6s;
  }
}


/* slogan2 typing css↓ */
.slogan2 span {
  display: block;
  /* border-right: 1px solid #fff; */
	/* width: 40ch;	文字の長さ */
  width: 380px;
	overflow: hidden;
	white-space: nowrap;
	animation: typing 2.2s steps(38), blink .4s step-end infinite alternate;
  animation-delay: 2.9s;
  animation-fill-mode: both;
}
.slogan2 span.sp2{
  width: 300px;
  animation-delay: 3.8s;
}
@keyframes typing {
	from {
		width: 0;
	}
}
/*点滅風に見せる↓*/
/* @keyframes blink {
	50% {
		border-color: transparent;		
	}
} */