@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    'Quicksand', '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro',
    'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',
    sans-serif;
  line-height: 1.5;
  background: #fff;
}

section,
div {
  margin: 0 auto;
  box-sizing: border-box;
}

section.main-content {
  width: 100%;
}

.wrapper {
  width: 700px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}

.wrapper img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.shadow {
  background: #fff;
  display: block;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 979px) {
  .wrapper {
    width: 100%;
  }
}

/* cta */
.outer {
  position: relative;
}

.c-button1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 7%;
  width: 95%;
  margin: 0 auto;
  z-index: 10;
}

.c-button1 img {
  width: 100%;
  display: block;
}

.c-button2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  width: 95%;
  margin: 0 auto;
  z-index: 10;
}

.c-button2 img {
  width: 100%;
  display: block;
}

.pulse {
  animation: pulse 1.8s infinite ease-in-out;
  transform-origin: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

.footer {
  text-align: center;
  font-family: sans-serif;
  background: #fff;
}

.footer-logo img {
  width: 160px;
  max-width: 80%;
  margin-bottom: 60px;
}

.copyright {
  font-size: 10px;
  color: #666;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.footer-links a {
  color: #333;
  text-decoration: underline;
  font-size: 12px;
}

.footer-links a:hover {
  opacity: 0.7;
}
