/*****************************************/
/********* Style Sheet for       *********/
/********* Bread-Crumb Display   *********/
/*****************************************/


        .breadcrumb-wrapper {
          position: fixed;
          top: 15%;
          right: 2%;
          font-family: sans-serif;
          font-size: 10px;
          font-weight: 900;
          z-index: 100000;
        }
        
        .breadcrumb-hoverarea {
          display: inline-block;
          position: relative;
        }
        
        /* trigger */
        .breadcrumb-trigger {
          background: #eee;
          padding: 4px 8px;
          border-radius: 4px;
          cursor: pointer;
          font-size: 12px;
          color: #000;
          font-weight: 600;
        }

        .breadcrumb-trigger::after{
          content:"🙄 Now Viewing";
        }
        
        /* nav */
        .breadcrumb-nav {
          display: none;
          position: absolute;
          top: 100%;
          right: 0;
          margin-top: 2px;
          background: white;
          border-radius: 6px;
          box-shadow: 0 2px 6px rgba(0,0,0,0.08);
          max-width: 450px;
          overflow-x:hidden;
          white-space: nowrap;
        }
        
        /* hoverで展開 */
        .breadcrumb-hoverarea:hover .breadcrumb-nav {
          display: block;
        }
        
        /* scroll area */
        .breadcrumb-scroll {
          white-space: nowrap;
          overflow-x: auto;
          padding: 6px 10px;
          color: #000;
          font-size: 10px;
          font-weight: 800;
        }
        
        /* リンク */
        .breadcrumb-scroll a {
          text-decoration: none;
          color: #000;
          margin: 0 4px;
        }
        
        .breadcrumb-scroll .category {
          color: #891701;
          font-weight: 600;
          margin: 0 4px;
        }

        .breadcrumb-scroll .current {
          color: #4b26d0;
          font-weight: 600;
          margin: 0 4px;
        }
        

        /* スマホでは非表示 */
        @media (max-width: 767px) {
          .breadcrumb-wrapper {
            display: none;
          }
        }