@charset "UTF-8";
.c-figure {
}
.c-figure__img {
	width: 100%;
	height: auto;
}
.c-figure__img-s {
	width: 50%;
	height: auto;
	margin: auto;
}
.c-figure__img-s70 {
	width: 70%;
	height: auto;
	margin: auto;
}
.c-figure__caption {
	font-size: .8rem;
	text-align: center;
}

/* ポップアップの背景 */
.popup {
	display: none;  /* 初期状態は非表示 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	justify-content: center;
	align-items: center;
	z-index: 1000;
  }

  /* ポップアップ内のコンテンツ */
  .popup-content {
	position: relative;
	width: 80%;
	max-width: 600px;
	background: white;
	padding: 20px;
  }

  /* 閉じるボタン */
  .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #ff0000;
	color: white;
	border: none;
	font-size: 20px;
	cursor: pointer;
  }

  /* ビデオのスタイル */
  video {
	width: 100%;
	height: auto;
  }

  .c-video__btn{
	font-weight: bold;
	text-decoration: underline;
	color: var(--deep-purple-900);
  }
