html {
	overflow: hidden;
}

a, a:hover, a:visited {
	color: #FFF;
	text-decoration: none;
}

body{
	margin: 0;
	background-color: #FFF;
	font-family: Helvetica,HiraKakuProN-W3,meiryo,ãƒ¡ã‚¤ãƒªã‚ª,sans-serif;
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
}

.logo {
	width: 100px;
	line-height: 0;
	position: absolute;
	top:  5px;
	left: 5px;
	z-index: 100;
}

.logo img {
	width: 100%;
}

.textbox > div {
	margin: 20px 0;
	padding: 2px;
	color: #FFF;
	font-weight: bold;
}

.textbox > div span {
	padding: 10px;
	color: #FFF;
	font-weight: bold;
	letter-spacing: .18em;
	background-color: #454545;
	border-radius: 3px;
}

.textbox > div span.pink{
	padding: 0;
	color: #FC6396;
	font-size: 1.2em;
}

/*//////////////////////////////////////////gif*/
.movie_gif {
	width: 100%;
	position: absolute;
	top:  0;
	left: 0;
}

.movie_gif_01 {
	opacity: 0;
	transition: all 1100ms 0s ease;
}

.movie_gif_01.active {
	opacity: 1;
}

/*//////////////////////////////////////////firstView*/
.video00{
	min-width:  100vw;
	min-height: 100vh;
	position: absolute;
	top:  0;
	left: 0;
	z-index: -1;
	opacity: 0;
	transition: all 1100ms 0s ease;
	overflow: hidden;
}

.video00.active {
	opacity: 1;
}

#firstViewContents {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -150px;
}

#firstViewContents img {
	display: none;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

/*//////////////////////////////////////////thirdView*/
#thirdView{
	display: none;
	width:  100%;
	height: 100%;
	position: absolute;
	top:0;
	overflow: hidden;
	z-index: 6;
}

.video03 {
	min-width:  100vw;
	min-height: 100vh;
	position: absolute;
	top:  0;
	left: 0;
}

#thirdViewContents {
	display: flex;
	width:  100%;
	height: 100%;
	margin: 80px auto 0;
	padding: 10px;
	box-sizing: border-box;
	flex-direction: column;
	transition: all 600ms 0s ease;
	position: relative;
}

/*//////////////////////////////////////////fourthView*/
#fourthView {
	display: none;
	width:  100%;
	height: 100%;
	position: absolute;
	top: 0;
	overflow: hidden;
	z-index: 7;
}

.video04 {
	min-width:  100vw;
	min-height: 100vh;
	position: absolute;
	top:  0;
	left: 0;
	z-index: 5;
}

.fourthText {
	display: flex;
	width: 100%;
	color: #FFF;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 5px;
	justify-content: center;
	align-items: center;
}

#fourthViewContents {
	width: 100%;
	margin: 160px auto 0;
	padding: 10px;
	position: relative;
	box-sizing: border-box;
	z-index: 5;
}

#fourthViewOverlay {
	display: flex;
	width:  100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: absolute;
	top:  35px;
	left: 0;
	z-index: 9;
	opacity: 0;
	transition: all 600ms 0s ease;
}

#fourthViewOverlay img {
	display: none;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

/*//////////////////////////////////////////lastView*/

#lastView {
	display: none;
	width:  100%;
	height: 100%;
	position: absolute;
	top:  0;
	left: 0;
	z-index: 11;
}

#lastViewOverlay {
	display: none;
	width:  100%;
	height: 100%;
	background-color: #FFF;
	position: absolute;
	top:  0;
	left: 0;
	z-index: 10;
}

.videoLast {
	height: 100%;
	min-width:  100vw;
	min-height: 100vh;
	position: absolute;
	top:  0;
	left: 0;
	z-index: 12;
}

#lastViewContents {
	position: absolute;
	top:  100px;
	left: 10px;
	z-index: 13;
	transition: all 600ms 0s ease;
}

#lastViewContents img {
	width:  80%;
}

/* animation */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.duration_3s {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  2.1% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  6.2% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  10.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  14.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  16.6% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  2.1% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  6.2% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  10.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  14.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  16.6% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}


/*////////////////////////////////////footer*/
#all {
	display: none;
	width:  100%;
	margin: 0 auto;
	text-align: center;
	position: fixed;
	bottom: 5px;
	z-index: 13;
	transition: all 600ms 0s ease;
}

#all img {
	width:  80%;
	margin-top: 200px;
}