  /*------------------------------------------------------------
  |
  | 1.0 fadeAnimation
  |
  ------------------------------------------------------------*/

  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fadeUpTrigger {
    opacity: 0;
  }

  /*------------------------------------------------------------
  |
  | 2.0 delayfadeAnimation
  |
  ------------------------------------------------------------*/


  .delayfadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /*------------------------------------------------------------
  |
  | 3.0 loadfadein
  |
  ------------------------------------------------------------*/

  body {
    animation: fadeIn 1s ease-in 0s 1 normal;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

  /*------------------------------------------------------------
  |
  | 4.0 balloon
  |
  ------------------------------------------------------------*/

  .balloon5 {
    width: 100%;
    margin: 1.5em 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .balloon5 .faceicon {
    float: left;
    margin-right: -90px;
    width: 80px;
  }

  .balloon5 .faceicon img {
    width: 100%;
    height: auto;
    border: solid 3px #d7ebfe;
    border-radius: 50%;
  }

  /* .balloon5 .chatting {
      width: 100%;
    } */

  .says {
    display: inline-block;
    position: relative;
    margin: 5px 0 0 105px;
    padding: 17px 13px;
    border-radius: 12px;
    background: #d7ebfe;
  }

  .says:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 18px;
    left: -24px;
    border: 12px solid transparent;
    border-right: 12px solid #d7ebfe;
  }

  .says p {
    margin: 0;
    padding: 0;
  }

  .ui-section-media {
    position: relative;
  }

  .ui-text-mediaTitle {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FF279498;
    color: #ffffff;
    width: 100%;
    padding: 10px 6px;
  }

  /* ラインを引く */
  .Text-Span {
    position: relative;
    z-index: 1;
  }

  .Text-Span:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 6px;
    background: #FF2794;
    z-index: -1;
    transition: all 0.8s;
  }

  .Text-Span.isActive:after {
    width: 100%;
  }

  .ui-section-work h3 {
    position: relative;
  }

  .ui-section-work h3 span {
    position: absolute;
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
    font-size: 4rem;
    line-height: 1;
    bottom: 0.25rem;
    left: -1rem;
    opacity: 0.1;
  }

  .ui-section-question .ui-layout-text ul li {
    list-style-type: none;
    line-height: 1.75;
  }

  .ui-section-close h2 {
    margin-bottom: 40px;
  }

  .hover_zoom:hover {
    transition: 0.5s;
  }

  .hover_zoom:hover {
    transform: scale(1.05);
    opacity: 0.6;
  }