@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Shippori Mincho', serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: center;
}
.main {
  background-color: #FFF;
}
@media(min-width: 426px){
  .main {
    background-image: linear-gradient( 92.7deg,  rgba(245,212,212,1) 8.5%, rgba(252,251,224,1) 90.2% );
  }
}
*, *:before, *:after {
  box-sizing: border-box;
}