* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.box {
  height: 100vh;
  padding: 100px 10px;
}

.box1 {
  background: #fdfdd9;
}

.box2 {
  background: #4ca4cf;
}

.box3 {
  background: #e5cf54;
}

.box4 {
  background: #45cb99;
}

.box5 {
  background: #cb8145;
}

.box6 {
  background: #e98898;
}

.box7 {
  background: #4ca4cf;
}

.box8 {
  background: #e5cf54;
}

.box9 {
  background: #45cb99;
}

.box10 {
  background: #cb8145;
}

.pagenation {
  padding: 10px;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.pagenation li {
  list-style-type: none;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.pagenation a {
  display: block;
  height: 10px;
  border: 1px solid #666;
  width: 10px;
  border-radius: 10px;
  transition: all 600ms 0s ease;
}

.pagenation a.active {
  background: #666;
  width: 15px;
  height: 15px;
}

.factory {
  width: 300px;
  height: auto;
}

.family {
  top: 80%;
  z-index: 100;
}

.korosaku {
  height: 70px;
  /* display: inline-block; */
  margin-top: 42px;
  width: 50px;
}

.mama {
  height: 100px;
  /* display: inline-block; */
  margin-top: 16px;
  width: 93px;
}

.papa {
  height: 110px;
  /* display: inline-block; */
  /* margin-top: 34px; */
  width: 110px;
}

.scroll {
  position: relative;
  display: inline-block;
  height: 100px;
}

.scroll:hover {
  text-decoration: none;
}

.scroll:after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  margin: auto;
  top: 10px;
  right: 0;
  left: 0;
  -webkit-animation: 3s arrow infinite ease;
  animation: 3s arrow infinite ease;
}

.scroll:after {
  border-right: 2px solid #01a8fb;
  border-bottom: 2px solid #01a8fb;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.scroll_w {
  position: relative;
  display: inline-block;
  height: 100px;
}

.scroll_w:hover {
  text-decoration: none;
}

.scroll_w:after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  margin: auto;
  top: 10px;
  right: 0;
  left: 0;
  -webkit-animation: 3s arrow infinite ease;
  animation: 3s arrow infinite ease;
}

.scroll_w:after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@-webkit-keyframes arrow {

  0%,
  100% {
    top: 20px;
  }

  50% {
    top: 40px;
  }
}

@keyframes arrow {

  0%,
  100% {
    top: 20px;
  }

  50% {
    top: 40px;
  }
}

.factoryImages {
  max-width: 75%;
}

.voiceBox {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #fff;
  border-radius: 15px;
  font-size: 1.1em;
}

.voiceBox:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 20%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
}

.voiceBox p {
  margin: 0;
  padding: 0;
}

/*----------
〜869px
----------*/
@media (max-width: 896px) {
  .factoryImages {
    max-width: 100%;
  }
}

/*----------
〜480px
----------*/
@media (max-width: 480px) {
  .voiceBox {
    font-size: 1em;
  }

  .scroll:after {
    width: 20px;
    height: 20px;
  }

  .scroll_w:after {
    width: 20px;
    height: 20px;
  }
}