#c-modal_bg {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.6);
}
#c-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 9999;
	width: 98%;
	max-width: 800px;
	height: auto;
	text-align: center;
	transform: translate(-50%, -50%);
	background: #ffffff;
}
#c-modal_close {
	/* padding: 5px; */
	cursor: pointer;
	float: right;
}

.Rappli-container {
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	padding: 10px;
}

.Rappli-item {
	display:flex;
	box-sizing: border-box;
	width: 220px;
	margin: 10px;
	padding: 10px;
}

@media screen and (min-width: 800px) {
	.smp{display:none;}
}

@media screen and (max-width: 800px) {
	.pc{display:none;}
}


/*　閉じるボタンのデザイン　*/
.square_btn {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  border: 2px solid #333; /* 枠の調整 */
  background: #fff; /* ボタンの背景色 */
}
 
.square_btn::before, .square_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 25px; /* 棒の高さ */
  background: #333; /* バツ印の色 */
}
 
.square_btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.square_btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}