.privacy-policy {
  max-width: 300px;
  margin: 50px auto;
  height: 300px;
  overflow: scroll;
  padding: 25px;
  border: 1px solid black;
  background-color: #FFFFFF;
  line-height: 1.5;
  &__item {
    p {
      margin-bottom: 25px;
    }
  }
}


*
{
margin: 10px 0;
box-sizing: border-box;
}

body {
background: honeydew;
}

.container {
width: 1000px;
background: honeydew;
}

.job {
width: 80vw;
height: calc(75vh - 50px);
padding: 0px;
}

.job div {
color: #3CB371;
background: white;
font-size: 16px;
text-align: left;
width: calc(100%/4 - 20px);
height: calc(100% - 20px);
float: left;
margin: 5px;
padding: 15px;
border: 4px solid #3CB371;
border-radius: 20px;
} 


.note {
font-size: 14px;
color: #3CB371;
padding: 15px;
text-align: center;
}



footer p {
  font-size: 12pt;
font-family: "ヒラギノ丸ゴ ProN";
  color: #3CB371;
  max-width: 800px;
  padding: 0;
  text-align: center;
  margin: 0 auto;
  font-weight: normal;
}


@media only screen and (max-width: 1000px) {
.container {
width: 100vw;
}
.job div {
width: calc(50% - 20px);
height: calc(50% - 20px);
}
}

@media only screen and (max-width: 768px) {
.job div {
width: calc(115% - 10px);
height: calc(55% - 10px);
aligin: center;
}
}