/* Wysiwyg editor
**************************************** */
  .mce-content-body {
    text-align: justify;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph;
  }
  .mce-content-body img {
    margin: 20px 0;
    max-width: 100%;
    height: auto;
  }
  .mce-content-body hr {
    background: transparent;
  }
  .mce-content-body .alignleft {
    float: left;
    clear: left;
    margin: 0 30px 30px 0;
  }
  .mce-content-body .alignright {
    float: right;
    clear: right;
    margin: 0 0 30px 30px;
  }
  .mce-content-body .aligncenter {
    display: block;
    margin: 30px auto;
  }
  .mce-content-body p:not(:last-child) {
    margin-bottom: 1em;
  }
  .mce-content-body table:not(:last-child) { margin-bottom: 1em; }
  .mce-content-body th, td {
    padding: .5em 1em;
    border: 1px solid #ddd;
    vertical-align: middle;
  }
  .mce-content-body th { background-color: #efefef; }
  .mce-content-body td { background-color: #fff; }
  .mce-content-body blockquote　{
    margin: 1em 0;
    padding: 15px 40px;
    border-radius: 3px;
    position: relative;
    display: inline-block;
    font-style: oblique;
    color: #666;
    background-color: #f8f8f8;
  }
  .mce-content-body blockquote p { margin-bottom: 0; }
  .mce-content-body blockquote::before,
  .mce-content-body blockquote::after {
    content: '';
    position: absolute;
    width: 1em;
    height: 1em;
    opacity: .25;
  }
  .mce-content-body blockquote::before {
    background-image: url('../images/common/icon-quote_left.svg');
    top: 13px;
    left: 10px;
  }
  .mce-content-body blockquote::after {
    background-image: url('../images/common/icon-quote_right.svg');
    bottom: 13px;
    right: 10px;
  }
  .mce-content-body a:not(.btn) {
    color: #BFA736;
    word-break: break-all;
  }
  .mce-content-body a:not(.btn):hover {
    text-decoration: underline;
  }

  /* --- wp-caption --- */
  .wp-caption {
    max-width: 100% !important;
  }
  .wp-caption img {
    margin-bottom: 4px;
  }
  .wp-caption-text {
    opacity: .5;
    font-size: 93%;
  }

  /* --- table scroll --- */
  .scroll {
    overflow-x: scroll;
    margin: 0 0 24px;
  }
  .scroll table {
    margin: 0;
  }
  .scroll--cap {
    text-align: right;
    margin: 24px 0 0 !important;
    opacity: 0.25;
    font-size: 93%;
  }

  @media (max-width: 767px) {
    .mce-content-body {
      font-size: 100%;
    }
    .mce-content-body .alignright,
    .mce-content-body .alignleft  {
      float: none;
      margin: 20px auto;
      display: block;
    }
    .mce-content-body blockquote {
      padding: 15px;
    }
    .mce-content-body blockquote::before {
      top: 0;
      left: 0;
    }
    .mce-content-body blockquote::after {
      bottom: 0;
      right: 0;
    }
    .scroll {
      border-right: 1px solid #32373c;
      padding: 8px 0;
    }
    .mce-content-body table {
      width: 100% !important;
    }
  }


/* 管理画面エディタ用
*************************************************** */
  .mce-content-body.wp-editor {
    padding: 32px !important;
  }