﻿@charset "utf-8";
/* CSS Document */


/**************************************************/
/*******　　ツールチップ　　　*********/
/**************************************************/

.tooltip {/*ツールチップの対象要素*/
    position: relative;
    display: inline-block;
 
}
 
.tooltip .tooltiptext {/*ツールチップ本体*/
    visibility: hidden;
    width: 150px;
    background-color: #109954;
    color: #fff;
    text-align: center;
    padding: 10px 10px;
    border-radius: 6px;
    position: absolute;
    font-size:16px;
    z-index: 1;
    margin-top:35px;
	font-weight: normal;
	margin-left: -120px;
}
 
.tooltip:hover .tooltiptext {
    visibility: visible;
}
.tooltip .tooltiptext::after {/*吹き出しのアロー部分*/
    content: " ";
    position: absolute;
    bottom: 100%; 
    left: 50%;
    margin-left: 0px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #109954 transparent;
}
 
.tooltip .tooltiptext {/*表示させる際のアニメーションエフェクト。透明にしておく*/
    opacity: 0;
    transition: opacity 1s;
}
 
.tooltip:hover .tooltiptext {/*マウスホバーでアニメーションしながら表示*/
    opacity: 1;
}