@charset "UTF-8";

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* LPページ全体のスタイル */
.lp-page {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lp-wrapper {
  min-height: 100vh;
  background-image: url("../img/pc_bg.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* padding: 20px 0 0; */
}

.lp-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* セクション共通スタイル */
.lp-section {
  width: 100%;
  display: block;
}

.lp-image {
  width: 100%;
  height: auto;
  display: block;
}

/* 07セクションの特殊スタイル */
.lp-section-07 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.lp-section-07__bg {
  position: relative;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.lp-section-07__bg-image {
  width: 100%;
  height: auto;
  display: block;
}

.lp-section-07__scroll {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
}

.lp-section-07__scroll.swiper {
  cursor: grab;
}

.lp-section-07__scroll.swiper .swiper-wrapper {
  display: flex;
}

.lp-section-07__scroll.swiper .swiper-slide {
  width: auto;
  height: 100%;
  flex-shrink: 0;
}

.lp-section-07__scroll.swiper:active {
  cursor: grabbing;
}

.lp-section-07__scroll-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* CTAセクション */
.lp-cta {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  z-index: 100;
  padding-inline: 11px;
  padding-bottom: 15px;
  max-width: 580px;
}

.lp-cta__link {
  display: block;
  width: 100%;
}

.lp-cta .lp-image {
  width: 100%;
  height: auto;
}

/* フッター */
.lp-footer {
  max-width: 600px;
  margin: 0 auto;
  background-color: #3b342e;
  color: #fff;
  padding-top: 20px;
  margin-top: 0;
  padding-bottom: clamp(100px, 100px + (50) * (100vw - 375px) / (600 - 375), 130px);
}

.lp-footer__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lp-footer__copyright {
  font-size: 12px;
  line-height: 1.6;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  white-space: nowrap;
}

.lp-footer__privacy {
  font-size: 12px;
  white-space: nowrap;
  line-height: 1.6;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.lp-footer__privacy-link {
  color: #fff;
  text-decoration: underline;
}

.lp-footer__privacy-link:hover {
  opacity: 0.7;
}

/* スマートフォン向けの調整 */
@media screen and (max-width: 600px) {
  .lp-wrapper {
    padding: 0;
  }

  .lp-container {
    max-width: 100%;
    box-shadow: none;
  }
}
