@charset "UTF-8";
/*
  simple reset
*/
* {
  transition: all 0.6s linear;
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear; }

/*
  img animtion css
*/
.img_demo01 {
  opacity: 0; }
  .img_demo01.active {
    opacity: 1; }

.img_demo02 {
  opacity: 0;
  transform: translateY(40px); }
  .img_demo02.active {
    opacity: 1;
    transform: translateY(0); }

.img_demo03 {
  opacity: 0;
  transform: translateX(40px); }
  .img_demo03.active {
    opacity: 1;
    transform: translateX(0); }

.img_demo04 {
  opacity: 0;
  transform: scale(1.2); }
  .img_demo04.active {
    opacity: 1;
    transform: scale(1); }

.img_demo05 {
  opacity: 0;
  transform: rotate(90deg); }
  .img_demo05.active {
    opacity: 1;
    transform: rotate(0deg); }

.img_demo06 {
  opacity: 0;
  margin-top: -60px; }
  .img_demo06.active {
    opacity: 1;
    animation: bound 1s forwards; }

@keyframes bound {
  0% {
    transform: translateY(0); }
  30% {
    transform: translateY(-25px); }
  50% {
    transform: translateY(0); }
  60% {
    transform: translateY(-25px); }
  70% {
    transform: translateY(0); }
  80% {
    transform: translateY(-15px); }
  100% {
    transform: translateY(0);
    margin-top: 0px; } }
.img_demo07 {
  position: relative;
  overflow: hidden; }
  .img_demo07::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #000000;
    opacity: 1;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear; }
  .img_demo07.active::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    background: #000000;
    opacity: 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear; }

.img_demo08 {
  display: inline-block;
  perspective: 1000px;
  /* ← ユーザから要素までの距離を想定 */
  position: relative; }
  .img_demo08 .move {
    display: block;
    -webkit-transform: translate3d(0, 0, 480px) rotateX(-90deg);
    transform: translate3d(0, 0, 480px) rotateX(-90deg);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; }
  .img_demo08.active .move {
    opacity: 1;
    animation: roll 1s forwards; }

@keyframes roll {
  50% {
    -webkit-transform: translate3d(0, 0, 0px) rotateX(-80deg);
    transform: translate3d(0, 0, 210px) rotateX(-80deg); }
  100% {
    -webkit-transform: translate3d(0, 0, 0px) rotateX(0deg);
    transform: translate3d(0, 0, 0px) rotateX(0deg); } }
.img_demo09 li {
  opacity: 0; }
  .img_demo09 li.active_0.move, .img_demo09 li.active_1.move, .img_demo09 li.active_2.move, .img_demo09 li.active_3.move {
    opacity: 1; }

.img_demo10 li {
  opacity: 0; }
  .img_demo10 li.active_0.move, .img_demo10 li.active_1.move, .img_demo10 li.active_2.move, .img_demo10 li.active_3.move {
    opacity: 1; }

/*
  text animtion css
*/
.txt_demo01 {
  opacity: 0; }
  .txt_demo01.active {
    opacity: 1; }

.txt_demo02 {
  opacity: 0;
  transform: translateY(40px); }
  .txt_demo02.active {
    opacity: 1;
    transform: translateY(0); }

.txt_demo03 {
  opacity: 0;
  transform: translateX(40px); }
  .txt_demo03.active {
    opacity: 1;
    transform: translateX(0); }

.txt_demo04 {
  opacity: 0;
  transform: scale(1.2); }
  .txt_demo04.active {
    opacity: 1;
    transform: scale(1); }

