@charset "UTF-8";

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  background: #fff;
}

img {
  display: block;
}

.lp {
  width: 100%;
  overflow: hidden;
}

.pc-area {
  display: block;
}

.sp-area {
  display: none;
}

.pc-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pc-img-wrap > img {
  width: 2000px;
  max-width: none;
  height: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

.cta-wrap,
.sp-cta-wrap {
  position: relative;
}

.cta-btn {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  display: block;
}

/* PC：690px固定 */
.pc-area .cta-btn {
  width: 690px;
}

/* SP：750に対して690の比率 = 92% */
.sp-area .cta-btn {
  width: 92%;
}

.cta-btn:hover {
  opacity: 0.85;
}

.cta-btn img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .pc-area {
    display: none;
  }

  .sp-area {
    display: block;
  }

  .sp-area > img,
  .sp-cta-wrap > img {
    width: 100%;
    height: auto;
  }
  .cta-btn {
    bottom: 5%;
  }
}

.footer {
  padding: 40px 20px;
  background: #1a1a1a;
  border-top: 1px solid #eee;
  text-align: center;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

@media screen and (min-width: 769px) {
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
  }

  .footer-links li {
    margin-bottom: 0;
  }
}