@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  background-color: #fff;
  color: #000;
  line-height: 1.5;
}

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

.lp-wrapper {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-stack {
  position: relative;
}

.overlay-knife {
  position: absolute;
  top: 4%;
  left: 3%;
  width: 28.27%;
  height: auto;
  transform: translate(-50%, 100px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  pointer-events: none;
}

.cta-box {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

.cta-bg {
  width: 100%;
  height: auto;
  display: block;
}

.cta-buttons {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.cta-buttons a img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.shine-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.shine-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3.0s linear infinite;
  pointer-events: none;
}

.shine-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
}

.shine-btn:hover::after {
  animation: shineOnce 3.0s ease;
  opacity: 1;
}


@keyframes shine {
  0% {
    left: -75%;
    opacity: 0;
  }
  10% {
    left: -75%;
    opacity: 1;
  }
  30% {
    left: 125%;
    opacity: 1;
  }
  31% {
    opacity: 0;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}
@keyframes shineOnce {
  0% {
    left: -75%;
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  30% {
    left: 125%;
    opacity: 1;
  }
  31% {
    opacity: 0;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}

.video-stack {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

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

.overlay-video {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 65%;
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  pointer-events: none;
}
.gif-stack {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

.overlay-gif {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 94%;
  transform: translateX(-50%);
  pointer-events: none;
}
.gif-kabocha {
  top: 5%;
  width: 94%;
}





.site-footer {
  background-color: #8b6b36;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 25px;
}

.site-footer .footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 10px;
}

.site-footer .footer-links li {
  padding: 0 8px;
  font-size: 25px;
}

.site-footer .footer-links li:nth-child(n+2) {
  margin-left: 11px;
  padding-left: 11px;
  border-left: 1px solid #ffffff;
}

.site-footer .footer-links a {
  color: #fff;
  text-decoration: none;
}

.site-footer .footer-links a:hover {
  text-decoration: underline;
}

.site-footer .footer-copy {
  font-size: 25px;
}


@media screen and (max-width: 768px) {
  .site-footer .footer-links li {
	padding: 0;
  }
  .site-footer .footer-links li:nth-child(n+2) {
	margin-left: 1.47vw;
	padding-left: 1.47vw;
  }
  .site-footer {
    padding-bottom: 4.00vw;
    font-size: 3.33vw;
  }

  .site-footer .footer-copy {
    font-size: 3.33vw;
  }

  .site-footer .footer-links li {
    font-size: 3.33vw;
  }
}

#fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background-color: rgba(255, 255, 255, 0.5);
}

#fixed-banner.active {
  opacity: 1;
  visibility: visible;
}

.button-section {
  padding: 1% 0 0;
  max-width: 750px;
  margin: 0 auto;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1vw;
  padding: 0;
}

.button-wrapper a {
  flex: 1 1 auto;
  max-width: calc((100% - 2vw - 1vw * 2) / 3); /* 余白を含めた3分割 */
}

.button-wrapper a img {
  width: 100%;
  height: auto;
  display: block;
}

.coupon-box {
  display: flex;
  align-items: center;
  font-family: sans-serif;
  max-width: fit-content;
  gap: 0;
}

.coupon-text {
  color: #555;
  border: 2px solid #f7a91b;
  border-radius: 30px;
  padding: 10px 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(0.8em, 1.5em, 22px);

}

.coupon-code {
  font-weight: bold;
}

.copy-button {
  background-color: #f7a91b;
  color: white;
  border-radius: 30px;
  padding: 6px 8px;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  border: 2px solid #f7a91b;
  cursor: pointer;
  white-space: nowrap;
}

.coupon-note {
    color: #555;
    margin: 0.2em 0 0 0;
    font-size: 1.2em;
    padding: 0;
    line-height: 0;
}
@media screen and (max-width: 768px) {
	.bottom9 {
	    bottom: 9%;
	}
	.coupon-text {
	  padding: 10px 2px;
	  font-size: clamp(0.8em, 1.5em, 12px);

	}

	.copy-button {
	  font-size: clamp(0.8em, 1.5em, 12px);
	}

	.coupon-note {
	    font-size: 1.0em;
	}
}