/* ========================================
   Sapporo LP - Style Sheet
   ======================================== */

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

/* 背景固定 */
body {
  background-image: url(img/bg-dot.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
}

/* コンテンツラッパー */
.lp-wrapper {
  max-width: 992px;
  margin: 0 auto;
}

/* コンテンツエリア */
.lp-inner {
  background-color: #ffffff;
  border-left: 1px solid #D30037;
  border-right: 1px solid #D30037;
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.2);
}

/* 全画像をブロック・幅100% */
.lp-inner img {
  width: 100%;
  display: block;
  height: auto;
}

/* リンク画像 */
.lp-inner a {
  display: block;
  transition: 0.3s ease;
}

.lp-inner a:hover {
  opacity: 0.8;
  transform: translateY(2px);
}

.lp-inner a img {
  width: 100%;
}

/* ダウンロードボタン */
.lp-inner>a:nth-of-type(1) img {
  max-width: 508px;
  width: 80%;
  margin: 0 auto;
}

/* CTAボタンエリア（横並び） */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 2vw;
}

.cta-buttons a {
  display: block;
  flex: 0 0 auto;
}

.cta-buttons a:nth-child(1) {
  /* btn-cv-left: 406px */
  max-width: 406px;
  width: 65%;
}

.cta-buttons a:nth-child(1) img {
  width: 100%;
  display: block;
  height: auto;
}

.cta-buttons a:nth-child(2) {
  /* btn-cv-right: 384px */
  max-width: 384px;
  width: 65%;
}

.cta-buttons a:nth-child(2) img {
  width: 100%;
  display: block;
  height: auto;
}

/* ========================================
   レスポンシブ
   ======================================== */

/* 画面幅1120px以下 */
@media (max-width: 1080px) {
  .lp-wrapper {
    padding: 0 5vw;
  }
}

/* スマートフォン */
@media (max-width: 768px) {

  /* ボタン間隔をSP用に調整 */
  .cta-buttons {
    gap: 20px;
  }

  /* 必要に応じてSP用の調整 */
  .lp-wrapper {
    padding: 0 5vw;
  }
}

/* 超小型画面 */
@media (max-width: 480px) {
  .cta-buttons {
    gap: 16px;
  }
}