@charset "utf-8";

body {
  background-color: #fff;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}


p {
  font-size: 50px;
  padding: 100px 0;
  line-height: 1.4;
  text-align: center;
}

/* レスポンシブ */
/*------ max-width:768px ------*/
@media screen and (max-width: 768px) {
  
  p {
    font-size: 40px;
  }

}
/*------ max-width:480px ------*/
@media screen and (max-width: 480px) {
  
  p {
    font-size: 20px;
  }

}
