@charset "utf-8";
/* ===================================================================
CSS information
 file name  :  toolTip.css
=================================================================== */
.invisible {
	display: none;
}
#r_side {
	position: relative;
}
p.toolTip {
	margin: 0px;
	padding: 20px;
	border-radius: 10px;
	top: calc(50% - 40px);
	left: calc(50% - 142px);
	width: 285px;
	text-align: center;
	color: rgb(255, 255, 255);
	overflow: hidden;
	display: none;
	position: fixed;
	z-index: 9000000;
	-ms-zoom: 1;
	box-sizing: border-box;
	/* opacity: 0.9; */
	color:#000;
	background-color: #ccc;
	-moz-border-radius: 5px;
}
p.toolTip a {
	border: 0;
	background-color: #f0858a;
	font-size: 14px;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 500;
	color: #ffffff;
	line-height: 1.4;
}
p.toolTip #bt-tooltip {
	float: right; display: block;
}
p.toolTip #bt-tooltip img {
	cursor: pointer;
}
p.toolTip #txt-tooltip {
	letter-spacing: 0.02em; margin-bottom: 5px; display: block;
}

.toolTip__wrap{
	position: relative;
}

@media screen and (max-width: 768px) {
	p.toolTip {
		display: none;
		margin: 0px;
		padding: 10px;
		width: 80%;
		border-radius: 10px;
		background-color: rgba(0,0,0,.6);
		overflow: hidden;
		position: fixed;
		font-size: 14px;
		text-align: center;
		z-index: 2000;
		color: #FFFFFF;
		top: calc(50% - 40px);
		left: calc(10%);
	}
}