@charset "utf-8";

.popup_wrap input{
display:none;
}


.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.popup_content {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 900px;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}

.close_btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
}

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.open_btn {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*display: flex;*/
  justify-content: right;
  align-items: right;
  width: 200px;
  height: 30px;
  padding-top: 20px;
  color: #347EB0;
  text-decoration: underline;
  cursor: pointer;
  transition: .3s ease;

}
.open_btn:hover{
	opacity: 0.5;
}


/*--　タイトルタグ　-*/	
.popup_content h2{
/*	border-left: #d34376 3px solid;
	border-bottom: dotted 2px #666666;*/
	padding-left: 20px;
	padding-bottom: 5px;
	font-size:2.0rem;
	margin-top: 40px;	
	margin-bottom: 30px;
		  }


.popup_content div{
	margin: 0 auto 40px;
	overflow: hidden;

}


.popup_content p img{
	width: 25%;
	float: left;
}



.popup_content .cap{
	clear: both;
	font-size: 0.8em;
	padding-left: 0;
	text-indent: 0;
}



/*----------------------------------------------------------*/
/* メディアクエリ SP */
/*----------------------------------------------------------*/
@media screen and (max-width:769px),print {
	
	
.popup_content {
  width: 95%;
  padding: 40px 10px 15px;
}
	
	
.popup_content div{
	margin: 0 auto 20px;
	overflow: hidden;
}
	
/*--　タイトルタグ　-*/	
.popup_content h2{
/*	border-left: #d34376 3px solid;
	border-bottom: dotted 2px #666666;*/
	padding-left: 10px;
	padding-bottom: 5px;
	font-size:1.4rem;
	margin-top: 30px;	
	margin-bottom: 0px;
		  }
.popup_content h3{
/*	border-left: #d34376 3px solid;
	border-bottom: dotted 2px #666666;*/
/*	padding-left: 10px;
	padding-bottom: 5px;*/
	text-align: center;
	font-size:1.4rem;
	margin-top: 40px;	
	margin-bottom: 20px;
		  }	
	
.popup_content p img{
	width: 45%;
	float: left;
	margin-left: 10px;
}	
	
.popup_content .cap{
	clear: both;
	font-size: 0.6em;
	line-height:1.2;
}
	
	
}	
	
	