.txt_demo05 {
  opacity: 0; }
  .txt_demo05 span {
    opacity: 0; }
  .txt_demo05.active {
    opacity: 1; }
    .txt_demo05.active span {
      display: inline-block;
      position: relative;
      line-height: 1em; }
      .txt_demo05.active span::after {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        background: #000000;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 1; }
      .txt_demo05.active span.type0 {
        animation: type 0.3s forwards 0s; }
      .txt_demo05.active span.type1 {
        animation: type 0.3s forwards 0.2s; }
      .txt_demo05.active span.type2 {
        animation: type 0.3s forwards 0.3s; }
      .txt_demo05.active span.type3 {
        animation: type 0.3s forwards 0.4s; }
      .txt_demo05.active span.type4 {
        animation: type 0.3s forwards 0.5s; }
      .txt_demo05.active span.type5 {
        animation: type 0.3s forwards 0.6s; }
      .txt_demo05.active span.type6 {
        animation: type 0.3s forwards 0.7s; }
      .txt_demo05.active span.type7 {
        animation: type 0.3s forwards 0.8s; }
      .txt_demo05.active span.type0::after {
        animation: type02 0.3s forwards 0s; }
      .txt_demo05.active span.type1::after {
        animation: type02 0.3s forwards 0.2s; }
      .txt_demo05.active span.type2::after {
        animation: type02 0.3s forwards 0.3s; }
      .txt_demo05.active span.type3::after {
        animation: type02 0.3s forwards 0.4s; }
      .txt_demo05.active span.type4::after {
        animation: type02 0.3s forwards 0.5s; }
      .txt_demo05.active span.type5::after {
        animation: type02 0.3s forwards 0.6s; }
      .txt_demo05.active span.type6::after {
        animation: type02 0.3s forwards 0.7s; }
      .txt_demo05.active span.type7::after {
        animation: type02 0.3s forwards 0.8s; }

@keyframes type {
  100% {
    opacity: 1; } }
@keyframes type02 {
  100% {
    opacity: 0; } }
.txt_demo06 {
  opacity: 0; }
  .txt_demo06 span {
    transform-origin: 50% 100%;
    opacity: 0;
    transform: rotateX(90deg);
    display: inline-block; }
  .txt_demo06.active {
    opacity: 1; }
    .txt_demo06.active span.parapara.delay_0 {
      animation: parapara 0.3s forwards 0s; }
    .txt_demo06.active span.parapara.delay_1 {
      animation: parapara 0.3s forwards 0.2s; }
    .txt_demo06.active span.parapara.delay_2 {
      animation: parapara 0.3s forwards 0.3s; }
    .txt_demo06.active span.parapara.delay_3 {
      animation: parapara 0.3s forwards 0.4s; }
    .txt_demo06.active span.parapara.delay_4 {
      animation: parapara 0.3s forwards 0.5s; }
    .txt_demo06.active span.parapara.delay_5 {
      animation: parapara 0.3s forwards 0.6s; }
    .txt_demo06.active span.parapara.delay_6 {
      animation: parapara 0.3s forwards 0.7s; }
    .txt_demo06.active span.parapara.delay_7 {
      animation: parapara 0.3s forwards 0.8s; }

@keyframes parapara {
  100% {
    opacity: 1;
    transform: rotateX(0deg); } }
.txt_demo07 {
  opacity: 0;
  -webkit-filter: blur(15px);
  -moz-filter: blur(15px);
  -ms-filter: blur(15px);
  -o-filter: blur(15px);
  filter: blur(15px); }
  .txt_demo07.active {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px); }

