/*このCSSにマウスオーバーでのフキダシが書かれている*/

    /*ここからマウスオーバーでのフキダシ*/
    /*マウスオーバーでのフキダシ大*/
    .css-fukidashi {/*フキダシの挙動*/
      padding: 0;
      margin: 0;
      display: inline-block;
      position: relative;
    }
    .fukidashi {/*フキダシ枠(四角)*/
      display: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 70px;
      width: max-content;
      padding: 5px 10px 5px 10px;/*上,右,下,左*/
      border-radius: 5px;/*丸み*/
      background: var(--main-color);
      color: rgba(255, 255, 255, 1);
      font-size: 16px;
      z-index: var(--frame-index);

    }
    .fukidashi:after {/*フキダシ装飾(三角)*/
      position: absolute;
      width: 0;
      height: 0;
      left: 50%;
      top: -20px;
      margin-left: 13px;/*▽の左右の位置をずらす*/
      border: solid transparent;
      border-top-color: var(--main-color);
      border-width: 11px;
      pointer-events: none;
      content: " ";
      transform: rotate(180deg) translateX(110%);/*transform: rotate(45deg)*/
    }
    .fukidashi_trigger {/*↓につなげるためのクラス レイアウトのcssとしてはダミー*/

    }
    .fukidashi_trigger:hover + .fukidashi {/*category_iconにマウスオーバーするとfukidashiが出る*/
      display: block;
        /*フェードインの設定*/
        animation: fadeIn 1s ease 0s 1 normal;
        -webkit-animation: fadeIn 1s ease 0s 1 normal;
    }
    @keyframes fadeIn {/*フェードインの設定*/
      0% {opacity: 0}
      100% {opacity: 1}
    }
    @-webkit-keyframes fadeIn {/*フェードインの設定*/
      0% {opacity: 0}
      100% {opacity: 1}
    }

      /*マウスオーバーでのフキダシ*//*カテゴリートップ*/
      .css-fukidashi_lower {/*フキダシの挙動*/
        padding: 0;
        margin: 0;
        display: inline-block;
        position: relative;
      }
      .fukidashi_lower {/*フキダシ枠(四角)*/
        display: none;
        position: absolute;
        /*margin: -15px 0px 0px -13px;*/
        left: 50%;
        transform: translateX(-50%);
        top: 70%;/*70%*//*55px*/
        width: max-content;
        padding: 5px 10px 5px 10px;/*上,右,下,左*/
        border-radius: 5px;/*丸み*/
        background: var(--main-color);
        color: rgba(255, 255, 255, 1);
        font-size: 12px;
        z-index: var(--frame-index);
        pointer-events: none;
      }
      .fukidashi_lower:after {/*フキダシ装飾(三角)*/
        position: absolute;
        width: 0;
        height: 0;
        left: 50%;
        top: -15px;
        /*bottom: 493px;*/
        margin-left: 10px;
        border: solid transparent;
        /*border-color: rgba(51, 204, 153, 0);*/
        border-top-color: var(--main-color);
        border-width: 8px;
        pointer-events: none;
        content: " ";
        transform: rotate(180deg) translateX(110%);/*transform: rotate(45deg)*/
        pointer-events: none;
      }
      .fukidashi_lower_trigger {/*↓につなげるためのクラス レイアウトのcssとしてはダミー*/

      }.fukidashi_lower_trigger:hover + .fukidashi_lower {/*category_iconにマウスオーバーするとfukidashiが出る*/
        display: block;
          /*フェードインの設定*/
        /*animation: fadeIn 1s ease 0s 1 normal;
        -webkit-animation: fadeIn 1s ease 0s 1 normal;*/
      }
      @keyframes fadeIn {/*フェードインの設定*/
        0% {opacity: 0}
        100% {opacity: 1}
      }
      @-webkit-keyframes fadeIn {/*フェードインの設定*/
        0% {opacity: 0}
        100% {opacity: 1}
      }

    /*マウスオーバーでのフキダシ*//*カテゴリーボトム*/
    .css-fukidashi_upper {/*フキダシの挙動*/
      padding: 0;
      margin: 0;
      display: inline-block;
      position: relative;
    }
    .fukidashi_upper {/*フキダシ枠(四角)*/
      display: none;
      position: absolute;
      /*margin: -15px 0px 0px -13px;*/
      left: 50%;
      transform: translateX(-50%);
      top: -36px;
      width: max-content;
      padding: 5px 10px 5px 10px;/*上,右,下,左*/
      border-radius: 5px;/*丸み*/
      background: var(--main-color);
      color: rgba(255, 255, 255, 1);
      font-size: 12px;
      z-index: var(--frame-index);
      pointer-events: none;
    }
    .fukidashi_upper:after {/*フキダシ装飾(三角)*/
      position: absolute;
      width: 0;
      height: 0;
      left: 50%;
      top: 28px;
      margin-left: -25px;
      border: solid transparent;
      border-top-color: var(--main-color);
      border-width: 8px;
      pointer-events: none;
      content: " ";
      transform: rotate(360deg) translateX(110%);/*transform: rotate(45deg)*/
      pointer-events: none;
    }
    .fukidashi_upper_trigger {/*↓につなげるためのクラス レイアウトのcssとしてはダミー*/

    }.fukidashi_upper_trigger:link + .fukidashi_upper {/*category_iconにマウスオーバーするとfukidashiが出る*/
      display: block;
        /*フェードインの設定*/
      animation: fadeIn 1s ease 0s 1 normal;
      -webkit-animation: fadeIn 1s ease 0s 1 normal;
    }
    @keyframes fadeIn {/*フェードインの設定*/
      0% {opacity: 0}
      100% {opacity: 1}
    }
    @-webkit-keyframes fadeIn {/*フェードインの設定*/
      0% {opacity: 0}
      100% {opacity: 1}
    }

    /*マウスオーバーでのフキダシ*/
    /*枠のカテゴリー丸アイコントップ用*//*←のみ位置が揃わないため個別作成*/
    .css-fukidashi_lower_uni {/*フキダシの挙動*/
      padding: 0;
      margin: 0;
      display: inline-block;
      position: relative;
    }
    .fukidashi_lower_uni {/*フキダシ枠(四角)*/
      display: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 115px;
      width: max-content;
      padding: 5px 10px 5px 10px;
      border-radius: 5px;/*丸み*/
      background: var(--main-color);
      color: rgba(255, 255, 255, 1);
      font-size: 12px;
      z-index: var(--frame-index);
      pointer-events: none;
    }
    .fukidashi_lower_uni:after {/*フキダシ装飾(三角)*/
      position: absolute;
      width: 0;
      height: 0;
      left: 50%;
      top: -15px;
      /*bottom: 493px;*/
      margin-left: 10px;
      border: solid transparent;
      /*border-color: rgba(51, 204, 153, 0);*/
      border-top-color: var(--main-color);
      border-width: 8px;
      pointer-events: none;
      content: " ";
      transform: rotate(180deg) translateX(110%);/*transform: rotate(45deg)*/
      pointer-events: none;
    }
    .fukidashi_lower_uni_trigger {/*↓につなげるためのクラス レイアウトのcssとしてはダミー*/

    }.fukidashi_lower_uni_trigger:hover + .fukidashi_lower_uni {/*category_iconにマウスオーバーするとfukidashiが出る*/
      display: block;
        /*フェードインの設定*/
      animation: fadeIn 1s ease 0s 1 normal;
      -webkit-animation: fadeIn 1s ease 0s 1 normal;
    }
    @keyframes fadeIn {/*フェードインの設定*/
      0% {opacity: 0}
      100% {opacity: 1}
    }
    @-webkit-keyframes fadeIn {/*フェードインの設定*/
      0% {opacity: 0}
      100% {opacity: 1}
    }

    /*マウスオーバーでのフキダシ*//*インフォメーション用*/
    .css-fukidashi_info {/*フキダシの挙動*/
      padding: 0;
      margin: 0;
      display: inline-block;
      position: relative;
    }
    .fukidashi_info {/*フキダシ枠(四角)*/
      display: none;
      position: absolute;
      left: -120px;
      transform: translateX(-50%);
      top: 50px;
      height: 45px;
      width: 250px;
      padding: 15px 20px 15px 20px;
      border-radius: 5px;
      background: white;
      border:5px solid var(--main-color);
      color: var(--black-color);
      font-size: 12px;
      z-index: var(--frame-index);
      pointer-events: none;
    }
    .fukidashi_info:after {/*フキダシ装飾(三角)*/
      position: absolute;
      width: 0;
      height: 0;
      left: 74%;
      top: 5px;
      margin-left: 10px;
      border: solid transparent;
      border-top-color: var(--main-color);
      border-width: 15px;
      pointer-events: none;
      content: " ";
      transform: rotate(315deg) translateX(110%);
      pointer-events: none;
    }
    .fukidashi_info_trigger {/*↓につなげるためのクラス レイアウトのcssとしてはダミー*/

    }.fukidashi_info_trigger:hover + .fukidashi_info {/*category_iconにマウスオーバーするとfukidashiが出る*/
      display: block;
        /*フェードインの設定*/
      animation: fadeIn 1s ease 0s 1 normal;
      -webkit-animation: fadeIn 1s ease 0s 1 normal;
    }
    @keyframes fadeIn {/*フェードインの設定*/
      0% {opacity: 0}
      100% {opacity: 1}
    }
    @-webkit-keyframes fadeIn {/*フェードインの設定*/
      0% {opacity: 0}
      100% {opacity: 1}
    }
    /*ここまでマウスオーバーでのフキダシ*/
