@charset "UTF-8";
.pcbr {
  display: block;
}
@media screen and (max-width: 736px) {
  .pcbr {
    display: none;
  }
}

.spbr {
  display: none;
}
@media screen and (max-width: 736px) {
  .spbr {
    display: block;
  }
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "メイリオ";
  background: #f1f1f1;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: inline-block;
}

main {
  padding-bottom: 90px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.red-text {
  color: #ba0219;
}

.warpper {
  opacity: 0;
  width: 1040px;
  min-height: 700px;
  margin: 30px auto 10px;
  background: #fff;
  -webkit-box-shadow: 10px 10px 10px #ccc, -10px -10px 10px #ccc;
          box-shadow: 10px 10px 10px #ccc, -10px -10px 10px #ccc;
  position: relative;
}
@media screen and (max-width: 736px) {
  .warpper {
    width: 100%;
    margin: 0;
  }
}

.header {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 5px 15px 8px 15px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #c53636), color-stop(70%, #7f2121));
  background: linear-gradient(#c53636 20%, #7f2121 70%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: 1.5rem;
  letter-spacing: 3px;
  font-weight: normal;
  position: relative;
  top: 3px;
}

/* .header::after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 1.5s ease-in-out;
} */
@-webkit-keyframes reflect {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(80) rotate(45deg);
            transform: scale(80) rotate(45deg);
    opacity: 0;
  }
}
@keyframes reflect {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(80) rotate(45deg);
            transform: scale(80) rotate(45deg);
    opacity: 0;
  }
}
.header::before {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 1px;
}

.header span {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 736px) {
  .header span {
    display: none;
  }
}

.header .header-logo-box img {
  width: 130px;
  position: relative;
  top: 3px;
}

.header .header-logo-box span {
  font-size: 1rem;
  font-weight: normal;
}

/*page-1 対策実績*/
.page-1 {
  text-align: center;
  padding: 0 0 80px;
}
@media screen and (max-width: 736px) {
  .page-1 {
    padding: 0 10px 80px;
  }
}

.page-1 .block-1 {
  margin: 20px 0 0;
}

.page-1 .block-1 .t-1 {
  position: relative;
  font-size: 2rem;
  font-family: "游明朝";
  font-weight: bold;
}

