@charset "utf-8";
/* CSS Document */

/*=======　footer　=======*/
    .mainImage video {
      width: 100%;
    }

    dt.mainImage p span.on:before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "\f111";
      color: var(--ok, #11D846);
      margin-right: 5px;
      font-size: 12px;
    }

    dt.mainImage p span.on {
      font-size: 12px;
    }

    /* 点滅 */
    .blinking {
      -webkit-animation: blink 0.5s ease-in-out infinite alternate;
      -moz-animation: blink 0.5s ease-in-out infinite alternate;
      animation: blink 0.5s ease-in-out infinite alternate;
    }

    @-webkit-keyframes blink {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    @-moz-keyframes blink {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    @keyframes blink {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    .prof dd:nth-of-type(2) {
      background-color: #eee;
      margin: 0 1em;
      border-radius: 10px;
    }