/* Scss Document */
/* Scss Document */
.content {
  padding: 60px 0;
}
.content:nth-child(even) {
  background: #F3F3F3;
}
.content .mttl {
  margin-bottom: 1em;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
.content p {
  margin-bottom: 2em;
  font-size: 1.5rem;
  line-height: 2.0;
}
.content p:last-child {
  margin-bottom: 0;
}
.content ul {
  margin: 0 0 0 45px;
}
.content ul li {
  position: relative;
  margin: 0 0 .5em 0;
  padding: 0 0 0 1em;
  font-size: 1.5rem;
  line-height: 1.6;
}
.content ul li:before {
  position: absolute;
  top: .5em;
  left: 0;
  content: '';
  width: 6px;
  height: 6px;
  background: #000;
}

@media screen and (max-width: 640px) {
  .content {
    padding: 10vw 0;
  }
  .content .mttl {
    font-size: 5vw;
  }
  .content p {
    font-size: 3.3333333333vw;
	   font-weight: 400;
  }
  .content ul {
    margin: 0 0 0 5vw;
  }
  .content ul li {
    font-size: 3.3333333333vw;
	   font-weight: 400;
  }
  .content ul li:before {
    width: 1vw;
    height: 1vw;
  }
}
