body {
    width: 100%;
    margin: 0 auto;
    width: 65%;
    max-width: 800px;
    margin-bottom: 30px;
}

img {
    width: 100%;
    vertical-align: bottom;

}

.pc {
    position: relative;
}
.d4{
    position: absolute;
    width: 58%;
    left: 22%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); 
    top: 76%;
}

.phone {
    position: relative;
}
.d24{
    position: absolute;
    width: 58%;
    left: 22%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); 
    top: 72%;
}

@media screen and (max-width:1080px){
    body{
        width: 100%;
    }
    
    img{
        width: 100%;
    }
    .pc{
        display: none;
    }
}
    

@media screen and (min-width:1081px){
    body{
        width: 100%;
    }

    img{
        width: 100%;
    }
    .phone{
        display: none;   
    }
}



div.animation_box {
    padding: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: 4s ease;
  }


  .open {
	cursor:pointer;
}
#pop-up {
	display: none;
}





.overlay {
	display: none;
}
#pop-up:checked + .overlay {
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.6);
}
.window {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 90vw;
	max-width: 360px;
    padding: 10px;
	height: 390px;
	background-color: #ffffff;
	border-radius: 4px;
	align-items: center;
	transform: translate(-50%, -50%);
}
.close {
	position: absolute;
	top: 5.5px;
	right: 5.5px;
	cursor:pointer;
}