#wv{
	position: relative;
	justify-content: space-between;
	overflow: hidden;
}
main.about{
	width: 700px;
	margin-right: 85px;
	z-index: 1;
	padding-bottom: 125px;
}
.about > a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 208px;
	height: 52px;
	border-radius: 52px;
	border: 1px solid var(--green);
}
.about p a{
	font-weight: 600;
	text-decoration: underline;

}
.about ul{
	padding: 0 108px;
	gap: 30px 18px;
}

.about .txt_box{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 552px;
	height: 168px;
	border-radius: 4px;
	border: 1px solid #262626;
	background: linear-gradient(130deg, #DADCDE -118.41%, #323335 -118.37%, rgba(90, 90, 90, 0.05) 30.93%, #171717 226.49%);
	backdrop-filter: blur(25px);
}
.star{
	position: absolute;
	right: -115px;
	top: 0;
	width: 1137px;
	height: 100%;
	background: url("https://imgdata.work/psp/assets/images/about/star.svg") no-repeat center / cover;
}

@media all and (max-width: 768px){
	main.about{
		width: calc(100% - 48px);
		margin: 0 auto;
		padding-bottom: 0;
	}
	.about .txt_box{
		width: 100%;
		height: max-content;
		padding: 20px 0;
	}
	.about .txt_box br{display: none;}
	.about .scr_wrap{
		width: 100%;
		overflow-x: scroll;
		touch-action: pan-x;
	}
	.about ul{
		padding: 0;
		width: max-content;
	}
	.about > a{
		margin-bottom: 65px;
	}
	.star{display: none;}
}