	.pp-popup{
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 20px 0;
		background: rgba(188,176,125,.9);
		color: #fff;
	}
	.pp-popup .inner{
		width: calc(100% - 40px);
		max-width: 980px;
		margin: 0 auto;
		line-height: 1.6;
		font-size: 14px;
		position: relative;
	}
	.pp-popup .inner .read{
		margin-bottom: 3px;
	}
	.pp-popup .inner a{
		display:  inline-block;
		font-weight: bold;
		color: #fff;
	}
	.pp-popup .round_btn {
	  display: block;
	  position: absolute;
	  top:-30px;
	  right:0;
	  width: 20px;
	  height: 20px;
	  border: 2px solid #333; /* 枠の調整 */
	  border-radius: 50%;  /* 丸みの度合い */
	  background: #333; /* ボタンの背景色 */
	}
	 
	.pp-popup .round_btn::before, .round_btn::after {
	  content: "";
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  width: 2px; /* 棒の幅（太さ） */
	  height: 12px; /* 棒の高さ */
	  background: #fff; /* バツ印の色 */
	}
	 
	.pp-popup .round_btn::before {
	  transform: translate(-50%,-50%) rotate(45deg);
	}
	 
	.pp-popup .round_btn::after {
	  transform: translate(-50%,-50%) rotate(-45deg);
	}