
/* --------------------------------------------------------------------------------------------- */
/* modal */
/* --------------------------------------------------------------------------------------------- */

.open-modal { cursor: pointer; background: #fff; margin-bottom: 20px; }
.modal {
	pointer-events: none;
	opacity: 0;
	transition: .25s;
	
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
	padding-top: 60px; /* 上部のスペースを追加 */
}

/* モーダルコンテンツのスタイル */
.modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 1100px;
	text-align: center;
}


/* クローズボタンのスタイル */
.imgClose {
	transition: .25s;
	
	position: absolute;
	right: 35px;
	top: 15px;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	background: none;
	border: none;
	cursor: pointer;
}

.imgClose:hover,
.imgClose:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
	}


@media (max-width:768px) {
	.modal-content { width: 95%; }
}
