.highlight { 
	background-color: rgba(255 ,255 ,255, 0.0) ;
    background: url("circle_pink.svg") no-repeat center / contain;
    -webkit-filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.5));
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.5));
    border: solid 5px rgba(255,255,255,0.0);
    border-radius: 200px;
    transform: translateY(-50%) translateX(-50%);
    transition: background-color 5.0s ease-out, filter 10.3s ease, -webkit-filter 10.3s ease;
}

.highlight:hover, .highlight:focus {
	border: solid 3px rgba(255,255,255,0.0);
    -webkit-filter: drop-shadow(2px 2px 7px rgba(200,0,0,0.9));
    filter: drop-shadow(2px 2px 7px rgba(200,0,0,0.9));
    transition: background-color 5.0s ease-out, filter 10.0s ease, -webkit-filter 10.0s ease;
    
    //box-shadow: 2px 2px 15px 5px rgba(0,0,0,0.4); 

	//transition: background-color 1.0s ease-out, box-shadow 10.0s ease-out;
	//transition-delay: 0.0s;
	//animation: my-animation 2s;
	//mix-blend-mode: hard-light;
}



.highlight:active {
	background-color: rgba(50 ,255 ,255, 0.7) ;
	//background-image: url("circle_pink.svg");
	//display: inline-block;
    //border-color: red;
    //border: solid 3px rgba(50, 255, 255, 1.0);
    //margin-top: -50px;
    //margin-left: -50px;
    //padding: 100px;
    //transition: all 0.3s ease-in;
	//position: absolute; top: 40px; left: 40px;
    //transform: scale(4.1);
    //box-shadow: 0px 0px 5px 15px rgba(50,255,255,0.9), 0px 0px 10px 20px rgba(0,0,0,0.5); 
    //transition: background-color 0.05s ease-out, box-shadow 0.05s ease-out;
    //mix-blend-mode: hard-light;
    
//	-webkit-filter: drop-shadow(0px 0px 8px rgba(50,255,255,1.0))
//	                drop-shadow(0px 0px 8px rgba(50,255,255,1.0))
//	                drop-shadow(0px 0px 8px rgba(50,255,255,1.0));
    filter: drop-shadow(0px 0px 8px rgba(50,255,255,1.0)) 
    		drop-shadow(0px 0px 8px rgba(50,255,255,1.0))
    		drop-shadow(0px 0px 8px rgba(50,255,255,1.0))
    		brightness(2.5)
    		;
    transition: background-color 0.05s ease-out, filter 0.05s ease, -webkit-filter 0.05s ease;
}





/*����������������������������������������������������������������������������������*/
.tip {
	width: 25vmax;
	/* font-size: 80%; */
    padding: 0;
    margin: 0;
    /* font-weight: normal; */
    text-align: center;
    color: #000000;/*�����F*/
    background: rgba(255 ,255 ,255, 1.0);
    border: solid 2px #422800;
    border-radius: 16px;/*�p�̊ۂ�*/
    //box-shadow:6px 6px 12px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 4px rgba(255, 255, 255, 1), 5px 9px 7px -2px hsl(200 50% 20% / 70%);
    z-index: 40;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
    position:fixed;
}

/*　タブレットなどで見るとフォントを小さくする */
@media only screen and (min-width: 768px) {
    .tip {
        width: calc(24 * (1vw + 1vh - 1vmin));
	    font-size: calc(1. * (1vw + 1vh - 1vmin));
    }
}

/*　パソコンで見るとフォントを小さくする */
@media only screen and (min-width: 1200px) {
    .tip {
        width: calc(17 * (1vw + 1vh - 1vmin));
	    font-size: calc(1.0 * (1vw + 1vh - 1vmin));
    }
}

.tip img {
	/*width: 27vh;*/
    padding: 5px;
    //margin: 10px;
    background: rgba(255 ,255 ,255, 1.0);
    border: solid 0px rgba(100, 100, 100, 1.0);
    border-radius: 16px;/*�p�̊ۂ�*/
}




.title {
    padding: 0;
    margin: 0;
    background: rgba(226 ,255 ,178, 1.0);
    border: solid 1px rgba(100, 100, 100, 0.0);
    border-radius: 0px;/*�p�̊ۂ�*/
}

/*　タブレットなどで見るとフォントを小さくする */
@media only screen and (min-width: 768px) { 
    .buttons-overlay {
        font-size: calc(1.4 * (1vw + 1vh - 1vmin));
    }
}

@media only screen and (min-width: 1200px) { 
    .buttons-overlay {
        font-size: calc(1.0 * (1vw + 1vh - 1vmin));
    }
}