*, *::before, *::after {
  box-sizing: border-box; }

html, body, .container {
  width: 100%; }

body {
  letter-spacing: 1px;
  font-size: 100%; }

section {
  margin-bottom: 100px; }
  section > div {
    margin-bottom: 40px; }

img {
  display: block;
  max-width: 100%;
  height: auto; }

figure {
  display: block; }

.container {
  padding: 32px;
  background: linear-gradient(to right, #FFFFFF, #ECE9E6); }

.contents {
  margin: 0 auto;
  max-width: 960px; }

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 20px;
  font-weight: bold; }

h1 {
  margin-bottom: 100px;
  text-align: center;
  font-size: 30px; }

h2 {
  font-size: 24px; }

.info {
  margin-bottom: 50px; }
  .info ul {
    margin-bottom: 30px;
    padding-left: 40px;
    list-style: disc; }
  .info li {
    line-height: 1.5; }
  .info p {
    margin-bottom: 12px; }
  .info a {
    text-decoration: none;
    color: #00BAFF; }
    .info a:hover {
      text-decoration: underline; }

.lazy-image {
  text-align: center; }
  .lazy-image img {
    opacity: 0;
    transition: opacity 1s linear; }
  .lazy-image .small {
    width: 100%;
    height: 0;
    background-size: cover;
    background-position: center center; }
    .lazy-image .small.show img {
      opacity: 1; }
  .lazy-image.w16-9 .small {
    padding-bottom: 56.25%; }
  .lazy-image.w4-3 .small {
    padding-bottom: 75%; }
