/*color*/
/*size*/
/*====================================

   keyframes animation

====================================*/
/*----------keyframes animation----------*/
@-webkit-keyframes openPage {
  0% {
    -webkit-transform: scale(0, 0);
  }
  2% {
    -webkit-transform: scale(20, 0.1);
  }
  4% {
    -webkit-transform: scale(0.5, 3);
  }
  6% {
    -webkit-transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
  }
}
@keyframes openPage {
  0% {
    transform: scale(0, 0);
  }
  2% {
    transform: scale(20, 0.1);
  }
  4% {
    transform: scale(0.5, 3);
  }
  6% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
/*----------common----------*/
/*alt*/
/* keyframes */
/*keyframes animation*/
@-webkit-keyframes wink {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  10% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
  30% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
    opacity: 0.3;
  }
  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
}
@keyframes wink {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  10% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
  30% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
    opacity: 0.3;
  }
  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
}
/* layoutCSS Document */
/*====================================

  03. is2ndPage-chart

====================================*/
body#chart {
  /* ==================================
    layout
  ===================================*/
  /* ==================================
    font
  ===================================*/
}
body#chart #main #article {
  padding-bottom: 80px;
}
body#chart #main #article #chart_content {
  position: relative;
}
body#chart #main #article #chart_content h2.h2_tit_chart {
  background-image: url(../../chart/images/h2_tit_chart.png);
  background-image: -webkit-image-set(url(../../chart/images/h2_tit_chart.png) 1x, url(../../chart/images/h2_tit_chart_2x.png) 2x);
  background-repeat: no-repeat;
  background-position: center top 30px;
  height: 52px;
  border: none;
  padding-top: 30px;
  text-indent: -9999px;
  display: block;
  overflow: hidden;
  position: relative;
  border-bottom: none;
  overflow: visible;
}
body#chart #main #article #chart_content h2.h2_tit_chart::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  border-bottom: 1px solid #040000;
  width: 0;
}
body#chart #main #article #chart_content h2.h2_tit_chart::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  border-bottom: 1px solid #040000;
  width: 0;
}
body#chart #main #article #chart_content.active h2.h2_tit_chart::before {
  width: 1000px;
  left: -1000px;
  transition: 3s ease-out;
}
body#chart #main #article #chart_content.active h2.h2_tit_chart::after {
  width: 2000px;
  transition: 6s ease-out;
}
body#chart #main #article #chart_content .contents_inner {
  width: 655px;
  margin: 0 auto;
  padding: 24px 0;
}
body#chart #main #article #chart_content .contents_inner::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  border-bottom: 1px solid #040000;
  width: 100%;
}
body#chart #main #article #chart_content .contents_inner .chart {
  background-image: url(../../chart/images/chart.png);
  background-position: center top;
  background-repeat: no-repeat;
  height: 2355px;
}
