#guide {
  display: none;
	position: relative;
	z-index: 6;
}

#guide .guide-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
	
}

#guide.show-guide {
  display: block;
}


#guide .guide-container {
  background: #fff;
  width: 90%;
  max-height: 85vh;
	max-width: 700px;
  padding: 30px;
  height: 90%;
  overflow-y: auto; 
  overscroll-behavior: contain; 
  z-index: 9999;
  animation: zoomIn 0.3s ease;
	position: relative;

  -ms-overflow-style: none;
  scrollbar-width: none;
border-radius: 8px;
}
#guide .guide-container::-webkit-scrollbar {
  display: none;
}




#guide .guide-content {
}

#guide .guide-close {
    z-index: 999;
    cursor: pointer;
	position: absolute;
    right: 12px;
    top: 10px;
}

@keyframes zoomIn {
    from {
    transform: scale(0.5);
    opacity: 0;
    }
    to {
    transform: scale(1);
    opacity: 1;
    }
}

.guide-content-box{padding: 25px 0;}
.guide-content-box h2{
	font-size: 1.6rem;
	padding:0 0 25px;
	margin: 0;
}
.guide-content-box p{
	padding-bottom: 20px;
	font-size: 0.94rem;
}
.guide-content-box img{
	 max-width: 75%;
  height: auto;
  display: block;
padding-bottom: 20px;	
}


/*==============================================
  SP
==================================================*/
@media screen and (max-width: 767px) {
	#guide .guide-close{position: absolute; right: 7px; top: 7px;}
	#guide .guide-container{padding: 5% 4% 5%;}
.guide-content-box h2{
	font-size: 1.45rem;
	padding:0 0 18px;
	margin: 0;
}
.guide-content-box p, .guide-content-box img{
	padding-bottom: 12px;
}
.guide-content-box img{max-width: 100%;}	
}
