@import url(http://fonts.googleapis.com/css?family=Gochi+Hand);
.tooltip {
	position: absolute;
	z-index: 999;
	width: 2.2em;
	height: 2.2em;
	cursor: pointer;
}

/* Trigger item */

.tooltip-item {
	left: 50%;
	top: 50%;
	margin: -15px 0 0 -15px;
	position: absolute;
	/*
	border-radius: 50%;
	-webkit-animation: pulse 0.6s infinite alternate;
	animation: pulse 0.6s infinite alternate;*/
}
@-webkit-keyframes pulse {
	from { -webkit-transform: scale3d(0.5,0.5,1); }
	to { -webkit-transform: scale3d(1,1,1); }
}

@keyframes pulse {
	from { -webkit-transform: scale3d(0.5,0.5,1); transform: scale3d(0.5,0.5,1); }
	to { -webkit-transform: scale3d(1,1,1); transform: scale3d(1,1,1); }
}

.tooltip:hover .tooltip-item {
	border-color: #fff;
}

/* ----------------------------------マップ座標---------------------------------- */
.tooltip:first-child {
	top: 22%;
    left: 18%;
}
.tooltip01 {
	/*border: 2px solid #e35583;*/
	width: 77px;
    height: 22px;
}
.tooltip:nth-child(2) {
    top: 25%;
    left: 26%;
}
.tooltip02 {
	/*border: 2px solid #e35583;*/
	width: 77px;
    height: 22px;
}
.tooltip:nth-child(3) {
    top: 0%;
    left: 0%;
}
.tooltip03 {
	/*border: 2px solid #e35583;*/
    width: 77px;
    height: 32px;
}
.tooltip:nth-child(4) {
	top: 21%;
    left: 61%;
}
.tooltip04 {
	/*border: 2px solid #e35583;*/
    width: 108px;
    height: 32px;
}
.tooltip:nth-child(5) {
	top: 40%;
    left: 46%;
}
.tooltip05 {
	/*border: 2px solid #e35583;*/
    width: 85px;
    height: 37px;
}
.tooltip:nth-child(6) {
    top: 49%;
    left: 58%;
}
.tooltip06 {
	/*border: 2px solid #e35583;*/
    width: 85px;
    height: 37px;
}
.tooltip:nth-child(7) {
    top: 40%;
    left: 78%;
}
.tooltip07 {
	/*border: 2px solid #e35583;*/
    width: 85px;
    height: 32px;
}
.tooltip:nth-child(8) {
    top: 72%;
    left: 32%;
}
.tooltip08 {
	/*border: 2px solid #e35583;*/
    width: 85px;
    height: 32px;
}
.tooltip:nth-child(9) {
    top: 0%;
    left: 0%;
}
.tooltip09 {
	/*border: 2px solid #e35583;*/
    width: 93px;
    height: 32px;
}
.tooltip:nth-child(10) {
    top: 91%;
    left: 45%;
}
.tooltip10 {
	/*border: 2px solid #e35583;*/
    width: 93px;
    height: 32px;
}
.tooltip:nth-child(11) {
    top: 92%;
    left: 62%;
}
.tooltip11 {
	/*border: 2px solid #e35583;*/
    width: 93px;
    height: 32px;
}
.tooltip:nth-child(12) {
    top: 88%;
    left: 80%;
}
.tooltip12 {
	/*border: 2px solid #e35583;*/
    width: 131px;
    height: 51px;
}

/* Tooltip */

.tooltip-content {
	position: absolute;
	background: #e35583;
	z-index: 9999;
	width: 300px;
	bottom: 50%;
	margin-bottom: -1em;
	padding: 20px;
	border-radius: 20px;
	font-size: 16px;
	text-align: center;
	color: #fff;
	opacity: 0;
	cursor: default;
	pointer-events: none;
	/*font-family: 'Gochi Hand', cursive;*/
	-webkit-font-smoothing: antialiased;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}
.tooltip-content .ttl{font-weight: bold;line-height: 1.5em;}
.tooltip-content a{display: block; background-color: antiquewhite;color: #000000;padding: 5px;}
.tooltip-content a:hover{background-color:#F1EC6A;color: #000000;}

.tooltip-west .tooltip-content {
	left: 4em;
	-webkit-transform-origin: -2em 50%;
	transform-origin: -2em 50%;
	-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
	transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
}

.tooltip-east .tooltip-content {
	right: 4em;
	-webkit-transform-origin: calc(100% + 2em) 50%;
	transform-origin: calc(100% + 2em) 50%;
	-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
	transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
}

.tooltip:hover .tooltip-content {
	opacity: 1;
	-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
	transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
	pointer-events: auto;
}

/* Gap "bridge" and arrow */

.tooltip-content::before,
.tooltip-content::after {
	content: '';
	position: absolute;
}

.tooltip-content::before {
	height: 100%;
	width: 3em;
}

.tooltip-content::after {
	width: 2em;
	height: 2em;
	top: 50%;
	margin: -1em 0 0;
	background: url(../img/tooltip2.svg) no-repeat center center;
	background-size: 100%;
}

.tooltip-west .tooltip-content::before,
.tooltip-west .tooltip-content::after {
	right: 99%; /* because of FF, otherwise we have a gap */
}

.tooltip-east .tooltip-content::before,
.tooltip-east .tooltip-content::after {
	left: 99%; /* because of FF, otherwise we have a gap */
}

.tooltip-east .tooltip-content::after {
	-webkit-transform: scale3d(-1,1,1);
	transform: scale3d(-1,1,1);
}