@import url(https://fonts.googleapis.com/css?family=Indie+Flower);

.tooltip {
	display: block;
	position: relative;
}

/* Trigger text */

.tooltip-item {
	cursor: pointer;
	z-index: 100;
	position: relative;
	display: inline-block;
	-webkit-transition: background-color 0.3s, color 0.3s, -webkit-transform 0.3s;
	transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

footer #group .tooltip:hover dl {
	border: none;
	background: rgba(204,204,204,1);
}

.tooltip:hover .tooltip-item {
	z-index: 999;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* Tooltip */

.tooltip-content {
	position: absolute;
	z-index: 900;
	width: 27vw;
	max-width: 420px;
	left: 50%;
	margin-left: -13.5vw;
	bottom: 0;
	text-align: left;
	background: rgba(0,0,0,1);
	opacity: 0;
	padding: 1.5rem;
	color: #fff;
	border-bottom: 7.2rem solid rgba(204,204,204,1);
	cursor: default;
	pointer-events: none;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

.tooltip-text {
	opacity: 0;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}

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

.tooltip-content ul {
	font-size: 0;
	margin-bottom: 1.5rem;
}

footer #group .tooltip-content li {
	margin-right: 0;
	margin-left: 0;
}

.tooltip-content .slick-slide {
	margin-right: 0.3vw;
	margin-left: 0.3vw;
}

.tooltip-content .exp {
	font-size: 1.07vw;
}

.tooltip-content .exp p {
	text-align: right;
	margin-top: 1rem;
}

.tooltip-content .exp a {
	display: inline-block;
	color: #fff;
	padding-right: 15px;
	position: relative;
}

.tooltip-content .exp a:after {
	content: "";
    cursor: pointer;
    width: 12px;
	height: 12px;
    background-image: url('../images/common/icon_blank.svg');
    background-size: 100%;
    position: absolute;
    bottom: 0.3vw;
    right: 0;
}


@media screen and (min-width: 1400px) {
	
	.tooltip-content .exp {
	    font-size: 1.5rem;
	    padding: 0 1.2rem;
	}
	
	.tooltip-content .exp a {
		font-size: 1.4rem;
	}
	
}

@media screen and (min-width: 1556px) {
	
	.tooltip-content {
		margin-left: -210px;
	}
	
}