.txt_demo08 {
  color: #FF8C00;
  background: -webkit-linear-gradient(0deg, #000000, #000000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1; }
  .txt_demo08.active {
    background: linear-gradient(to right, #f00 0%, #f80 14.28%, #dd0 28.56%, #0d0 42.85%, #0dd 57.14%, #00f 71.42%, #e0e 85.71%, #f00 100%) 0% center/200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    animation: txt_demo08  4s linear 0s infinite; }

@keyframes txt_demo08 {
  to {
    background-position-x: 200%; } }
/*
button css
*/
.button_demo01 {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s; }
  .button_demo01:hover {
    color: #00a76c !important; }

.button_demo02 {
  background: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s; }
  .button_demo02 span {
    color: #ffffff;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2; }
  .button_demo02::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: left 0.3s !important; }
  .button_demo02::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: #00a76c;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 1;
    transition: left 0.3s !important; }
  .button_demo02:hover::before {
    left: 100%;
    transition: left 0.3s !important; }
  .button_demo02:hover::after {
    left: 0;
    transition: left 0.3s !important; }

.button_demo03 {
  transition: all 0.3s !important; }
  .button_demo03:hover {
    font-size: 20px !important;
    transition: all 0.3s !important; }

.button_demo04 {
  background: none !important;
  position: relative;
  -webkit-perspective: 300px;
  perspective: 300px; }
  .button_demo04 span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #2E2E2E;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
    pointer-events: none;
    overflow: hidden; }
  .button_demo04 span:nth-child(1) {
    font-size: 32px;
    color: #000000;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 50% 50% -50px;
    -moz-transform-origin: 50% 50% -50px;
    transform-origin: 50% 50% -50px; }
  .button_demo04 span:nth-child(2) {
    font-size: 32px;
    color: #ffffff;
    background: #2E2E2E;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: 50% 50% -50px;
    -moz-transform-origin: 50% 50% -50px;
    transform-origin: 50% 50% -50px; }
  .button_demo04:hover span:nth-child(1) {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg); }
  .button_demo04:hover span:nth-child(2) {
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    transform: rotateX(-90deg); }

.button_demo05 {
  box-shadow: 0px 10px 0px rgba(0, 0, 0, 0.7);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: translateY 1s !important; }
  .button_demo05:hover {
    box-shadow: none;
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    transition: translateY 1s !important; }

.button_demo06 p {
  font-size: 32px;
  color: #ffffff; }
.button_demo06:hover {
  opacity: 1;
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-duration: 1s;
  animation-name: flash; }

@-webkit-keyframes flash {
  0% {
    opacity: .4; }
  100% {
    opacity: 1; } }
@keyframes flash {
  0% {
    opacity: .4; }
  100% {
    opacity: 1; } }
.button_demo07 {
  padding: 10px;
  box-sizing: border-box; }
  .button_demo07 .inner {
    width: 100%;
    height: 100%;
    position: relative; }
    .button_demo07 .inner::before {
      content: "";
      width: 0;
      height: 1px;
      background: #fff;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      transition: all .3s;
      opacity: 0; }
    .button_demo07 .inner::after {
      content: "";
      width: 0;
      height: 1px;
      background: #fff;
      display: block;
      position: absolute;
      top: auto;
      left: 100%;
      bottom: 0;
      transition: all .3s;
      opacity: 0; }
    .button_demo07 .inner p {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 32px;
      color: #ffffff; }
      .button_demo07 .inner p::before {
        content: "";
        width: 1px;
        height: 0;
        background: #fff;
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        transition: all .3s;
        opacity: 0; }
      .button_demo07 .inner p::after {
        content: "";
        width: 1px;
        height: 0;
        background: #fff;
        display: block;
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        transition: all .3s;
        opacity: 0; }
  .button_demo07:hover .inner::before {
    width: 100%;
    opacity: 1;
    transition: all .3s; }
  .button_demo07:hover .inner::after {
    width: 100%;
    left: 0;
    opacity: 1;
    transition: all .3s .2s; }
  .button_demo07:hover .inner p {
    font-size: 32px;
    color: #ffffff; }
    .button_demo07:hover .inner p::before {
      height: 100%;
      top: 0;
      opacity: 1;
      transition: all .3s .3s; }
    .button_demo07:hover .inner p::after {
      height: 100%;
      opacity: 1;
      transition: all .3s .1s; }

.button_demo08 {
  transition: all .3s; }
  .button_demo08:hover {
    background: #00a76c !important;
    transition: all .3s; }

.button_demo09:hover {
  opacity: 0.8; }

.button_demo10:hover {
  background: linear-gradient(to right, #f00 0%, #f80 14.28%, #dd0 28.56%, #0d0 42.85%, #0dd 57.14%, #00f 71.42%, #e0e 85.71%, #f00 100%) 0% center/200% auto !important;
  animation: button_demo10  4s linear infinite; }

@keyframes button_demo10 {
  to {
    background-position-x: 200%; } }
#demo_animation_wrap {
  overflow: hidden;
  padding-bottom: 200px; }
  #demo_animation_wrap section h2 {
    background: #2E2E2E;
    color: #ffffff;
    font-size: 32px;
    padding: 25px 14.8%; }
    #demo_animation_wrap section h2 span {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: block;
      text-align: left; }
  #demo_animation_wrap section + section {
    margin-top: 150px; }
  #demo_animation_wrap .daw_list {
    width: 70%;
    margin: 0 auto; }
    #demo_animation_wrap .daw_list li > article {
      text-align: left;
      position: relative;
      border-bottom: 1px solid #E3E3E3; }
      #demo_animation_wrap .daw_list li > article .switch {
        width: 1px;
        height: 1px;
        position: absolute;
        top: 50%;
        left: 50%; }
      #demo_animation_wrap .daw_list li > article h3 {
        font-size: 32px;
        padding: 70px 0 35px; }
      #demo_animation_wrap .daw_list li > article .itembx {
        border: 1px solid #E3E3E3;
        border-bottom: none;
        padding: 90px 0;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center; }
        #demo_animation_wrap .daw_list li > article .itembx .label {
          width: 100%;
          padding-top: 18px;
          padding-left: 20px;
          font-size: 18px;
          color: #9A9A9A;
          position: absolute;
          top: 0;
          left: 0; }
      #demo_animation_wrap .daw_list li > article .list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 60px; }
        #demo_animation_wrap .daw_list li > article .list li {
          width: 48%;
          margin-top: 40px; }
          #demo_animation_wrap .daw_list li > article .list li img {
            width: 100%; }
        #demo_animation_wrap .daw_list li > article .list li:nth-of-type(-n+2) {
          margin-top: 0; }
      #demo_animation_wrap .daw_list li > article .animation_text {
        font-size: 60px; }
      #demo_animation_wrap .daw_list li > article .button {
        width: 500px;
        height: 100px;
        font-size: 32px;
        color: #ffffff;
        background: #2E2E2E;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      #demo_animation_wrap .daw_list li > article .resetbx {
        border-left: 1px solid #E3E3E3;
        border-right: 1px solid #E3E3E3;
        padding-bottom: 90px; }
        #demo_animation_wrap .daw_list li > article .resetbx .reset {
          display: block;
          border: none;
          cursor: pointer;
          outline: none;
          padding: 0;
          appearance: none;
          width: 250px;
          height: 50px;
          margin: 0 auto;
          background: #000000;
          font-size: 18px;
          color: #ffffff;
          visibility: hidden;
          transition: all 0s;
          -webkit-transition: all 0s;
          -moz-transition: all 0s;
          -ms-transition: all 0s;
          -o-transition: all 0s; }
          #demo_animation_wrap .daw_list li > article .resetbx .reset.active {
            visibility: visible;
            transition: all 0s;
            -webkit-transition: all 0s;
            -moz-transition: all 0s;
            -ms-transition: all 0s;
            -o-transition: all 0s; }

