.terms{
	margin-top: 30px;
}
.terms__box{
	position: relative;
}
.terms__box {
  position: relative;
}
.terms__box::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: calc(100% + 40px);
  background: rgba(255,255,255,0.7);
  z-index: 10;
}

.terms__box::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 30px);
  background: rgba(255,255,255,0.7);
  z-index: 10;
}

.terms__box::before {
  content: "応募は終了しました";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  z-index: 11;
  font-size: 2rem;
  font-weight: 900;
  color: red;
  border: 4px solid red;
  border-radius: 10px;
  padding: 10px 20px;
  letter-spacing: 3px;
  font-family: "Arial Black", "Impact", sans-serif;
  background: rgba(255,255,255,0.6);
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

@media (max-width: 480px){
	.terms__box::after {
		top: -20px;
		height: calc(100% + 20px); 
	}
}
@media (max-width: 480px){
	.terms__box::before{
		padding: 10px;
		font-size: 1.8rem;
	}
}