@charset "UTF-8";

/* ここまでデモページ用のコード */

.modal-content {
	width: 80% ;
	margin: 0;
	padding: 10px 20px ;
	border: 2px solid #aaa ;
	background: #fff ;
	position: fixed ;
	display: none ;
	z-index: 2 ;
}

#modal-overlay {
	z-index: 1 ;
	display: none ;
	position: fixed ;
	top: 0 ;
	left: 0 ;
	width: 100% ;
	height: 120% ;
	background-color: rgba( 0,0,0, 0.75 ) ;
}

.button-link {
	color: #00f ;
	text-decoration: underline ;
}

.button-link:hover {
	cursor: pointer ;
	color: #f00 ;
}

.modal-content-inner {
	display: flex;
	margin-top: 10px;
}
	.inner-img {
		width: 40%;
		margin-top: auto;
		margin-bottom: auto;
	}
		.ad_img img{
			width: 100%;
		}
	.inner-text {
		width: 60%;
		margin-top: auto;
		margin-bottom: auto;
		margin-left: 10px;
	}
@media screen and (max-width: 660px){
  .modal-content-inner {
		display: block;
  }
	.inner-img {
		width: 100%;
		margin-top: auto;
		margin-bottom: auto;
	}
	.inner-text {
		width: 100%;
		margin-top: 10px;
		margin-bottom: auto;
		margin-left: 0px;
	}
}
