/*https://webparts.cman.jp/balloon/click/*/
.balloonoya_parent_notification {
  position   : relative;             /* 指定した分だけ相対的に移動 */
}
.balloon_hide_notification {
  display: none;                     /* 要素を非表示 */
}
.balloon_notification {
  position: absolute;                   /* 親要素を基準 */
  display: inline;                      /* 要素をインラインとして表示 */
  padding: 2px;                         /* テキストの前後の余白 */
  width:180px;                          /* 吹き出し全体の幅 */
  border-style: solid; border-width: thin; border-color:  rgb(185, 184, 184);
  left:-110px;                          /* 表示位置 */
  top : 100%;                           /* 表示位置 */
  margin-top : 12px;                    /* 表示位置 */
  font-size: 80%;                       /* 文字サイズ */
  border-radius: 5px;
  background-color: white;
}
.balloon_notification:after{
  border-bottom: 12px solid rgb(185, 184, 184); /* 吹き出し口の高さ・色 */
  border-left: 10px solid transparent;    /* 吹き出し口の幅１／２ */
  border-right: 10px solid transparent;   /* 吹き出し口の幅１／２ */
  top: -12px;                             /* 吹き出し口の位置調整 */
  left : 119px;                              /* 吹き出し口の横位置 */
  content: "";                       /* コンテンツの挿入 */
  position: absolute;                /* 親要素を基準 */
}

.balloonoya_parent_profile {
  position   : relative;             /* 指定した分だけ相対的に移動 */
}
.balloon_hide_profile {
  display: none;                     /* 要素を非表示 */
}
.balloon_profile {
  position: absolute;                   /* 親要素を基準 */
  display: inline;                      /* 要素をインラインとして表示 */
  padding: 2px;                         /* テキストの前後の余白 */
  width:180px;                          /* 吹き出し全体の幅 */
  border-style: solid; border-width: thin; border-color:  rgb(185, 184, 184);
  left:-110px;                          /* 表示位置 */
  top : 100%;                           /* 表示位置 */
  margin-top : 12px;                    /* 表示位置 */
  font-size: 80%;                       /* 文字サイズ */
  border-radius: 5px;
  background-color: white;
}
.balloon_profile:after{
  border-bottom: 12px solid rgb(185, 184, 184); /* 吹き出し口の高さ・色 */
  border-left: 10px solid transparent;    /* 吹き出し口の幅１／２ */
  border-right: 10px solid transparent;   /* 吹き出し口の幅１／２ */
  top: -12px;                             /* 吹き出し口の位置調整 */
  left : 115px;                              /* 吹き出し口の横位置 */
  content: "";                       /* コンテンツの挿入 */
  position: absolute;                /* 親要素を基準 */
}


#dropdown-title{
  text-align:center;
  font-weight:bold;
  margin: 5px;
  font-size: 16px;
}



/* ========================================
    ヘッダー
========================================= */
#header{
  position:fixed;
  height: 70px;
  display:block;
  width: 100%;
  z-index:9;
  background-color: white;
  top:0px;
  padding-top: 20px;
  border-bottom: thin solid rgb(231, 231, 231);
  box-shadow : 0px  1px 5px #ebebeb ;
}

#header-block{
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

#logo{
  height: 50px;
}

#header-nav, #guest-nav{
  float: right;
  margin-top: 5px;
}

#header-nav ul li, #guest-nav ul li {
  float: left;
  margin-left: 30px;
}

#header-nav ul li a, #guest-nav ul li a {
  text-decoration: none;
  font-size: 14px;
  color:#151719;
}


.tooltip-font-awesome{
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.tooltip-font-awesome p{
  margin:0;
  padding:0;
}

#my-img{
  width: 35px;
  height:35px;
  border-radius: 50%;
  object-fit:cover;
}

.fa-stack[data-count]:after{
  position:absolute;
  right:0%;
  top:1%;
  content: attr(data-count);
  font-size:40%;
  padding:.6em;
  border-radius:999px;
  line-height:.99em;
  color: white;
  background:red;
  text-align:center;
  min-width:2em;
  font-weight:bold;
}

.notification-img{
  float: left;
  margin: 5px;
}
.notification-msg{
  float: left;
  max-width: 120px;
}

.notification-row:hover{
  background-color:#F8F9FA;
}

/* スクリーンが460px以下のCSSを適用 */
@media screen and (max-width: 460px) {
  #logo{
    height: 50px;
    margin-left: 3px;
  }
  #header-nav{
    margin-top: 5px;
    margin-right: 45px;
  }
  
  #header-nav ul li {
    margin-left: 5px;
    margin-right: 5px;
  }

  #guest-nav{
    margin-top: 13px;
    margin-right: 0;
  }
  
  #guest-nav ul li {
    margin-left: 5px;
    margin-right: 5px;
  }
}