@charset "UTF-8";
/* information1.css */
/* 全体 */


  /* オンマウスでポップアップメッセージを表示する */
  
@font-face {
  font-family: FontAwesome;
  src: url("fonts/typicons.eot");
  src: url("fonts/typicons.eot?#iefix") format('embedded-opentype'),
       url("fonts/typicons.woff") format('woff'),
       url("fonts/typicons.ttf") format('truetype'),
       url("fonts/typicons.svg#typicons") format('svg');
  font-weight: normal;
  font-style: normal;
}
.wrap{
  width: 16px;
  color: #fff;
    top: 1px;
  left: 50px;
}
.wrap li{
  list-style: none;
  float: left;
  margin: 0;
  padding: 0 5px;
}
.wrap a{
  display: block;
  position: relative;
  transition: .3s;
}
.wrap a:hover{
  background: #196090;
}
.wrap a:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.qa1:before { content: '\f042'; }
.home:before { content: '\e081'; }
.twitter:before { content: '\e0e7'; }
.facebook:before { content: '\e0d7'; }
.rss:before { content: '\e0ce'; }
.cog:before { content: '\e04d'; }
.wrap a span{
  position: absolute;
  opacity: 0;
  top: -50px;
  left: -20px;
  width: 60px;
  padding: 10px;
  border-radius: 2px;
  background: #196090;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  transition: .3s;
}
.wrap a span:after{
  position: absolute;
  top: 100%;
  left: 0px;
  height: 0;
  width: 0;
  border: 6px solid transparent;
  border-top: 6px solid #196090;
  content: "";
}
.wrap a:hover span{
  opacity: 1;
  top: -40px;
}

  /* オンマウスでポップアップメッセージを表示する */
  /* 表示文字の装飾 */
  
div.tooltip1{
    color: #555;
    display: inline-block;                        /* インライン要素化 */

}
 
/* ツールチップ部分を隠す */
div.tooltip1 span {
    display: none;
}
 
/* マウスオーバー */
div.tooltip1:hover {
    position: relative;

}
 
/* マウスオーバー時にツールチップを表示 */
div.tooltip1:hover span {
    display: block;                  /* ボックス要素にする */
    position: absolute;            /* relativeからの絶対位置 */
    top: 25px;
    font-size: 90%;
    color: #fff;
    background-color: #196090;
    width: 205px;
    padding: 5px;
    border-radius:3px;
    z-index:100;
}
 
/* フキダシ部分を作成 */
div.tooltip1 span:before{
    content:''; 
    display:block; 
    position:absolute;                         /* relativeからの絶対位置 */
    height:0; 
    width:0; 
    top:-13px; 
    left:15px;
    border:13px transparent solid; 
    border-right-width:0; 
    border-left-color:#196090;
    transform:rotate(270deg);            /* 傾きをつける */
    -webkit-transform:rotate(270deg);
    -o-transform:rotate(270deg);
    z-index:100;
}


 body {
      margin: 0;
      padding: 0;
    }
    .css-fukidashi {
      padding: 0;
      margin: 0;
    }
    .text {
      width: 200px;
      position: relative;
      margin:80px 50px 50px;
      padding: 20px;
      border: 1px solid #ccc;
    }
    .fukidashi {
      display: none;
      width: 200px;
      position: absolute;
      top: 0;
      left: 250px;
      padding: 16px;
      border-radius: 5px;
      background: #196090;
      color: #fff;
      font-weight: bold;
    }
    .fukidashi:after {
      position: absolute;
      width: 0;
      height: 0;
      left: 0;
      bottom: -19px;
      margin-left: 10px;
      border: solid transparent;
      border-color: rgba(51, 204, 153, 0);
      border-top-color: #196090;
      border-width: 10px;
      pointer-events: none;
      content: " ";
    }
    .text:hover + .fukidashi {
      display: block;
    }
    
    .fa-write:before
{
	color: #ffffff;
}

.text-link_mark-right-link::after {
  content: "\f08e";
  font-family: FontAwesome;
  margin: 0 0.2rem;
}