@-webkit-keyframes bottom-fade {
  0% {
    opacity: 0;
    bottom: 10px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}

@keyframes bottom-fade {
  0% {
    opacity: 0;
    bottom: 10px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
@-webkit-keyframes top-fade {
  0% {
    opacity: 0;
    top: 10px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@keyframes top-fade {
  0% {
    opacity: 0;
    top: 10px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@-webkit-keyframes left-fade {
  0% {
    opacity: 0;
    left: 10px;
  }
  100% {
    opacity: 1;
    left: 0px;
  }
}
@keyframes left-fade {
  0% {
    opacity: 0;
    left: 10px;
  }
  100% {
    opacity: 1;
    left: 0px;
  }
}
@-webkit-keyframes right-fade {
  0% {
    opacity: 0;
    right: 10px;
  }
  100% {
    opacity: 1;
    right: 0px;
  }
}
@keyframes right-fade {
  0% {
    opacity: 0;
    right: 10px;
  }
  100% {
    opacity: 1;
    right: 0px;
  }
}
.page-1 .block-1 .t-2 {
  position: relative;
  /* opacity: 0; */
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  color: #ba0219;
  /* animation: fadein 1.8s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s; */
}
@media screen and (max-width: 736px) {
  .page-1 .block-1 .t-2 {
    font-size: 2.2rem;
  }
}

.page-1 .block-1 .t-2 span {
  letter-spacing: 5px;
  margin: 0 36px 0 0;
  font-size: 5rem;
  position: relative;
  top: 6px;
}
@media screen and (max-width: 736px) {
  .page-1 .block-1 .t-2 span {
    letter-spacing: 0;
    font-size: 4.8rem;
  }
}

.page-1 .block-1 .t-2 .count_item {
  position: absolute;
  bottom: 2px;
  left: 475px;
  font-size: 3rem;
  /* animation: flash 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.3s; */
}
@media screen and (max-width: 736px) {
  .page-1 .block-1 .t-2 .count_item {
    left: 60px;
  }
}

.page-1 .block-1 .t-3 {
  margin: 15px 0 0;
  /* opacity: 0; */
  font-weight: bold;
  /* animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 6.3s; */
}

.page-1 .block-1 .countUp-anime {
  display: inline-block;
  width: 230px;
  /* animation: flash 1s;
  animation-fill-mode: forwards;
  animation-delay: 5s; */
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-1 .block-2 .t-1 {
  position: relative;
  /* left: 10px; */
  /* opacity: 0; */
  margin: 15px 0 0;
  font-size: 1.6rem;
  /* animation: left-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 6.5s; */
}
@media screen and (max-width: 736px) {
  .page-1 .block-2 .t-1 {
    margin: 15px 0;
    font-size: 1.5rem;
  }
}

.page-1 .block-2 .t-2 {
  /* opacity: 0; */
  position: relative;
  /* bottom:  10px; */
  font-size: 2.5rem;
  line-height: 1.3;
  font-family: "小塚明朝 Pro";
  font-weight: bold;
  color: #ba0219;
  /* animation: bottom-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 6.8s; */
}
@media screen and (max-width: 736px) {
  .page-1 .block-2 .t-2 {
    font-size: 2.1rem;
  }
}

.page-1 .block-3 {
  margin: 15px 0 0;
  padding: 0 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 736px) {
  .page-1 .block-3 {
    display: block;
    margin: 30px 0 0;
    padding: 0 10px;
  }
}

.page-1 .block-3 .col {
  width: 212px;
  /* opacity: 0; */
  position: relative;
  /* top: 10px; */
  /* animation: top-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 7.4s; */
}
@media screen and (max-width: 736px) {
  .page-1 .block-3 .col {
    width: 100%;
  }
  .page-1 .block-3 .col:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}

.page-1 .block-3 .col-2 {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

.page-1 .block-3 .col-3 {
  -webkit-animation-delay: 7.6s;
          animation-delay: 7.6s;
}

.page-1 .block-3 .va {
  position: relative;
  width: 160px;
  height: 160px;
  line-height: 130px;
  background: #ba0219;
  margin: auto;
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
  border-radius: 100%;
}
@media screen and (max-width: 736px) {
  .page-1 .block-3 .va {
    width: 260px;
    height: 260px;
    line-height: 230px;
  }
}

.page-1 .block-3 .col-1 .va .anime {
  -webkit-animation-delay: 8.2s;
          animation-delay: 8.2s;
}

.page-1 .block-3 .col-2 .va .anime {
  -webkit-animation-delay: 8.3s;
          animation-delay: 8.3s;
}

.page-1 .block-3 .col-3 .va .anime {
  -webkit-animation-delay: 8.4s;
          animation-delay: 8.4s;
}

.page-1 .block-3 .va .anime {
  /* opacity: 0;
  transform: scale(0) rotate(-80deg);
  animation: p1-3 .5s;
  animation-fill-mode: forwards; */
}

@-webkit-keyframes p1-3 {
  0% {
    -webkit-transform: scale(0) rotate(-80deg);
            transform: scale(0) rotate(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes p1-3 {
  0% {
    -webkit-transform: scale(0) rotate(-80deg);
            transform: scale(0) rotate(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.page-1 .block-3 .va span {
  position: absolute;
  width: 100%;
  top: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  font-size: 1.8rem;
}

.page-1 .block-3 .t-1 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}
@media screen and (max-width: 736px) {
  .page-1 .block-3 .t-1 {
    font-size: 1.5rem;
    font-weight: bold;
  }
}

.page-1 .block-3 .t-2 {
  margin: 10px 0 0;
}

/*page-2 楽天市場の現状*/
.page-2 {
  padding: 0 0 60px;
}

.page-2 .left-content .block-1 {
  padding: 0px 0px 0px 55px;
}

.page-2 .left-content .block-1 .t-1 {
  /* opacity: 0; */
  position: relative;
  /* left: 10px; */
  font-size: 1.8rem;
  font-weight: bold;
  color: #ba0219;
  /* animation: left-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-2 .left-content .block-1 .t-2 {
  /* opacity: 0; */
  position: relative;
  /* right: 10px;
  animation: right-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-2 .left-content .block-2 {
  width: 70%;
  margin: auto;
  padding: 30px 0px 15px;
  background-image: url("../img/japan.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s; */
}

.page-2 .left-content .block-2 .t-1 {
  font-size: 0.9rem;
}

.page-2 .left-content .block-2 .t-2 {
  /* opacity: 0; */
  color: #ba0219;
  font-weight: bold;
  font-size: 1.3rem;
  position: relative;
}

.page-2 .left-content .block-2 .t-2::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: cover;
  position: absolute;
  left: -35px;
  bottom: 3px;
}

.page-2 .left-content .block-2 .content-1 .t-2::before {
  background-image: url("../img/p2-icon1.png");
}

.page-2 .left-content .block-2 .content-2 .t-2::before {
  background-image: url("../img/p2-icon2.png");
}

.page-2 .left-content .block-2 .content-3 .t-2::before {
  background-image: url("../img/p2-icon3.png");
}

.page-2 .left-content .block-2 > div {
  margin: 0 0 10px;
}

.page-2 .left-content .block-3 {
  text-align: center;
  font-size: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3.6s; */
}

.page-2 .left-content .block-3 > div {
  width: 50%;
}

.page-2 .right-content {
  margin: 15px 0 0;
  padding: 0 40px 0 0px;
}

.page-2 .right-content .content {
  position: relative;
  /* opacity: 0;
  animation: fadein .5s;
  animation-fill-mode: forwards;
  animation-delay: 8.5s; */
}

.page-2 .right-content .content-2 {
  -webkit-animation-delay: 8.8s;
          animation-delay: 8.8s;
}

.page-2 .right-content .content-1 {
  margin: 0 0 15px;
}

.page-2 .right-content .content-1 .arow {
  position: absolute;
  top: 100px;
  left: 205px;
  width: 150px;
  height: 13px;
  background: #e28a1cff;
  z-index: 2;
  -webkit-transform: rotate(22deg);
          transform: rotate(22deg);
  /* opacity: 0;
  animation: fadein .5s;
  animation-fill-mode: forwards;
  animation-delay: 12s; */
}

.page-2 .jqplot-series-canvas,
.page-2 .jqplot-series-shadowCanvas {
  -webkit-animation: p13fade 1.6s;
          animation: p13fade 1.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.page-2 .right-content .content-1 .arow::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 35px solid #e28a1cff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  position: absolute;
  top: -6px;
  right: -24px;
}

.page-2 .right-content .h {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #696969;
}

.page-2 .right-content .e {
  position: absolute;
  z-index: 100;
  color: #fff;
  font-weight: bold;
  /* opacity: 0;
     animation: fadein .5s;
  animation-fill-mode: forwards;
  animation-delay: 12s; */
}

.page-2 .right-content .s {
  position: absolute;
  font-size: 0.7rem;
  color: #404040ff;
}

.page-2 .right-content .content-1 .s {
  bottom: -1px;
  right: -15px;
}

.page-2 .right-content .content-2 .s {
  bottom: 47px;
  right: -15px;
}

.page-2 .right-content .content-2 .e {
  font-size: 0.7rem;
}

.page-2 .right-content .content-1 .e-1 {
  top: 75px;
  left: 78px;
}

.page-2 .right-content .content-1 .e-2 {
  top: 174px;
  left: 185px;
}

.page-2 .right-content .content-2 .e-1 {
  top: 73px;
  left: 145px;
}

.page-2 .right-content .content-2 .e-2 {
  top: 73px;
  left: 296px;
}

.page-2 .right-content .content-2 .e-3 {
  top: 73px;
  left: 364px;
}

.page-2 .right-content .content-2 .e-4 {
  top: 155px;
  left: 175px;
}

.page-2 .right-content .content-2 .e-5 {
  top: 155px;
  left: 349px;
}

.page-2 .right-content .content-2 .e-6 {
  top: 155px;
  left: 406px;
}

/*page-3 検索の重要性*/
.page-3 {
  padding: 0 0 60px;
}

.page-3 .block-1 {
  width: 78%;
  margin: -15px auto 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: justify;
  font-size: 0.9rem;
}

.page-3 .block-1 .t-1,
.page-3 .block-1 .t-2 {
  /* opacity: 0; */
  position: relative;
}

.page-3 .block-1 .t-1 {
  margin: 25px 0 20px;
  /* left: 10px;
  animation: left-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-3 .block-1 .t-2 {
  /* right: 10px;
  animation: right-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s; */
}

.page-3 .block-1 .c-1 {
  width: 40%;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s; */
  position: relative;
}

.page-3 .block-1 .c-1 .c1-b {
  font-size: 0.9rem;
  position: absolute;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-weight: bold;
  background: #fff;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 5.2s; */
  font-family: "游ゴシック";
}

.page-3 .block-1 .c-1 .c1-b div {
  font-size: 1.6rem;
  text-align: center;
}

.page-3 .block-1 .c-1 .c1-b.b-1 {
  top: 10px;
  left: 3px;
  padding: 10px 0 10px 5px;
}

.page-3 .block-1 .c-1 .c1-b.b-2 {
  top: 99px;
  left: 70px;
  color: #fff;
  background: #ba0219;
  font-weight: bold;
}

.page-3 .block-1 .c-1 .c1-b::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  margin-top: -13px;
  border: 13px solid transparent;
  border-left: 13px solid #fff;
  z-index: 2;
}

.page-3 .block-1 .c-1 .c1-b.b-2::before {
  border-left: 13px solid #ba0219;
}

.page-3 .block-1 .c-1 .c1-b::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -29px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-left: 14px solid #ccc;
  z-index: 1;
}

.page-3 .block-1 > p {
  width: 60%;
}

.page-3 .block-2 {
  width: 77%;
  margin: 16px auto 0;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 5.5s; */
  padding-bottom: 30px;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
}

.page-3 .block-2 .parent-box {
  width: 728px;
  margin: auto;
  font-family: "游明朝";
  position: relative;
  font-weight: bold;
  height: 310px;
}

.page-3 .block-2 .tate {
  position: absolute;
  font-size: 0.8rem;
  top: 40px;
  left: 20px;
  border-right: 2px solid #aaa;
  height: 250px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 7s; */
  font-family: "メイリオ";
}

.page-3 .block-2 .yoko {
  text-align: right;
  position: absolute;
  font-size: 0.8rem;
  left: 40px;
  bottom: 0px;
  border-top: 2px solid #aaa;
  width: 350px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 7s; */
  font-family: "メイリオ";
}

.page-3 .block-2 .yoko span {
  position: absolute;
}

.page-3 .block-2 .c-1 {
  position: absolute;
  padding: 20px 10px;
  top: 45px;
  right: 145px;
  font-size: 1.3rem;
  border-radius: 100%;
  background: #d1d8e5ff;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 8s; */
}

.page-3 .block-2 .c-2 {
  position: absolute;
  text-align: center;
  right: 165px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  top: 205px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 7.5s; */
}

.page-3 .block-2 .c-2-back {
  position: absolute;
  right: 108px;
  bottom: 30px;
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 180px solid #ba0219;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 7s; */
}

.page-3 .block-2 .c-2-back::after {
  display: block;
  content: "";
  position: absolute;
  right: -27px;
  bottom: -48px;
  width: 0;
  height: 0;
  border-left: 27px solid transparent;
  border-right: 27px solid transparent;
  border-bottom: 50px solid #d3c78e;
}

.page-3 .block-2 .t-1 {
  position: absolute;
  top: 110px;
  font-size: 0.8rem;
  right: 10px;
  font-weight: bold;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 8s; */
  font-family: "メイリオ";
}

.page-3 .block-2 .t-2 {
  position: absolute;
  bottom: 0px;
  font-size: 0.8rem;
  right: 184px;
  font-weight: bold;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 8.2s; */
  font-family: "メイリオ";
}

.page-3 .block-2 .box {
  position: absolute;
  text-align: center;
  width: 85px;
  line-height: 50px;
  background: #ba0219;
  color: #fff;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards; */
}

.page-3 .block-2 .box.arow::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid #ba0219;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  position: absolute;
  top: 0;
  right: -20px;
}

.page-3 .block-2 .box.arow.repeat-box::after {
  border-left: 20px solid #d3c78e;
}

.page-3 .block-2 .box.repeat-box {
  font-size: 0.9rem;
  background: #d3c78e;
  color: #000;
}

.page-3 .block-2 .box.box-1 {
  top: 230px;
  left: 60px;
  -webkit-animation-delay: 6.1s;
          animation-delay: 6.1s;
}

.page-3 .block-2 .box.box-2 {
  top: 165px;
  left: 165px;
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}

.page-3 .block-2 .box.box-3 {
  top: 100px;
  left: 270px;
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

.page-3 .block-2 .box.box-4 {
  top: 165px;
  left: 270px;
  -webkit-animation-delay: 5.9s;
          animation-delay: 5.9s;
}

.page-3 .block-2 .box.box-5 {
  top: 230px;
  left: 165px;
  -webkit-animation-delay: 6.3s;
          animation-delay: 6.3s;
}

.page-3 .block-2 .box.box-6 {
  top: 230px;
  left: 270px;
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
}

.page-3 .block-2 .d-arow {
  position: absolute;
  top: 160px;
  left: 343px;
  width: 128px;
  height: 10px;
  background: #000;
  z-index: 2;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 9s; */
}

.page-3 .block-2 .d-arow::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 25px solid #000;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  position: absolute;
  top: -7px;
  right: -24px;
}

.page-3 .block-3 {
  position: relative;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 2px;
  margin: 10px auto 0;
  width: 408px;
  /* opacity: 0;
  animation: top-fade 1s; */
  position: relative;
  /* top: 10px; */
  /* animation-fill-mode: forwards;
  animation-delay: 9.5s; */
}

.page-3 .block-3 .line-img {
  position: absolute;
  bottom: -10px;
  width: 0;
  overflow: hidden;
  -webkit-animation: line 0.5s;
          animation: line 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

/*page-4 自然検索で、広告枠より大きな効果も！*/
.page-4 {
  padding: 20px 60px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-4 h2 {
  margin: 0 0 20px;
  padding: 0 0 0 15px;
  border-left: 3px solid #ba0219;
  border-bottom: 3px solid #ba0219;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.6s; */
}

.page-4 .block-2 h2 {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.page-4 .content {
  margin: 0 0 20px;
  padding: 0 20px;
}

.page-4 h3 {
  font-size: 1.3rem;
  color: #ba0219;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s; */
}

.page-4 .content-2 h3 {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.page-4 .content-3 h3 {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.page-4 .content-4 h3 {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

.page-4 .content-5 h3 {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

.page-4 .content .t {
  text-indent: 1.5rem;
  /* opacity: 0; */
  position: relative;
  /* left: 10px;
  animation: left-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.2s; */
}

.page-4 .content-2 .t {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.page-4 .content-3 .t {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.page-4 .content-4 .t {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.page-4 .content-5 .t {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

.page-4 .content .c-1 {
  /* opacity: 0;
  animation: fadein .5s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s; */
}

.page-4 .left-content {
  width: 52%;
}

.page-4 .left-content .c-1 {
  border-radius: 10px;
  padding: 0px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  width: 300px;
  margin: 15px 0 -25px;
}

.page-4 .left-content .c-1 .line-img {
  width: 0;
  position: relative;
  bottom: 15px;
  overflow: hidden;
  -webkit-animation: line 0.5s;
          animation: line 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.page-4 .right-content {
  position: relative;
  top: 30px;
  width: 50%;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 4.8s; */
}

.page-4 .right-content .search {
  position: absolute;
  color: #ba0219;
  text-align: center;
  font-size: 0.8rem;
  top: 35%;
  left: 20px;
}

.page-4 .right-content .search::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 30px solid #ba0219;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  position: absolute;
  top: 6px;
  right: -33px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 5.8s; */
}

.page-4 .right-content .search i {
  font-size: 4rem;
  /* opacity: 0; */
  /* animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 5.6s; */
}

.page-4 .right-content .search .s-t {
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 6s; */
}

.page-4 .right-content .zoom-img {
  width: 63px;
  border: 1px solid #ccc;
  /* 	opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 6.6s; */
}

.ZoomContainer {
  cursor: url("../img/lens-icon.png") 12 12, auto;
}

.page-4 .right-content #zoom-window {
  position: absolute;
  right: 970px;
}

.page-4 .right-content .t {
  position: absolute;
  top: -10px;
  font-weight: bold;
  font-size: 0.8rem;
  font-family: "游ゴシック";
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 7s; */
}

.page-4 .right-content .t.t-1 {
  right: 38px;
  color: #fff;
  padding: 5px 10px;
  background: #ba0219;
  margin: -18px 0 0px;
}

.page-4 .right-content .t.t-2 {
  right: 30px;
  top: 16px;
  text-shadow: 0px 0px 1px #000;
}

.page-4 .right-content .t.t-3 {
  right: 30px;
  top: 150px;
  text-shadow: 0px 0px 1px #000;
}

.page-4 .right-content .t.t-4 {
  right: 30px;
  top: 370px;
  text-shadow: 0px 0px 1px #000;
}

.page-4 .right-content .c {
  position: absolute;
  border: 2px solid #717171;
  border-left: none;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 6.8s; */
}

.page-4 .right-content .c.c-1 {
  right: 105px;
  top: 10px;
  width: 70px;
  height: 30px;
}

.page-4 .right-content .c.c-2 {
  right: 105px;
  top: 49px;
  width: 70px;
  height: 215px;
}

.page-4 .right-content .c.c-3 {
  right: 105px;
  top: 274px;
  width: 70px;
  height: 215px;
}

.page-6 {
  padding: 30px 0 0;
  text-align: center;
}

.page-6 .blocks {
  width: 80%;
  -webkit-box-shadow: 5px 5px 10px #ccc;
          box-shadow: 5px 5px 10px #ccc;
  border: 1px solid #7a7a7a;
  margin: 0 auto 30px;
  padding: 10px;
  /* opacity: 0; */
  position: relative;
  /* bottom: 10px;
  animation: bottom-fade 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-6 .blocks.block-2 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.page-6 .blocks.block-3 {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.page-6 .blocks .line-img {
  width: 0;
  overflow: hidden;
  -webkit-animation: line 1s;
          animation: line 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.page-6 .blocks.block-2 .line-img {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.page-6 .blocks.block-3 .line-img {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.page-6 .t-1 {
  font-size: 1.1rem;
  margin: 0 0 10px;
}

.page-6 .t-2 {
  letter-spacing: 1px;
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  bottom: 10px;
}

.page-6 .t-2 .keyicon {
  width: auto;
  display: inline;
  position: relative;
  top: 8px;
  right: 5px;
}

.page-6 .i-1 {
  width: 20px;
}

.page-6 .line-img {
  margin: -20px 0 0;
}

.page-6 .line-img img {
  width: auto;
}

.page-6 .t-3 {
  width: 825px;
  margin: auto;
  padding: 0 0 50px;
  text-align: right;
  /* opacity: 0;
  animation: p5t3 1.8s;
  animation-fill-mode: forwards;
  animation-delay: 6.3s; */
}

@-webkit-keyframes p5t3 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes p5t3 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-6 .t-3 img {
  width: 33px;
  position: relative;
  top: 10px;
}

/*検索エンジンから評価を上げる*/
.page-5 {
  padding: 0 0 60px;
}

.page-5 .block-1 .t-1 {
  width: 80%;
  margin: auto;
  padding: 10px 0;
  -webkit-box-shadow: 5px 5px 10px #ccc;
          box-shadow: 5px 5px 10px #ccc;
  border: 1px solid #7a7a7a;
  text-align: center;
  font-size: 1.5rem;
  font-family: "HG明朝E";
  margin-top: 35px;
  line-height: 2em;
  /* opacity: 0; */
  position: relative;
  bottom: 0;
  /* animation: bottom-fade .5s;
    animation-fill-mode: forwards;
    animation-delay: 1.6s; */
}

.page-5 .block-2 {
  width: 80%;
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-5 .block-2 .left-content {
  width: 90px;
  padding: 0 20px 20px;
  position: relative;
}

.page-5 .block-2 .left-content .img-box {
  overflow: hidden;
  height: 230px;
  position: relative;
  top: 40px;
}

.page-5 .block-2 .left-content img {
  position: relative;
  bottom: 40px;
}

.page-5 .block-2 .left-content .t {
  position: absolute;
  text-align: center;
  left: 40px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3s; */
}

.page-5 .block-2 .left-content .t span {
  display: block;
  height: 30px;
  line-height: 30px;
  border-radius: 100%;
  text-align: center;
}

.page-5 .block-2 .left-content .t-1 {
  top: -17px;
}

.page-5 .block-2 .left-content .t-2 {
  bottom: 25px;
}

.page-5 .block-2 .left-content .t-1 span {
  background: #ba0219;
  color: #fff;
}

.page-5 .block-2 .left-content .t-2 span {
  margin: auto;
  background: #ddd;
  font-size: 0.8rem;
  width: 25px;
  height: 25px;
  line-height: 25px;
}

.page-5 .block-2 .right-content {
  padding: 20px;
}

.page-5 .block-2 .right-content .content {
  /* opacity: 0; */
  margin: 0 0 25px;
  position: relative;
  /* left: 10px;
  animation: left-fade .5s;
     animation-fill-mode: forwards;
     animation-delay: 2s; */
}

.page-5 .block-2 .right-content .content-2 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.page-5 .block-2 .right-content .content-3 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.page-5 .block-2 .right-content .content p {
  padding: 0 10px;
}

.page-5 .block-2 .right-content .t-1 {
  font-size: 1.3rem;
  font-weight: bold;
  display: inline-block;
  padding: 0 20px 0 10px;
  border-bottom: 2px solid #ba0219;
  border-left: 3px solid #ba0219;
  margin: 0 0 10px;
}

.page-5 .block-3 {
  margin: 0px 0 0;
  font-size: 1.8rem;
  text-align: center;
  /* opacity: 0; */
  position: relative;
  /* top: 10px;
  animation: top-fade .5s;
     animation-fill-mode: forwards;
     animation-delay: 3s; */
}

.page-5 .block-3 .line-img {
  width: 0;
  position: relative;
  bottom: 25px;
  overflow: hidden;
  -webkit-animation: line 1s;
          animation: line 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.page-5 .b1 {
  /* position: absolute;
  width: 100px;
  height: 176px;
  background: #fff;
  z-index: 20; */
}

.page-5 .b2 {
  /* position: absolute;
  width: 100px;
  height: 176px;
  bottom: 0;
  background: #fff;
  z-index: 20; */
}

/*マルチサジェスト*/
.page-8 {
  width: 70%;
  margin: auto;
  padding-bottom: 70px;
}

.page-8 h2 {
  margin: 0px 0 0px;
  display: inline-block;
  padding: 0 20px 0 10px;
  border-bottom: 2px solid #ba0219;
  border-left: 3px solid #ba0219;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s; */
}

.page-8 .block-1 .t-1 {
  margin: 20px 10px 0;
  font-size: 0.9rem;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.2s; */
}

.page-8 .block-2 {
  margin: 20px 0 0;
  position: relative;
  /* right: 10px;
  opacity: 0;
  animation: right-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s; */
}

.page-8 .block-2 table {
  font-size: 12px;
  border-collapse: collapse;
}

.page-8 .block-2 table td {
  /* opacity: 0; */
}

.page-8 .block-2 table td,
.page-8 .block-2 table th {
  padding: 3px 10px;
  border: 1px solid #ccc;
}

.page-8 .block-2 table .keyword {
  width: 260px;
}

.page-8 .block-2 table .no {
  width: 30px;
  text-align: center;
}

.page-8 .block-2 table .b {
  background: #b8e2f5;
}

.page-8 .block-2 table .y {
  background: #f5f4b8;
}

.page-8 .block-2 .content {
  /* display: none; */
  position: absolute;
  color: #fff;
  right: 0;
  /* animation: flash 1s;
  animation-fill-mode: forwards; */
}

.page-8 .block-2 .content:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 60px solid transparent;
  border-right: 60px solid #171c63;
  left: -120px;
  top: -15px;
}

.page-8 .block-2 .content.content-2:before {
  border-right: 60px solid #ba0219;
}

.page-8 .block-2 .content-1 {
  background: #171c63;
  top: 100px;
  padding: 20px;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.page-8 .block-2 .content-2 {
  background: #ba0219;
  padding: 20px 44px;
  top: 330px;
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

@-webkit-keyframes p7b2c {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes p7b2c {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*キーワードの組み合わせ1*/
.page-9 .block-1 {
  margin: 20px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@-webkit-keyframes p89icon {
  0% {
    -webkit-transform: rotate(360deg) scale(0);
            transform: rotate(360deg) scale(0);
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}

@keyframes p89icon {
  0% {
    -webkit-transform: rotate(360deg) scale(0);
            transform: rotate(360deg) scale(0);
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}
.page-9 .block-1 .i-1 {
  width: 100px;
  /* transform: rotate(360deg) scale(0); */
  /* animation: p89icon 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-9 .block-1 .t-1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0 20px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s; */
  font-family: "游明朝";
}

.page-9 .block-2 .contnet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  /* left: 10px;
  opacity: 0;
  animation: left-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 3s; */
  margin: -25px 0 0;
}

.page-9 .block-2 .contnet .icon {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  width: 80px;
  height: 80px;
  background: url(../img/8/backimg_1.png);
  background-size: auto 100% !important;
}

.page-9 .block-2 .contnet .item {
  width: 550px;
  border: 1px solid #1e1e1eff;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
  position: relative;
}

.page-9 .block-2 .contnet .item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -26px;
  margin-top: -13px;
  border: 13px solid transparent;
  border-right: 13px solid #fff;
  z-index: 2;
}

.page-9 .block-2 .contnet .item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right: 14px solid #1e1e1eff;
  z-index: 1;
}

.page-9 .block-2 .contnet-2 {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.page-9 .block-2 .contnet-3 {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.page-9 .block-2 .contnet-2 .icon {
  background: url(../img/8/backimg_2.png);
}

.page-9 .block-2 .contnet-3 .icon {
  background: url(../img/8/backimg_3.png);
}

.page-9 .block-2 .contnet .t-1 {
  font-size: 0.9rem;
}

.page-9 .block-2 .contnet .t-2 {
  font-size: 0.9rem;
  padding: 6px 15px;
}

.page-9 .block-3 {
  width: 60%;
  margin: 0px auto -20px;
  padding: 10px 50px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
  border-radius: 3px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3.5s; */
}

.page-9 .block-3 .t-1 {
  margin: 0 0 3px;
  padding: 0 9px;
  font-size: 1.3rem;
  font-weight: bold;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3.5s; */
}

/*キーワードの組み合わせ①*/
.page-10 {
  padding: 0 0 45px;
}

.page-10 .block-1 {
  margin: 20px 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-10 .block-1 .i-1 {
  width: 100px;
  /* transform: rotate(360deg) scale(0);
  animation: p89icon 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-10 .block-1 .t-1 {
  font-family: "游明朝";
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0 20px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s; */
}

.page-10 .block-2 {
  border: 1px solid #ccc;
  width: 65%;
  padding: 10px 20px;
  margin: auto;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
  border-radius: 5px;
  font-size: 0.9rem;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3s; */
}

.page-10 .block-3 {
  width: 785px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 1.3rem;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 5.2s; */
}

.page-10 .block-3 .line-img {
  width: 0;
  position: relative;
  bottom: 15px;
  overflow: hidden;
  -webkit-animation: line 0.5s;
          animation: line 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

/**/
.page-11 {
  width: 70%;
  padding-bottom: 60px;
  margin: auto;
}

.page-11 h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  text-align: center;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-11 .block-1 {
  margin: 20px 0 15px;
}

.page-11 h2.s-1 {
  margin: 30px 0;
  display: inline-block;
  padding: 0 20px 0 10px;
  border-bottom: 2px solid #ba0219;
  border-left: 3px solid #ba0219;
  /* opacity: 0; */
  /* animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3s; */
}

.page-11 .block-2 .box-warp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-11 .block-2 .box {
  font-family: "メイリオ";
  border: 1px solid #ccc;
  margin: 0 10px;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
  /* opacity: 0; */
  position: relative;
  /* bottom: 10px;
  animation: bottom-fade .5s;
  animation-fill-mode: forwards;
  animation-delay: 2s; */
}

.page-11 .block-2 .box-warp .box .t {
  border-bottom: 1px solid #ccc;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0 0 2px;
  padding: 3px 0;
}

.page-11 .block-2 .box-warp .box .li {
  font-size: 0.8rem;
  margin: 0 0 5px;
  padding: 0 0 0 2em;
  text-indent: -1em;
}

.page-11 .block-2 .box-1 {
  width: 175px;
}

.page-11 .block-2 .box-2 {
  width: 182px;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.page-11 .block-2 .box-3 {
  width: 245px;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.page-11 .block-2 .box-warp .box .box-header {
  border-bottom: 1px solid #ccc;
}

.page-11 .block-2 .box-warp .box .box-body {
  background: #fdfdfd;
  color: #1e1e1e;
  font-size: 0.9rem;
}

.page-11 .block-2 .box-warp .box .box-body li {
  padding: 4px 20px 3px 40px;
  border-bottom: 1px solid #ccc;
}

.page-11 .block-2 {
  margin: 0 auto 10px;
  padding: 10px 0 50px;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s; */
}

.page-11 .block-2 .graph {
  position: relative;
  left: 35px;
  margin: 5px 0 0;
}

.page-11 .block-2 .graph .t {
  position: absolute;
  font-weight: bold;
  border-radius: 100%;
  text-align: center;
  /* opacity: 0;
    animation: fadein 1s;
    animation-fill-mode: forwards;
    animation-delay: 4.5s; */
  z-index: 10;
}

.page-11 .block-2 .graph .t-1 {
  font-size: 1.3rem;
  top: 196px;
  left: 410px;
}

.page-11 .block-2 .graph .t-2 {
  top: 35px;
  left: 20px;
  font-size: 1.3rem;
  background: rgba(0, 100, 255, 0.3);
  width: 200px;
  height: 65px;
  line-height: 4rem;
}

.page-11 .block-2 .graph .t-2 span {
  position: absolute;
  left: 50px;
}

.page-11 .block-2 .graph .b {
  z-index: 10;
  font-size: 1.3rem;
  line-height: 4rem;
  font-weight: bold;
  position: absolute;
  text-align: center;
  /* opacity: 0;
    animation: fadein 1s;
    animation-fill-mode: forwards;
    animation-delay: 4.5s; */
}

.page-11 .block-2 .graph .b-1 {
  width: 250px;
  height: 65px;
  border-radius: 100%;
  top: 35px;
  left: 190px;
  background: rgba(255, 100, 100, 0.3);
}

.page-11 .block-2 .graph .b-2 {
  width: 290px;
  height: 65px;
  border-radius: 100%;
  top: 35px;
  left: 360px;
  background: rgba(255, 102, 0, 0.5);
}

.page-11 .block-2 .graph .b-2 span {
  position: absolute;
  left: 15px;
}

.page-11 .block-2 .graph-ul {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.page-11 .block-2 .graph-ul li {
  width: 12px;
  position: absolute;
  /* opacity: 0; */
}

.page-11 .block-2 .alow {
  position: absolute;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 5s; */
}

.page-11 .block-2 .alow-1 {
  height: 80px;
  width: 4px;
  background: #ccc;
  left: 10px;
  bottom: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ba0219), color-stop(50%, rgba(186, 2, 25, 0.3)), to(rgba(186, 2, 25, 0.2)));
  background: linear-gradient(#ba0219 0%, rgba(186, 2, 25, 0.3) 50%, rgba(186, 2, 25, 0.2) 100%);
}

.page-11 .block-2 .g {
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 6.5s; */
}

.page-11 .block-2 .alow-1 .g1 {
  background: #ccc;
  text-align: center;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 100%;
  position: absolute;
  font-size: 12px;
  bottom: -28px;
  left: -9px;
}

.page-11 .block-2 .alow-1 .g2 {
  background: #ba0219;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  width: 30px;
  height: 30px;
  font-size: 13px;
  font-weight: bold;
  line-height: 30px;
  position: absolute;
  top: -35px;
  left: -12px;
}

.page-11 .block-2 .alow-1 .g3 {
  width: 70px;
  position: absolute;
  bottom: -48px;
  left: -30px;
  font-size: 14px;
}

.page-11 .block-2 .alow-1::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 15px solid #ba0219;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  top: -5px;
  right: -6px;
}

.page-11 .block-2 .alow-2 {
  width: 490px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(186, 2, 25, 0.3)), color-stop(40%, rgba(186, 2, 25, 0.5)), to(#ba0219));
  background: linear-gradient(90deg, rgba(186, 2, 25, 0.3) 0%, rgba(186, 2, 25, 0.5) 40%, #ba0219 100%);
  bottom: -20px;
  left: 118px;
}

.page-11 .block-2 .alow-2::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid #ba0219;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: -6px;
  right: -6px;
}

.page-11 .block-2 .alow-2::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-right: 15px solid rgba(186, 2, 25, 0.3);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: -6px;
  left: -15px;
}

.page-11 .block-2 .alow-2 .g1 {
  background: #ccc;
  text-align: center;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 100%;
  position: absolute;
  font-size: 12px;
  bottom: -9px;
  left: -40px;
}

.page-11 .block-2 .alow-2 .g2 {
  background: #ba0219;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  font-weight: bold;
  width: 30px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  font-size: 13px;
  bottom: -15px;
  right: -40px;
}

.page-11 .block-2 .alow-2 .g3 {
  position: absolute;
  font-size: 14px;
  left: 45%;
  top: 10px;
}

.page-11 .block-2 .alow-1 .white-back {
  /* 	position: absolute;
  top: -4px;
     left: -7px;
  height: 90px;
  width: 18px;
  background: #fff;
  z-index: 100; */
  /* animation: p11white1 1s;
  animation-fill-mode: forwards;
  animation-delay: 5.5s; */
}

@-webkit-keyframes p11white1 {
  0% {
    height: 90px;
  }
  100% {
    height: 0px;
  }
}

@keyframes p11white1 {
  0% {
    height: 90px;
  }
  100% {
    height: 0px;
  }
}
.page-11 .block-2 .alow-2 .white-back {
  /* position: absolute;
  top: -6px;
  height: 18px;
  width: 256px;
  background: #fff;
  z-index: 100;
  animation: p11white2 1s;
  animation-fill-mode: forwards;
  animation-delay: 5.5s; */
}

.page-11 .block-2 .alow-2 .white-back1 {
  left: -15px;
}

.page-11 .block-2 .alow-2 .white-back2 {
  right: -6px;
}

@-webkit-keyframes p11white2 {
  0% {
    width: 253px;
  }
  100% {
    width: 0px;
  }
}

@keyframes p11white2 {
  0% {
    width: 253px;
  }
  100% {
    width: 0px;
  }
}
.page-11 .block-3 {
  margin: 0;
  border: 1px solid #ccc;
  padding: 20px 50px;
  position: relative;
  /* top: 10px;
  opacity: 0;
  animation: top-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 7s; */
  border-radius: 3px;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
}

.page-11 .block-3 .t-1 {
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0 0 8px;
  position: relative;
}

.page-11 .block-3 .line-box {
  position: absolute;
  bottom: -10px;
}

.page-11 .block-3 .line-img {
  overflow: hidden;
  width: 0;
  overflow: hidden;
  -webkit-animation: line 1s;
          animation: line 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.page-11 .block-3 .line-2 .line-img {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.page-11 .block-3 .line-3 .line-img {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.page-7 {
  padding-bottom: 70px;
}

.page-7 .block-1 {
  width: 70%;
  margin: 30px auto 10px;
  padding: 0 20px;
}

.page-7 .block-1 h2 {
  display: inline-block;
  margin: 0 0 10px;
  padding: 0 20px 0 10px;
  border-bottom: 2px solid #ba0219;
  border-left: 3px solid #ba0219;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-7 .block-1 .t-1 {
  font-size: 0.9rem;
  padding: 0 10px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s; */
}

.page-7 .block-2 {
  width: 53%;
  margin: auto;
  border: 1px solid #000;
  /* opacity: 0; */
  position: relative;
  /* right: 10px;
  animation: right-fade 1s;
  animation-delay: 2.2s;
  animation-fill-mode: forwards; */
}

.page-7 .block-3 {
  width: 70%;
  margin: 22px auto 0;
  border: 1px solid #ccc;
  padding: 20px 50px;
  position: relative;
  /* top: 10px; */
  /* opacity: 0; */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* animation: top-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.4s; */
  border-radius: 3px;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
}

.page-7 .block-3 .t-1 {
  position: relative;
}

.page-7 .block-3 .line-box {
  position: absolute;
  bottom: -10px;
}

.page-7 .block-3 .line-img {
  overflow: hidden;
  width: 0;
  overflow: hidden;
  -webkit-animation: line 1s;
          animation: line 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.page-7 .block-3 .line-2 .line-img {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.page-7 .block-3 .t-1 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 20px;
}

.page-13 {
  padding-bottom: 60px;
}

.page-13 .box-1-2 {
  width: 75%;
  margin: auto;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
  padding: 0px 32px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s; */
}

.page-13 .block-1 {
  margin: 0px auto 25px;
  padding: 0px 3px;
}

.page-13 h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  text-align: center;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-13 .block-1 .graph {
  position: relative;
  right: 8px;
  margin: 5px 0 0;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s; */
}

.page-13 .block-1 .graph .img-box {
  /* width: 0px; */
  overflow: hidden;
  position: absolute;
  z-index: 10;
  top: 25px;
  left: 30px;
  -webkit-animation: p13fade 2s;
          animation: p13fade 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes p13fade {
  0% {
    opacity: 1;
  }
  18% {
    opacity: 0;
  }
  36% {
    opacity: 1;
  }
  52% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  88% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes p13fade {
  0% {
    opacity: 1;
  }
  18% {
    opacity: 0;
  }
  36% {
    opacity: 1;
  }
  52% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  88% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-13 .block-1 .graph img {
  z-index: 10;
  width: 650px;
  /* opacity: 0;
  animation: p5t3 2.5s;
  animation-fill-mode: forwards;
  animation-delay: 6s; */
}

.page-13 .block-1 .graph .t {
  position: absolute;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: bold;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards; */
}

.page-13 .block-1 .graph .t-1 {
  top: -20px;
  left: -5px;
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

.page-13 .block-1 .graph .t-2 {
  top: -20px;
  right: -20px;
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

.page-13 .block-1 .graph .t-3 {
  top: 62px;
  left: 355px;
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

.page-13 .block-1 .graph .t-4 {
  top: 115px;
  left: 355px;
  color: #0241e1;
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

.page-13 .block-1 .graph .t-5 {
  top: 150px;
  left: 355px;
  color: #da5c00;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.page-13 .block-1 .graph .t-6 {
  top: 195px;
  left: 250px;
  color: #f99f2a;
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}

.page-13 .block-1 .graph .t-7 {
  bottom: 13px;
  font-size: 0.8rem;
  left: -13px;
  color: #404040ff;
}

.page-13 .block-1 .graph .t-8 {
  font-size: 1rem;
  top: 230px;
  left: 300px;
  color: #ba0129;
  /* animation: p5t3 1.8s;
  animation-fill-mode: forwards;
  animation-delay: 8s; */
}

.page-13 .block-1 .graph .t2 {
  position: absolute;
  left: 725px;
  font-size: 0.8rem;
  color: #404040ff;
  font-weight: bold;
}

.page-13 .block-1 .graph .jqplot-axis {
  margin-right: 10px;
  text-align: right;
}

.page-13 .block-1 .graph .jqplot-axis div {
  right: 0;
}

.page-13 .block-1 .graph .t2-1 {
  top: 0;
}

.page-13 .block-1 .graph .t2-2 {
  top: 27px;
}

.page-13 .block-1 .graph .t2-3 {
  top: 54px;
}

.page-13 .block-1 .graph .t2-4 {
  top: 81px;
}

.page-13 .block-1 .graph .t2-5 {
  top: 108px;
}

.page-13 .block-1 .graph .t2-6 {
  top: 135px;
}

.page-13 .block-1 .graph .t2-7 {
  top: 162px;
}

.page-13 .block-1 .graph .t2-8 {
  top: 189px;
}

.page-13 .block-1 .graph .t2-9 {
  top: 216px;
}

.page-13 .block-1 .graph .t2-10 {
  top: 243px;
}

.page-13 .block-1 .graph .t2-11 {
  top: 270px;
}

.page-13 .block-1 .graph .t3 {
  position: absolute;
  bottom: -5px;
  font-size: 0.8rem;
  color: #404040ff;
}

.page-13 .block-1 .graph .t4 {
  position: absolute;
  bottom: -10px;
  right: -7px;
  font-size: 0.8rem;
  color: #404040ff;
  /* opacity: 0; */
}

.page-13 .block-1 .graph .alow {
  position: absolute;
  width: 0px;
  left: 15px;
  border-bottom: 2px solid #ba0219;
  bottom: 0px;
  -webkit-animation: p13alow 0s;
          animation: p13alow 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes p13alow {
  0% {
    width: 0;
  }
  100% {
    width: 630px;
  }
}

@keyframes p13alow {
  0% {
    width: 0;
  }
  100% {
    width: 630px;
  }
}
.page-13 .block-1 .graph .alow::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 11px solid #ba0219;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  position: absolute;
  top: -6px;
  right: -2px;
}

.page-13 .block-1 .graph .t3-1 {
  left: 91px;
}

.page-13 .block-1 .graph .t3-2 {
  left: 240px;
}

.page-13 .block-1 .graph .t3-3 {
  left: 389px;
}

.page-13 .block-1 .graph .t3-4 {
  left: 538px;
}

.page-13 .block-1 .graph .t3-5 {
  left: 687px;
}

.page-13 .block-2 {
  font-size: 14px;
  position: relative;
  bottom: 10px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 9.5s; */
}

.page-13 .block-2 .t-1 {
  margin: 0 0 12px;
}

.page-13 .block-2 .t-2 {
  line-height: 30px;
}

.page-13 .block-2 .t-1 .flash {
  /* animation: flash 1s;
  animation-fill-mode: forwards;
  animation-delay: 12.5s; */
}

.page-13 .block-4 {
  text-align: center;
  margin: 10px 0 0;
  padding: 0 50px;
  font-size: 1.4rem;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 10s; */
}

.page-13 .block-4 .line-img {
  width: 0;
  position: absolute;
  bottom: -13px;
  overflow: hidden;
  -webkit-animation: line 0.5s;
          animation: line 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.page-13 .block-4 .t-2 .line-img {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.page-13 .block-4 .t-1 {
  margin-bottom: 6px;
}

.page-14 h2 {
  text-align: center;
  margin: 0 0 10px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-14 .block-1 {
  margin: 20px auto 15px;
  width: 865px;
}

.page-14 .block-1 .content-box {
  width: 80%;
  margin: auto;
  position: relative;
  height: 270px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
  border-radius: 3px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s; */
}

.page-14 .block-1 .content {
  position: absolute;
  color: #ba0219;
  font-weight: bold;
  background: #f1f1f1;
  border: 3px solid #ba0219;
  padding: 10px 20px;
  width: 220px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards; */
}

.page-14 .block-1 .content-1 {
  top: 70px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.page-14 .block-1 .content-2 {
  top: 165px;
  right: 5%;
  text-align: center;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.page-14 .block-1 .content-3 {
  top: 165px;
  left: 5%;
  padding: 10px 50px;
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.page-14 .block-1 .alow {
  position: absolute;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards; */
}

.page-14 .block-1 .alow-1 {
  width: 70px;
  height: 85px;
  top: 60px;
  left: 138px;
  border-top: 10px solid #ba0219;
  border-left: 10px solid #ba0219;
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}

.page-14 .block-1 .alow-1::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 25px solid #ba0219;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  position: absolute;
  top: -17px;
  right: -12px;
}

.page-14 .block-1 .alow-2 {
  width: 75px;
  height: 78px;
  top: 60px;
  right: 138px;
  border-top: 10px solid #ba0219;
  border-right: 10px solid #ba0219;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.page-14 .block-1 .alow-2::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: 25px solid #ba0219;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  position: absolute;
  bottom: -10px;
  right: -17px;
}

.page-14 .block-1 .alow-3 {
  width: 150px;
  height: 85px;
  top: 197px;
  left: 276px;
  border-top: 10px solid #ba0219;
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

.page-14 .block-1 .alow-3::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-right: 25px solid #ba0219;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  position: absolute;
  top: -17px;
  left: -12px;
}

.page-14 .block-2 {
  width: 65%;
  margin: 0 auto -20px;
}

.page-14 .block-2 h3 {
  margin: 0 0 8px;
  color: #ba0219;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-14 .block-2 .content {
  position: relative;
  /* top: 10px; */
  margin: 0 0 10px;
  /* opacity: 0;
  animation: top-fade 1s;
  animation-fill-mode: forwards; */
}

.page-14 .block-2 .content-1 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.page-14 .block-2 .content-2 {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

.page-14 .block-2 .content-3 {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

.page-14 .block-2 ul li {
  text-indent: 1em;
  margin: 0 0 5px;
  font-size: 0.9rem;
}

.page-14 .block-3 {
  width: 724px;
  margin: auto;
}

.page-15 h2 {
  text-align: center;
  margin: 0 0 20px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s; */
}

.page-15 .block-1 {
  width: 70%;
  margin: 30px auto 15px;
}

.page-15 .block-1 .content-box {
  position: relative;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 400px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
  border-radius: 3px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s; */
}

.page-15 .block-1 .content {
  position: relative;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  width: 200px;
  padding: 5px 0;
  background: #f1f1f1;
  border: 3px solid #ba0219;
  color: #ba0219;
}

.page-15 .block-1 .left-content .content {
  margin: 0 0 35px 100px;
  /* bottom: 10px;
  opacity: 0;
  animation: bottom-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.8s; */
}

.page-15 .block-1 .left-content .content::before {
  content: "";
  display: block;
  width: 28px;
  height: 15px;
  background: #ba0219;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: -15px;
}

.page-15 .block-1 .left-content .content::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: 24px solid #ba0219;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  position: absolute;
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-15 .block-1 .left-content .content:last-child::after,
.page-15 .block-1 .left-content .content:last-child::before {
  display: none;
}

.page-15 .block-1 .left-content .content-2 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.page-15 .block-1 .left-content .content-3 {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.page-15 .block-1 .left-content .content-4 {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.page-15 .block-1 .left-content .content-5 {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.page-15 .block-1 .right-content {
  position: absolute;
  right: 105px;
  top: 33px;
}

.page-15 .block-1 .content-6 {
  position: relative;
  padding: 45px 25px;
  width: auto;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /* left: 10px;
  opacity: 0;
  animation: left-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 4.4s; */
}

.page-15 .block-1 .content-6::before {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  content: "";
  display: block;
  width: 85px;
  height: 25px;
  background: #ba0219;
  position: absolute;
  left: -85px;
  top: 50%;
}

.page-15 .block-1 .content-6::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-right: 24px solid #ba0219;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  position: absolute;
  top: 50%;
  left: -100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-15 .block-1 .alow {
  position: absolute;
  top: 30px;
  left: 306px;
  width: 100px;
  height: 315px;
  border-right: #ba0219 20px solid;
  border-bottom: #ba0219 20px solid;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 4s; */
}

.page-15 .block-1 .alow::before {
  content: "";
  display: block;
  width: 60px;
  height: 20px;
  background: #ba0219;
  position: absolute;
  right: 0;
}

.page-15 .block-1 .alow::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-right: 24px solid #ba0219;
  border-top: 20px solid transparent;
  border-bottom: 19px solid transparent;
  position: absolute;
  left: 18px;
  top: -9px;
}

.page-15 .block-2 {
  width: 65%;
  margin: 0 auto 0;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 5s; */
}

.page-15 .block-2 h3 {
  margin: 0 0 5px;
  color: #ba0219;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-15 .block-2 .t {
  margin: 0 0 8px;
  padding: 0 2em;
  font-size: 0.9rem;
  text-indent: -1em;
}

.page-16 h2 {
  text-align: center;
  margin: 40px auto 45px;
  color: #222222;
  position: relative;
  opacity: 0;
  top: 120px;
  -webkit-animation: p17h2 0s;
          animation: p17h2 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.page-16 .block-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3.6s; */
}

.page-16 .block-1 .box {
  margin: 0 90px;
  text-align: center;
  position: relative;
}

.page-16 .block-1 .box.box-1,
.page-16 .block-1 .box.box-3 {
  bottom: 50px;
}

.page-16 .block-1 .box.box-2 {
  width: 210px;
  margin: -13px 0 -11px;
  position: relative;
  text-align: left;
}

.page-16 .block-1 .box .hosi-box {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 78px;
  left: 34px;
  z-index: 10;
}

.page-16 .block-1 .box .hosi {
  font-size: 1.8rem;
  color: #fca215;
}

.page-16 .block-1 .box .myshop {
  z-index: 10;
  color: #fff;
  position: absolute;
  font-weight: bold;
  font-size: 1.5rem;
  top: 13px;
  left: 50px;
}

.page-16 .block-1 .line {
  width: 4px;
  position: absolute;
  height: 80px;
  background: #ccc;
  bottom: -84px;
}

.page-16 .block-1 .main-line {
  width: 4px;
  position: absolute;
  height: 0px;
  background: #fca215;
  bottom: -85px;
  z-index: 100;
}

.page-16 .block-1 .box-2 .flow {
  position: absolute;
  top: 40px;
  width: 100px;
  height: 100px;
}

.page-16 .block-1 .box-2 .flow .active {
  height: 130px;
  position: absolute;
  top: 0;
  width: 0;
  overflow: hidden;
}

.page-16 .block-1 .box-2 .left-flow {
  right: 215px;
}

.page-16 .block-1 .box-2 .flow img {
  width: 100px;
  height: 100px;
}

.page-16 .block-1 .box-2 .left-flow .active {
  right: 0;
}

.page-16 .block-1 .box-2 .right-flow .active {
  left: 0;
}

.page-16 .block-1 .box-2 .left-flow img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  right: 0;
}

.page-16 .block-1 .box-2 .right-flow img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.page-16 .block-1 .box-2 .right-flow {
  left: 215px;
}

.page-16 .block-1 .box .c-1 {
  width: 90px;
  height: 100px;
  position: relative;
  left: 2px;
  margin: auto;
}

.page-16 .block-1 .box .ti {
  font-weight: bold;
  margin: 0 0 12px;
}

.page-16 .block-1 .box-1 .c-1 .t {
  position: absolute;
  font-size: 0.7rem;
  z-index: 10;
  left: -33px;
}

.page-16 .block-1 .box-1 .c-1 .t-1 {
  top: 2px;
}

.page-16 .block-1 .box-1 .c-1 .t-2 {
  top: 161px;
  left: -43px;
}

.page-16 .block-1 .box-1 .body {
  position: relative;
  top: 9px;
  height: 160px;
  width: 90px;
  background: #fbfaf1;
  border: 2px solid #bbb;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
}

.page-16 .block-1 .box-1 .body .data {
  width: 45px;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: #ba0219;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-16 .block-1 .box-1 .body .graph-line {
  position: absolute;
  right: 0;
  height: 1px;
  width: 110%;
  background: #ccc;
}

.page-16 .block-1 .box-1 .body .graph-line-1 {
  top: -2px;
}

.page-16 .block-1 .box-1 .body .graph-line-2 {
  top: 30px;
}

.page-16 .block-1 .box-1 .body .graph-line-3 {
  top: 62px;
}

.page-16 .block-1 .box-1 .body .graph-line-4 {
  top: 94px;
}

.page-16 .block-1 .box-1 .body .graph-line-5 {
  top: 126px;
}

.page-16 .block-1 .box-1 .body .graph-line-6 {
  top: 157px;
}

.page-16 .block-1 .box-1 .body .graph-line .page-16 .block-1 .box-3 .body {
  position: relative;
  left: 5px;
}

.page-16 .block-1 .box-3 .body .t {
  position: absolute;
  font-size: 0.7rem;
  z-index: 10;
  left: 62px;
}

.page-16 .block-1 .box-3 .body .t-1 {
  top: 7px;
}

.page-16 .block-1 .box-3 .body .t-2 {
  top: 161px;
}

.page-16 .block-1 .box-3 .body .i {
  position: absolute;
}

.page-16 .block-1 .box-3 .body .i-1 {
  -webkit-transition: 2s;
  transition: 2s;
  height: 55px;
  top: 48px;
  left: 70px;
  -webkit-transform-origin: 50% 44px;
          transform-origin: 50% 44px;
  -webkit-transform: rotate(-155deg);
          transform: rotate(-155deg);
}

.page-16 .block-1 .box-3 .body .i-2 {
  height: 160px;
  top: 12px;
  left: -5px;
}

.page-16 .block-2 {
  height: 230px;
  position: relative;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3.8s; */
}

.page-16 .block-2 .box {
  position: absolute;
  top: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-16 .block-2 .box .item {
  position: relative;
  width: 135px;
  margin: 0 20px;
  padding: 10px 0;
  text-align: center;
  border: 1px solid #ccc;
  cursor: pointer;
}

.page-16 .block-2 .box .item:hover {
  border: 1px solid #ba0219;
  background: #f1f1f1;
}

.page-16 .block-2 .box .item.active {
  background: #ba0219;
  color: #fff;
}

.page-16 .block-2 .box .item-1::after,
.page-16 .block-2 .box .item-2::after {
  display: block;
  content: "";
  width: 178px;
  height: 4px;
  position: absolute;
  background: #ccc;
  top: -70px;
  left: 67px;
}

.page-16 .block-2 .box .item-4::after,
.page-16 .block-2 .box .item-5::after {
  display: block;
  content: "";
  width: 176px;
  height: 4px;
  position: absolute;
  background: #ccc;
  top: -70px;
  right: 67px;
}

.page-16 .block-2 .box .item .t-1 {
  font-size: 0.8rem;
}

.page-16 .block-2 .box .item .t-2 {
  font-size: 1.5rem;
}

.page-16 .block-2 .box .item .line {
  position: absolute;
  height: 70px;
  top: -70px;
  width: 4px;
  background: #ccc;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-16 .ac-line {
  position: absolute;
  bottom: 76px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4px;
  height: 0px;
  background: #fca215;
  -webkit-animation: ac-line 0.2s;
          animation: ac-line 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes ac-line {
  0% {
    height: 0px;
  }
  100% {
    height: 70px;
  }
}

@keyframes ac-line {
  0% {
    height: 0px;
  }
  100% {
    height: 70px;
  }
}
.page-16 .block-2 .box .item-1 .w-line,
.page-16 .block-2 .box .item-2 .w-line {
  display: block;
  content: "";
  width: 0px;
  height: 4px;
  position: absolute;
  background: #fca215;
  top: -70px;
  left: 67px;
  z-index: 100;
}

.page-16 .block-2 .box .item-4 .w-line,
.page-16 .block-2 .box .item-5 .w-line {
  display: block;
  content: "";
  width: 0px;
  height: 4px;
  position: absolute;
  background: #fca215;
  top: -70px;
  right: 66px;
  z-index: 100;
}

@-webkit-keyframes w-line {
  0% {
    width: 0px;
  }
  100% {
    width: 178px;
  }
}

@keyframes w-line {
  0% {
    width: 0px;
  }
  100% {
    width: 178px;
  }
}
.page-16 .block-3 {
  text-align: center;
  margin: 40px auto 0;
  font-size: 1.3rem;
  position: relative;
  /* top: 10px;
  opacity: 0;
  animation: top-fade 1s;
  animation-fill-mode: forwards;
  animation-delay: 4.2s; */
}

.page-16 .block-3 .line-img {
  width: 0px;
  position: absolute;
  bottom: -13px;
  overflow: hidden;
}

.page-16 .block-3 .line-img.active {
  -webkit-animation: line 0.5s;
          animation: line 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.page-17 {
  width: 90%;
  margin: auto;
}

.page-17 h3 {
  text-align: center;
  margin: 100px auto 30px;
  font-size: 1.8rem;
  color: #222222;
  position: relative;
  opacity: 0;
  top: 120px;
  -webkit-animation: p17h2 0s;
          animation: p17h2 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes p17h2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    top: 120px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}

@keyframes p17h2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    top: 120px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
.page-17 .planContent {
  position: relative;
  /* opacity: 0; */
  /* bottom: 20px; */
}

.page-17 .t-1 {
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 4.5s; */
}

.page-19 h2 {
  text-align: center;
  margin: 35px auto 30px;
  font-size: 1.8rem;
  color: #222222;
  position: relative;
  opacity: 0;
  top: 120px;
  -webkit-animation: p17h2 0s;
          animation: p17h2 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.page-19 .table-box {
  padding: 10px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
  border-radius: 3px;
  width: 70%;
  margin: 0px auto 0;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3.6s; */
}

/*page-18 報告書サンプル*/
.page-18 {
  padding: 20px 60px 40px;
}

.page-18 h2 {
  display: inline-block;
  margin: 0 0 10px;
  padding: 0 0 0 15px;
  border-left: 3px solid #ba0219;
  border-bottom: 3px solid #ba0219;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.6s; */
}

.page-18 .block-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-18 .content {
  position: relative;
  margin: 0 50px;
  text-align: center;
}

.page-18 .content.content-2 {
  margin-right: 25px;
  margin-left: 125px;
}

.page-18 .content-3 .t-title {
  position: absolute;
  top: -255px;
  background: #ba0219;
  color: #fff;
  font-size: 0.9rem;
  /* opacity: 0; */
  padding: 5px 20px;
  /* animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3s; */
}

.page-18 .content.content-3 {
  width: 170px;
  margin: 0 40px 0 0;
}

.page-18 .content-3 .t {
  position: absolute;
  left: 30px;
  font-size: 0.7rem;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3.4s; */
}

.page-18 .content-3 .t-0 {
  top: -173px;
}

.page-18 .content-3 .t-1 {
  top: -74px;
}

.page-18 .content-3 .t-2 {
  top: -30px;
}

.page-18 .content-3 .t-3 {
  top: 50px;
}

.page-18 .content-3 .t-4 {
  top: 175px;
}

.page-18 .content-3 .c {
  position: absolute;
  width: 30px;
  left: -10px;
  border: 2px solid #717171;
  border-left: none;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3.2s; */
}

.page-18 .content-3 .c-0 {
  height: 95px;
  top: -215px;
}

.page-18 .content-3 .c-1 {
  height: 20px;
  top: -78px;
}

.page-18 .content-3 .c-2 {
  height: 70px;
  top: -73px;
}

.page-18 .content-3 .c-3 {
  height: 95px;
  top: 5px;
}

.page-18 .content-3 .c-4 {
  height: 137px;
  top: 108px;
}

.page-18 .search {
  position: relative;
  color: #ba0219;
  text-align: center;
  font-size: 0.8rem;
}

.page-18 .search::after,
.page-18 .content-3::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 30px solid #ba0219;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  position: absolute;
  top: 6px;
  right: -90px;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.4s; */
}

.page-18 .content-3::after {
  top: -30px;
  right: -55px;
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.page-18 .search i {
  font-size: 4rem;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.2s; */
}

.page-18 .search .s-t {
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s; */
}

.page-18 .report-img {
  position: relative;
  left: 6px;
  width: 83px;
  margin: auto;
  overflow: auto;
  border: 1px solid #ccc;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.8s; */
}

.page-18 .zoom-img {
  width: 100%;
}

.page-18 #zoom-window {
  position: absolute;
  right: 485px;
}

.page-18 .link {
  position: relative;
  bottom: 5px;
  background: #ba0219;
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
  padding: 10px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 3px 3px 3px #ccc;
          box-shadow: 3px 3px 3px #ccc;
  /* opacity: 0;
  animation: fadein 1s;
  animation-fill-mode: forwards;
  animation-delay: 3.5s; */
}

.page-18 .link:hover {
  opacity: 0.8;
  -webkit-box-shadow: 1px 1px 1px #ccc;
          box-shadow: 1px 1px 1px #ccc;
}

.page-19 table {
  border-collapse: collapse;
}

.page-19 tr {
  /* opacity: 0; */
}

.page-19 td {
  padding: 5px 0;
}

.page-19 th {
  width: 250px;
  padding: 5px 0px;
  text-align: right;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 10px 0;
  margin: 60px 0 0;
}

.page-transition {
  position: absolute;
}

.page-transition a {
  padding: 3px 10px;
  background: #ba0219;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 3px;
}

.next-page {
  right: 100px;
}

.back-page {
  left: 100px;
}

.pager-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pager-list li {
  line-height: 1.7rem;
  margin: 0 10px;
}

.pager-list li a {
  color: #696969;
}

.pager-list li a.target {
  color: #ba0219 !important;
  font-size: 1.7rem;
  font-weight: bold;
}