
body{
    background-image: url(../img_hint/backgroundMap.png);
    background-repeat: no-repeat;
    background-size: 100vw;
    color: white;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size:13px;
}


.photo{
    width:82vw;
    position: absolute;
    top:23vw;
    left:9vw;
}



.textImg{
    width:20vw;
    position: absolute;
    top:140vw;
    left:40vw;
}

.backButton{
    width:20vw;
    position: absolute;
    top:172vw;
    left:40vw;
}

.title{
    width:20vw;
    position: absolute;
    top:13vw;
    left:20vw;
}

.mapImg{
    width:100vw;
  

}

.map{
    width:100vw;
    margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
    transform: translate(0,8vw);
    
}

/* 点滅 */
.blinking{
	-webkit-animation:blink 0.7s ease-in-out infinite alternate;
    -moz-animation:blink 0.7s ease-in-out infinite alternate;
    animation:blink 0.7s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}