@media screen and (max-width: 768px) {
  #demo_animation_wrap {
    overflow: hidden; }
    #demo_animation_wrap section h2 {
      background: #2E2E2E;
      color: #ffffff;
      font-size: 32px;
      padding: 25px 14.8%; }
      #demo_animation_wrap section h2 span {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: block;
        text-align: left; }
    #demo_animation_wrap section + section {
      margin-top: 150px; }
    #demo_animation_wrap .daw_list {
      width: 90%;
      margin: 0 auto; }
      #demo_animation_wrap .daw_list li > article {
        text-align: left; }
        #demo_animation_wrap .daw_list li > article h3 {
          font-size: 32px;
          padding: 70px 0 35px; }
        #demo_animation_wrap .daw_list li > article .itembx {
          padding: 90px 0;
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center; }
          #demo_animation_wrap .daw_list li > article .itembx .label {
            width: 100%;
            padding-top: 18px;
            padding-left: 20px;
            font-size: 18px;
            color: #9A9A9A;
            position: absolute;
            top: 0;
            left: 0; }
        #demo_animation_wrap .daw_list li > article .list {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          padding: 0 60px; }
          #demo_animation_wrap .daw_list li > article .list li {
            width: 48%;
            margin-top: 40px; }
            #demo_animation_wrap .daw_list li > article .list li img {
              width: 100%; }
          #demo_animation_wrap .daw_list li > article .list li:nth-of-type(-n+2) {
            margin-top: 0; }
        #demo_animation_wrap .daw_list li > article .animation_text {
          font-size: 60px; }
        #demo_animation_wrap .daw_list li > article .button {
          width: 500px;
          height: 100px;
          font-size: 32px;
          color: #ffffff;
          background: #2E2E2E;
          display: flex;
          justify-content: center;
          align-items: center;
          cursor: pointer; } }

/*# sourceMappingURL=demo_animation.css.map */
