@charset "UTF-8";
:root {
  --lp-color-purple: #d8c9f0;
  --lp-color-purple-soft: #ede8f7;
  --lp-color-purple-dark: #b8a5db;
  --lp-color-beige: #efe6dc;
  --lp-color-gray-box: #f3f2f8;
  --lp-color-text: #3d3d3d;
  --lp-color-text-muted: #5c5c5c;
  --lp-color-footer: #1f1a17;
  --lp-color-footer-text: rgba(255, 255, 255, 0.85);
  --lp-color-footer-muted: rgba(255, 255, 255, 0.55);
  --lp-color-white: #ffffff;
  --lp-max-width: 1120px;
  --lp-radius: 12px;
  --lp-radius-pill: 999px;
  --lp-font: system-ui, -apple-system, "Segoe UI", sans-serif;
  --lp-space-section: 60px;
  --lp-space-block: 30px;
}
@media (max-width: 991px) {
  :root {
    --lp-space-section: 48px;
    --lp-space-block: 23px;
  }
}
@media (max-width: 575px) {
  :root {
    --lp-space-block: 20px;
  }
}

.lp-page *,
.lp-page *::before,
.lp-page *::after {
  box-sizing: border-box;
}

.lp-page {
  font-family: var(--lp-font);
  color: var(--lp-color-text);
  line-height: 1.6;
  overflow-x: hidden;
}
@supports (overflow: clip) {
  .lp-page {
    overflow-x: clip;
  }
}

.lp-page > section {
  overflow: visible;
}

.lp-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lp-section {
  padding: var(--lp-space-section) 1rem;
}

.lp-container {
  width: 100%;
  max-width: var(--lp-max-width);
  margin-inline: auto;
}

.lp-container--narrow {
  max-width: 720px;
}

.lp-eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-color-text-muted);
  margin: 0 0 0.5rem;
}

.lp-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 var(--lp-space-block);
}
@media (max-width: 991px) {
  .lp-heading {
    font-size: 31px;
  }
}
@media (max-width: 575px) {
  .lp-heading {
    font-size: 24px;
  }
}

.lp-heading--center {
  text-align: center;
}

.lp-heading--inverse {
  color: var(--lp-color-white);
}

.lp-lead {
  font-size: 1rem;
  color: var(--lp-color-text-muted);
  margin: 0 0 var(--lp-space-block);
}

.lp-lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lp-note {
  font-size: 0.8125rem;
  color: var(--lp-color-text-muted);
  margin: 1rem 0 0;
}

.lp-lead-last {
  margin-bottom: 0;
}

.lp-grid-2 {
  display: grid;
  gap: 50px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .lp-grid-2 {
    gap: 38px;
  }
}
@media (max-width: 575px) {
  .lp-grid-2 {
    gap: var(--lp-space-block);
  }
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--lp-radius-pill);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.lp-btn:hover {
  opacity: 0.92;
}

.lp-btn:focus-visible {
  outline: 2px solid var(--lp-color-purple-dark);
  outline-offset: 3px;
}

.lp-btn--primary {
  background: var(--lp-color-purple-dark);
  color: var(--lp-color-white);
  box-shadow: 0 4px 14px rgba(90, 60, 140, 0.25);
}

.lp-btn--block {
  width: 100%;
  max-width: 320px;
}

.lp-btn--lg {
  min-height: 3.25rem;
  padding-inline: 2rem;
}

.lp-btn--gradient {
  color: var(--lp-color-white);
  background: linear-gradient(110deg, #e8b4cb, #d8c9f0 45%, #9dd5f5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.lp-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 575px) {
  .lp-btn-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 575px) {
  .lp-btn-row .lp-btn {
    max-width: none;
    width: 100%;
  }
}

.lp-gift__inner .lp-gift__grid,
.lp-gift .lp-grid-2.lp-gift__grid {
  gap: 50px;
}
@media (max-width: 991px) {
  .lp-gift__inner .lp-gift__grid,
  .lp-gift .lp-grid-2.lp-gift__grid {
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .lp-gift__inner .lp-gift__grid,
  .lp-gift .lp-grid-2.lp-gift__grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hide-sp {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hide-pc {
    display: none !important;
  }
}

.lp-scroll-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.lp-scroll-reveal--inview {
  opacity: 1;
  transform: translateY(0);
}

.lp-brand-intro__visual.lp-scroll-reveal {
  --reveal-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .lp-scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
.paw-group {
  position: relative;
  pointer-events: none;
}

.paw {
  position: absolute;
  width: var(--paw-size, 40px);
  height: auto;
  opacity: 0;
  transform: scale(0.5) rotate(var(--paw-rot, 0deg));
  transform-origin: center center;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 1px 2px rgba(60, 40, 20, 0.18));
  will-change: transform, opacity;
}

.paw-group.is-visible .paw {
  animation: paw-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--paw-i, 0) * 0.3s);
}

@media (prefers-reduced-motion: reduce) {
  .paw {
    opacity: 0.55;
    transform: scale(1) rotate(var(--paw-rot, 0deg));
    animation: none !important;
  }
}
@keyframes paw-pop {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(var(--paw-rot, 0deg));
  }
  60% {
    opacity: 1;
    transform: scale(1.08) rotate(var(--paw-rot, 0deg));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(var(--paw-rot, 0deg));
  }
}
@keyframes paw-pop-lavande {
  0% {
    opacity: 0;
    transform: scale(0.55) rotate(var(--paw-rot, -140deg));
  }
  65% {
    opacity: 0.55;
    transform: scale(1.06) rotate(var(--paw-rot, -140deg));
  }
  100% {
    opacity: 0.5;
    transform: scale(1) rotate(var(--paw-rot, -140deg));
  }
}
@keyframes paw-pop-lavande-flipx {
  0% {
    opacity: 0;
    transform: scale(-0.55, 0.55) rotate(var(--paw-rot, -140deg));
  }
  65% {
    opacity: 0.55;
    transform: scale(-1.06, 1.06) rotate(var(--paw-rot, -140deg));
  }
  100% {
    opacity: 0.5;
    transform: scale(-1, 1) rotate(var(--paw-rot, -140deg));
  }
}
@media (prefers-reduced-motion: reduce) {
  .po-product-01__paws .paw,
  .po-product-02__paws .paw,
  .lp-gift__paws .paw {
    opacity: 0.5;
    animation: none !important;
    transform: scale(1) rotate(var(--paw-rot, 0deg));
  }
  .po-product-02__paws--tl .paw {
    transform: scale(-1, 1) rotate(var(--paw-rot, 0deg));
  }
}
.lp-fv {
  --lp-fv-purple: #8967b4;
  --lp-fv-brown: #86654a;
  --lp-fv-text: #070403;
  --lp-fv-shadow: rgba(175, 156, 137, 0.6);
  --lp-fv-side-pad: 63px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  isolation: isolate;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  color: var(--lp-fv-text);
}
@media (max-width: 991px) {
  .lp-fv {
    --lp-fv-side-pad: 49px;
  }
}
@media (max-width: 575px) {
  .lp-fv {
    --lp-fv-side-pad: 16px;
    min-height: 0;
  }
}

.lp-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #e6d2b6;
  background-image: url("../images/bg_fv_pc.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media (max-width: 575px) {
  .lp-fv__bg {
    background-color: #f1e9e3;
    background-image: url("../images/bg_fv_sp.png");
    background-position: center top;
    background-size: cover;
  }
}

.lp-fv__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 620px;
}
@media (max-width: 575px) {
  .lp-fv__hero {
    min-height: 565px;
  }
}

.lp-fv__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 24px var(--lp-fv-side-pad);
}
@media (max-width: 991px) {
  .lp-fv__header {
    padding: 19px var(--lp-fv-side-pad);
  }
}
@media (max-width: 575px) {
  .lp-fv__header {
    padding: 0;
    min-height: 44px;
  }
}

.lp-fv__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}
@media (max-width: 575px) {
  .lp-fv__logo {
    position: absolute;
    left: 16px;
    top: 20px;
    z-index: 1;
  }
}

.lp-fv__logo-img {
  display: block;
  width: 179px;
  height: auto;
}
@media (max-width: 991px) {
  .lp-fv__logo-img {
    width: 138px;
  }
}
@media (max-width: 575px) {
  .lp-fv__logo-img {
    width: 139px;
  }
}

.lp-fv__header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-fv-purple);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 0.625rem 22px;
  border-radius: 999px;
  border: 1px solid #fff;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 15px var(--lp-fv-shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (max-width: 991px) {
  .lp-fv__header-cta {
    padding: 0.625rem 20px;
  }
}
@media (max-width: 575px) {
  .lp-fv__header-cta {
    position: absolute;
    top: 12px;
    right: 16px;
    left: auto;
    padding: 6px 16px;
    font-size: 14px;
    box-shadow: 0 0 5px rgba(175, 156, 137, 0.8);
  }
}

.lp-fv__header-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.lp-fv__container {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 109px var(--lp-fv-side-pad) 50px;
}
@media (max-width: 991px) {
  .lp-fv__container {
    padding: 88px var(--lp-fv-side-pad) 40px;
  }
}
@media (max-width: 575px) {
  .lp-fv__container {
    justify-content: flex-start;
    align-items: center;
    padding: 67px 24px 110px;
  }
}

.lp-fv__inner {
  width: 100%;
}
@media (max-width: 575px) {
  .lp-fv__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 327px;
    margin-inline: auto;
    text-align: center;
  }
}

.lp-fv__ribbon-img {
  display: block;
  width: 346px;
  height: auto;
  margin: 0 0 25px 28px;
}
@media (max-width: 991px) {
  .lp-fv__ribbon-img {
    margin: 0 0 19px 28px;
  }
}
@media (max-width: 575px) {
  .lp-fv__ribbon-img {
    width: 192px;
    margin: 0;
  }
}

.lp-fv__title {
  font-family: "YuMincho", "Hiragino Mincho ProN", "游明朝", serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--lp-fv-brown);
  margin: 0 0 25px;
}
@media (max-width: 991px) {
  .lp-fv__title {
    font-size: 34px;
    margin: 0 0 19px;
  }
}
@media (max-width: 575px) {
  .lp-fv__title {
    font-size: 33px;
    letter-spacing: -0.03em;
    margin: 0;
  }
}

.lp-fv__subtitle {
  font-family: "YuMincho", "Hiragino Mincho ProN", "游明朝", serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.4;
  color: var(--lp-fv-text);
  margin: 0 0 18px;
}
@media (max-width: 991px) {
  .lp-fv__subtitle {
    font-size: 22px;
    margin: 0 0 14px;
  }
}
@media (max-width: 575px) {
  .lp-fv__subtitle {
    font-size: 20px;
    margin: 0;
  }
}

.lp-fv__lead {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  color: var(--lp-fv-text);
  margin: 0 0 26px;
}
@media (max-width: 991px) {
  .lp-fv__lead {
    margin: 0 0 24px;
  }
}
@media (max-width: 575px) {
  .lp-fv__lead {
    font-size: 14px;
    margin: 0;
  }
}

.lp-fv__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  background: var(--lp-fv-purple);
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 16px 35px;
  border-radius: 999px;
  border: 2px solid #fff;
  text-decoration: none;
  box-shadow: 0 0 15px var(--lp-fv-shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (max-width: 991px) {
  .lp-fv__cta {
    padding: 14px 28px;
  }
}
@media (max-width: 575px) {
  .lp-fv__cta {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 5;
    gap: 10px;
    width: auto;
    max-width: calc(100% - 32px);
    padding: 12px 20px;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(175, 156, 137, 0.6);
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

.lp-fv__cta:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}
@media (max-width: 575px) {
  .lp-fv__cta:hover {
    transform: translateX(-50%) translateY(-1px);
  }
}

.lp-fv__cta-icon {
  flex-shrink: 0;
  width: 25px;
  height: auto;
  display: block;
}
@media (max-width: 575px) {
  .lp-fv__cta-icon {
    width: 18px;
  }
}

.lp-fv__foot {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 100%;
  line-height: 0;
  margin-bottom: -2px;
}

.lp-fv__foot-gap {
  height: 40px;
}
@media (max-width: 991px) {
  .lp-fv__foot-gap {
    height: 31px;
  }
}
@media (max-width: 575px) {
  .lp-fv__foot-gap {
    height: 0;
  }
}

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

.lp-fv__paws.paw-group {
  position: absolute;
  inset: 0;
  z-index: 1;
}

@media (max-width: 575px) {
  .lp-fv__paws .paw {
    --paw-size: 18px !important;
  }
  /* 出現順: 右上 → 左下（--paw-i 昇順） */
  .lp-fv__paws .paw:nth-child(1) {
    top: 48% !important;
    left: 95% !important;
    --paw-i: 0 !important;
    --paw-rot: -168deg !important;
  }
  .lp-fv__paws .paw:nth-child(2) {
    top: 58% !important;
    left: 90% !important;
    --paw-i: 1 !important;
    --paw-rot: -123deg !important;
  }
  .lp-fv__paws .paw:nth-child(3) {
    top: 63% !important;
    left: 83% !important;
    --paw-i: 2 !important;
    --paw-rot: -140deg !important;
  }
  .lp-fv__paws .paw:nth-child(4) {
    top: 70% !important;
    left: 79% !important;
    --paw-i: 3 !important;
    --paw-rot: -162deg !important;
  }
  .lp-fv__paws .paw:nth-child(5) {
    top: 72% !important;
    left: 70% !important;
    --paw-i: 4 !important;
    --paw-rot: -124deg !important;
  }
  .lp-fv__paws .paw:nth-child(6) {
    top: 71% !important;
    right: auto !important;
    left: 13% !important;
    --paw-i: 5 !important;
    --paw-rot: -172deg !important;
  }
  .lp-fv__paws .paw:nth-child(7) {
    top: 72% !important;
    right: auto !important;
    left: 7% !important;
    --paw-i: 6 !important;
    --paw-rot: -145deg !important;
  }
  .lp-fv__paws .paw:nth-child(8) {
    top: 79% !important;
    right: auto !important;
    left: 7% !important;
    --paw-i: 7 !important;
    --paw-rot: -167deg !important;
  }
  .lp-fv__paws .paw:nth-child(9) {
    top: 80% !important;
    right: auto !important;
    left: -4% !important;
    --paw-i: 8 !important;
    --paw-rot: -128deg !important;
  }
}
.lp-hero {
  background: var(--lp-color-purple);
}

.lp-hero__inner.lp-grid-2 {
  align-items: center;
}

.lp-hero__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 var(--lp-space-block);
}
@media (max-width: 991px) {
  .lp-hero__title {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .lp-hero__title {
    font-size: 30px;
  }
}

.lp-hero__actions {
  margin-top: 0.5rem;
}

.lp-hero__media {
  border-radius: var(--lp-radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--lp-color-purple-soft);
}
@media (max-width: 575px) {
  .lp-hero__media {
    max-width: 320px;
    margin-inline: auto;
  }
}

.lp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 575px) {
  .lp-hero .lp-grid-2 {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .lp-hero__actions .lp-btn {
    width: 100%;
    max-width: 320px;
  }
}

.lp-underfv {
  position: relative;
  --lp-underfv-brown: #86654a;
  --lp-underfv-text: #070403;
  background: linear-gradient(180deg, #e1cabb 0%, #fff1e7 100%);
  padding: 48px 1rem calc(var(--lp-space-section) + 6.5rem);
  overflow: hidden;
}
@media (max-width: 991px) {
  .lp-underfv {
    padding: 38px 1rem calc(var(--lp-space-section) + 2.5rem);
  }
}
@media (max-width: 575px) {
  .lp-underfv {
    padding: 20px 1rem calc(var(--lp-space-section) + 0.5rem);
  }
}

.lp-underfv__inner {
  position: relative;
  z-index: 2;
}

.lp-underfv__title {
  margin: 0 0 40px;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--lp-underfv-brown);
  text-align: center;
}
@media (max-width: 991px) {
  .lp-underfv__title {
    margin: 0 0 31px;
    font-size: 27px;
  }
}
@media (max-width: 575px) {
  .lp-underfv__title {
    margin: 0 0 28px;
    font-size: 24px;
  }
}

.lp-underfv__title-br {
  display: none;
}
@media (max-width: 768px) {
  .lp-underfv__title-br {
    display: block;
  }
}

.lp-underfv__figure {
  margin: 0 auto 24px;
  max-width: 797px;
}
@media (max-width: 991px) {
  .lp-underfv__figure {
    margin: 0 auto 19px;
  }
}
@media (max-width: 768px) {
  .lp-underfv__figure {
    max-width: 360px;
  }
}
@media (max-width: 575px) {
  .lp-underfv__figure {
    margin: 0 auto 16px;
  }
}

.lp-underfv__text-img {
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}

.lp-underfv__but {
  margin: 0 0 28px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  color: var(--lp-underfv-text);
  text-align: center;
}
@media (max-width: 991px) {
  .lp-underfv__but {
    margin: 0 0 23px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .lp-underfv__but {
    margin: 0 0 20px;
  }
}

.lp-underfv__cards {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
}
@media (max-width: 991px) {
  .lp-underfv__cards {
    gap: 19px;
  }
}
@media (max-width: 768px) {
  .lp-underfv__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 420px;
  }
}
@media (max-width: 575px) {
  .lp-underfv__cards {
    gap: 8px;
  }
}

.lp-underfv__card {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 320px;
  min-height: 143px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .lp-underfv__card {
    min-height: 138px;
    padding: 23px 19px;
  }
}
@media (max-width: 768px) {
  .lp-underfv__card {
    flex: none;
    max-width: none;
    min-height: 62px;
    padding: 12px 6px;
    border-radius: 16px;
  }
  .lp-underfv__card:nth-child(3) {
    grid-column: 1/-1;
    width: calc((100% - 16px) / 2);
    margin-inline: auto;
  }
}

.lp-underfv__card-text {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  color: var(--lp-underfv-brown);
  text-align: center;
}
@media (max-width: 991px) {
  .lp-underfv__card-text {
    font-size: 12px;
  }
}

.lp-underfv__paws.paw-group {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .lp-underfv__paws.paw-group {
    display: none;
  }
}

.lp-underfv__paws .paw {
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.35));
}

.lp-underfv__paws.is-visible .paw {
  animation: paw-pop-underfv 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--paw-i, 0) * 0.3s);
}

@keyframes paw-pop-underfv {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(var(--paw-rot, 0deg));
  }
  60% {
    opacity: 0.65;
    transform: scale(1.06) rotate(var(--paw-rot, 0deg));
  }
  100% {
    opacity: 0.55;
    transform: scale(1) rotate(var(--paw-rot, 0deg));
  }
}
.lp-list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-list-check__item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--lp-color-text);
}

.lp-list-check__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: var(--lp-color-purple-dark);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M6.47 11.53a.75.75 0 0 1-1 0l-3-3a.75.75 0 1 1 1-1L6 10.06l6.22-7.72a.75.75 0 1 1 1.16.94l-6.71 8.31a.75.75 0 0 1-1 .02z'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M6.47 11.53a.75.75 0 0 1-1 0l-3-3a.75.75 0 1 1 1-1L6 10.06l6.22-7.72a.75.75 0 1 1 1.16.94l-6.71 8.31a.75.75 0 0 1-1 .02z'/%3E%3C/svg%3E");
}

.gift_explanation {
  position: relative;
  --gift-explanation-violet: #8967b4;
  --gift-explanation-brown: #86654a;
  --gift-explanation-text: #070403;
  background: #fbf3ff;
  padding: 24px 0 180px;
}
@media (max-width: 991px) {
  .gift_explanation {
    padding: 24px 0 88px;
  }
}
@media (max-width: 575px) {
  .gift_explanation {
    padding: 24px 0 64px;
  }
}

.gift_explanation__wash {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.gift_explanation__wash--left {
  z-index: 3;
  left: -170px;
  bottom: -2rem;
  width: 526px;
  height: 743px;
  background-image: url(../images/bg_product_01.png);
  background-position: left bottom;
  transform: rotate(-25deg);
  transform-origin: left bottom;
}
@media (max-width: 991px) {
  .gift_explanation__wash--left {
    left: 75px;
    bottom: 0rem;
    width: 246px;
    height: 322px;
    opacity: 0.85;
  }
}

.gift_explanation__wash--right {
  z-index: 0;
  right: -200px;
  top: -40px;
  width: 479px;
  height: 693px;
  background-image: url(../images/bg_product_02.png);
  background-position: right top;
  transform: rotate(30deg);
}
@media (max-width: 991px) {
  .gift_explanation__wash--right {
    display: none;
  }
}

.gift_explanation__inner {
  position: relative;
  z-index: 4;
  max-width: 1360px;
  width: calc(100% - 32px);
}
@media (max-width: 991px) {
  .gift_explanation__inner {
    max-width: 100%;
    width: 100%;
    padding-inline: 1rem;
  }
}

.gift_explanation__grid {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 635px;
}
@media (max-width: 991px) {
  .gift_explanation__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "lead" "visual" "cta";
    row-gap: 0;
    justify-items: center;
  }
}

.gift_explanation__visual-stage {
  position: absolute;
  z-index: 1;
  left: calc(50% - 50vw - 28px);
  top: 50%;
  width: clamp(360px, 36vw, 516px);
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 991px) {
  .gift_explanation__visual-stage {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    grid-area: visual;
    width: min(245px, 57vw);
    margin-top: 12px;
    z-index: 0;
  }
}

.gift_explanation__content {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - clamp(360px, 36vw, 516px) - 48px);
  margin-left: calc(50% - 50vw - 28px + clamp(360px, 36vw, 516px) + 112px);
  margin-right: auto;
  min-width: 0;
}
@media (max-width: 991px) {
  .gift_explanation__content {
    display: contents;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.gift_explanation__lead-dog {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .gift_explanation__lead-dog {
    display: contents;
    width: 100%;
    margin-bottom: 0;
  }
}

.gift_explanation__visual {
  margin: 0;
  width: 100%;
  max-width: none;
}

.gift_explanation__visual-img {
  width: 100%;
  height: auto;
  display: block;
}

.gift_explanation__heading {
  margin: 0 0 28px;
}
@media (max-width: 991px) {
  .gift_explanation__heading {
    grid-area: heading;
    width: 100%;
    max-width: 100%;
    margin: 0 0 12px;
    text-align: center;
  }
}

.gift_explanation__eyebrow {
  display: block;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.4;
  color: var(--gift-explanation-brown);
}
@media (max-width: 991px) {
  .gift_explanation__eyebrow {
    font-size: 16px;
  }
}

.gift_explanation__title {
  display: block;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.9vw, 56px);
  line-height: 1.4;
  color: var(--gift-explanation-violet);
  overflow-wrap: anywhere;
}
@media (max-width: 991px) {
  .gift_explanation__title {
    font-size: 26px;
  }
}

.gift_explanation__lead {
  margin: 0;
  width: fit-content;
  flex: 0 0 auto;
  max-width: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--gift-explanation-text);
}
@media (max-width: 991px) {
  .gift_explanation__lead {
    grid-area: lead;
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
  }
}

.gift_explanation__lead-row {
  display: block;
}

@media (max-width: 991px) {
  .gift_explanation__br--pc {
    display: none;
  }
}

.gift_explanation__dog {
  position: relative;
  flex-shrink: 0;
  z-index: 5;
  margin: 0;
}
@media (max-width: 991px) {
  .gift_explanation__dog {
    position: absolute;
    grid-area: visual;
    left: 50%;
    width: min(245px, 57vw);
    height: min(245px, 57vw);
    margin-top: 12px;
    margin-left: calc(min(245px, 57vw) / -2);
    right: auto;
    top: auto;
    transform: none;
    pointer-events: none;
  }
}

.gift_explanation__dog-img {
  width: 206px;
  height: auto;
  display: block;
  transform: rotate(2.66deg);
}
@media (max-width: 991px) {
  .gift_explanation__dog-img {
    position: absolute;
    right: -26%;
    top: 14%;
    width: 82px;
    transform: none;
  }
}

.gift_explanation__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 20px 50px;
  border-radius: var(--lp-radius-pill);
  border: 2px solid var(--lp-color-white);
  background: var(--gift-explanation-violet);
  color: var(--lp-color-white);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(175, 156, 137, 0.6);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
@media (max-width: 991px) {
  .gift_explanation__cta {
    grid-area: cta;
    margin-top: -16px;
    z-index: 1;
    padding: 12px 20px;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(175, 156, 137, 0.6);
  }
}

.gift_explanation__cta:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.gift_explanation__cta-paw {
  flex-shrink: 0;
  width: 25px;
  height: auto;
  display: block;
}
@media (max-width: 991px) {
  .gift_explanation__cta-paw {
    width: 18px;
  }
}

.lp-brand-intro {
  position: relative;
  overflow: hidden;
  background: #fff;
  --lp-brand-intro-brown: #86654a;
  --lp-brand-intro-text: #070403;
}

.lp-brand-intro__head {
  position: relative;
  padding: 83px 1rem 0;
  text-align: center;
  margin-bottom: -56px;
}

.lp-brand-intro__head-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}

.lp-brand-intro__logo {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 1;
  width: 207px;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 575px) {
  .lp-brand-intro__logo {
    display: none;
  }
}

.lp-brand-intro__logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-brand-intro__eyebrow {
  margin: 0 0 18px;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--lp-brand-intro-brown);
}
@media (max-width: 991px) {
  .lp-brand-intro__eyebrow {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
@media (max-width: 575px) {
  .lp-brand-intro__eyebrow {
    font-size: 16px;
    margin-bottom: 4px;
  }
}

.lp-brand-intro__title {
  margin: 0 0 32px;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--lp-brand-intro-brown);
}
@media (max-width: 991px) {
  .lp-brand-intro__title {
    font-size: 34px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .lp-brand-intro__title {
    font-size: 26px;
    margin-bottom: 24px;
  }
}

.lp-brand-intro__body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  color: var(--lp-brand-intro-text);
}
.lp-brand-intro__body p {
  margin: 0 0 32px;
}
.lp-brand-intro__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .lp-brand-intro__body {
    font-size: 16px;
  }
  .lp-brand-intro__body p {
    margin-bottom: 28px;
  }
}
@media (max-width: 575px) {
  .lp-brand-intro__body {
    font-size: 12px;
  }
  .lp-brand-intro__body p {
    margin-bottom: 24px;
  }
}

.lp-brand-intro__visual {
  margin: 0;
  width: 100%;
  line-height: 0;
}

.lp-brand-intro__visual-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 足跡（右上→左下の1本道） */
.lp-brand-intro__paws.paw-group {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.lp-brand-intro__paws .paw {
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.35));
}

.lp-brand-intro__paw--1 {
  --paw-size: 38px;
  --paw-rot: -172deg;
  top: 2.3%;
  right: -1.3%;
}

.lp-brand-intro__paw--2 {
  --paw-size: 38px;
  --paw-rot: -145deg;
  top: 3.3%;
  right: 2.3%;
}

.lp-brand-intro__paw--3 {
  --paw-size: 38px;
  --paw-rot: -167deg;
  top: 16%;
  right: 2%;
}

.lp-brand-intro__paw--4 {
  --paw-size: 38px;
  --paw-rot: -128deg;
  top: 18%;
  right: 8.2%;
}

.lp-brand-intro__paw--5 {
  --paw-size: 38px;
  --paw-rot: -172deg;
  top: 16%;
  right: 15.4%;
}

.lp-brand-intro__paw--6 {
  --paw-size: 38px;
  --paw-rot: -145deg;
  top: 17%;
  right: 20.3%;
}

.lp-brand-intro__paw--7 {
  --paw-size: 38px;
  --paw-rot: -167deg;
  top: 26.5%;
  right: 16.4%;
}

.lp-brand-intro__paw--8 {
  --paw-size: 38px;
  --paw-rot: -128deg;
  top: 32%;
  right: 26.6%;
}

.lp-brand-intro__paw--9 {
  --paw-size: 38px;
  --paw-rot: -167deg;
  top: 51.7%;
  right: 28.3%;
}

.lp-brand-intro__paws.is-visible .paw {
  animation: paw-pop-brand-intro 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--paw-i, 0) * 0.3s);
}

@media (max-width: 575px) {
  .lp-brand-intro__head {
    padding-top: 26px;
    padding-bottom: 28px;
    margin-bottom: -40px;
  }
  .lp-brand-intro__paws {
    opacity: 1;
  }
  .lp-brand-intro__paw--6,
  .lp-brand-intro__paw--7,
  .lp-brand-intro__paw--8,
  .lp-brand-intro__paw--9 {
    display: none !important;
  }
  .lp-brand-intro__paw--1 {
    --paw-size: 18px;
    --paw-rot: -123deg;
    top: 2.5%;
    right: -4%;
  }
  .lp-brand-intro__paw--2 {
    --paw-size: 18px;
    --paw-rot: -168deg;
    top: 11.5%;
    right: 2%;
  }
  .lp-brand-intro__paw--3 {
    --paw-size: 18px;
    --paw-rot: -140deg;
    top: 12.5%;
    right: 9.5%;
  }
  .lp-brand-intro__paw--4 {
    --paw-size: 18px;
    --paw-rot: -162deg;
    top: 23.5%;
    right: 8.5%;
  }
  .lp-brand-intro__paw--5 {
    --paw-size: 18px;
    --paw-rot: -124deg;
    top: 25%;
    right: 19%;
  }
}
@keyframes paw-pop-brand-intro {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(var(--paw-rot, 0deg));
  }
  60% {
    opacity: 0.6;
    transform: scale(1.06) rotate(var(--paw-rot, 0deg));
  }
  100% {
    opacity: 0.5;
    transform: scale(1) rotate(var(--paw-rot, 0deg));
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-brand-intro__paws.is-visible .paw {
    opacity: 0.5;
    transform: scale(1) rotate(var(--paw-rot, -135deg));
    animation: none !important;
  }
}
.lp-scenes {
  position: relative;
  --lp-scenes-title: #86654a;
  --lp-scenes-wave: #ede8f7;
  background: var(--lp-color-white);
  padding-bottom: calc(var(--lp-space-section) + 2.5rem);
  overflow: hidden;
}

.lp-scenes__inner {
  position: relative;
  z-index: 2;
  margin-top: -10px;
  margin-bottom: -20px;
}

.lp-scenes__title {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--lp-scenes-title);
  text-align: center;
  margin: 0 0 50px;
}
@media (max-width: 991px) {
  .lp-scenes__title {
    font-size: 29px;
    margin: 0 0 38px;
  }
}
@media (max-width: 768px) {
  .lp-scenes__title {
    font-size: 22px;
    margin: 0 0 28px;
  }
}

.lp-scenes__items {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: start;
}
@media (max-width: 991px) {
  .lp-scenes__items {
    gap: 31px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .lp-scenes__items {
    gap: 20px 16px;
    align-items: stretch;
  }
}

.lp-scenes__item {
  width: 100%;
  max-width: none;
  text-align: center;
}
@media (max-width: 991px) {
  .lp-scenes__item {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .lp-scenes__item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.lp-scenes__disc {
  margin-inline: auto;
  max-width: 226px;
  width: 100%;
}
@media (max-width: 768px) {
  .lp-scenes__disc {
    max-width: 148px;
  }
}

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

.lp-scenes__caption {
  margin: 24px 0 0;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--lp-color-text);
  font-weight: 500;
}
@media (max-width: 991px) {
  .lp-scenes__caption {
    margin: 23px 0 0;
  }
}
@media (max-width: 768px) {
  .lp-scenes__caption {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.6;
  }
}

.lp-scenes__paws.paw-group {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 456px;
  height: 300px;
  min-height: 15rem;
  z-index: 1;
}
@media (max-width: 991px) {
  .lp-scenes__paws.paw-group {
    width: 264px;
    height: 240px;
  }
}
@media (max-width: 768px) {
  .lp-scenes__paws.paw-group {
    width: 200px;
    height: 180px;
    min-height: 0;
    left: 0;
    bottom: 0;
  }
}

.lp-scenes__paw--1 {
  --paw-size: 38px;
  --paw-rot: 32deg;
  bottom: -2%;
  left: 8%;
}
@media (max-width: 768px) {
  .lp-scenes__paw--1 {
    --paw-size: 18px;
    bottom: -2%;
    left: -17%;
  }
}

.lp-scenes__paw--2 {
  --paw-size: 34px;
  --paw-rot: 44deg;
  bottom: 12%;
  left: 26%;
}
@media (max-width: 768px) {
  .lp-scenes__paw--2 {
    --paw-size: 18px;
    bottom: 12%;
    left: -6%;
  }
}

.lp-scenes__paw--3 {
  --paw-size: 36px;
  --paw-rot: 36deg;
  bottom: 24%;
  left: 14%;
}
@media (max-width: 768px) {
  .lp-scenes__paw--3 {
    --paw-size: 18px;
    bottom: 24%;
    left: 4%;
  }
}

.lp-scenes__paw--4 {
  --paw-size: 34px;
  --paw-rot: 50deg;
  bottom: 36%;
  left: 44%;
}
@media (max-width: 768px) {
  .lp-scenes__paw--4 {
    --paw-size: 18px;
    bottom: 46%;
    left: 6%;
  }
}

.lp-scenes__paw--5 {
  --paw-size: 40px;
  --paw-rot: 26deg;
  bottom: 54%;
  left: 62%;
}
@media (max-width: 768px) {
  .lp-scenes__paw--5 {
    --paw-size: 18px;
    bottom: 54%;
    left: 22%;
  }
}

.lp-scenes__paws .paw {
  filter: drop-shadow(0 1px 1px rgba(60, 40, 20, 0.12));
}

.lp-scenes__paws.is-visible .paw {
  animation: paw-pop-scenes 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--paw-i, 0) * 0.28s);
}

.gift_explanation__wave,
.lp-scenes__wave,
.lp-underfv__wave,
.lavande_section__wave,
.lp-product-set__wave,
.po-product-01__wave,
.po-product-02__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}

.gift_explanation__wave {
  z-index: 1;
}

.gift_explanation__wave-img,
.lp-scenes__wave-img,
.lp-underfv__wave-img,
.lavande_section__wave-img,
.lp-product-set__wave-img,
.po-product-01__wave-img,
.po-product-02__wave-img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes paw-pop-scenes {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(var(--paw-rot, 0deg));
  }
  60% {
    opacity: 0.55;
    transform: scale(1.06) rotate(var(--paw-rot, 0deg));
  }
  100% {
    opacity: 0.5;
    transform: scale(1) rotate(var(--paw-rot, 0deg));
  }
}
.lavande_section {
  position: relative;
  --lavande-bg: #fbf3ff;
  --lavande-violet: #8967b4;
  background: var(--lavande-bg);
  padding-bottom: calc(var(--lp-space-section) + 2.5rem);
  overflow: hidden;
}
@media (max-width: 575px) {
  .lavande_section {
    padding-top: 20px;
    padding-bottom: 0;
  }
}

.lavande_section__inner {
  position: relative;
  z-index: 2;
}

.lavande_section__title {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.4;
  color: var(--lavande-violet);
  text-align: left;
  margin: 0 0 50px;
  letter-spacing: 0.02em;
}
@media (max-width: 991px) {
  .lavande_section__title {
    font-size: 31px;
    margin: 0 0 38px;
  }
}
@media (max-width: 768px) {
  .lavande_section__title {
    font-size: 26px;
    text-align: center;
    margin: 0 0 32px;
  }
}

.lavande_section__grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .lavande_section__grid {
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .lavande_section__grid {
    gap: 16px;
    padding-bottom: 48px;
  }
}

.lavande_section__row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 991px) {
  .lavande_section__row {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .lavande_section__row {
    flex-direction: column;
    gap: 0;
  }
}

@media (min-width: 992px) {
  .lavande_section__row--lead .lavande_section__prose--lead {
    order: 1;
  }
  .lavande_section__row--lead .lavande_section__figure--deco {
    order: 2;
  }
}

.lavande_section__prose {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 768px) {
  .lavande_section__prose {
    font-size: 12px;
    margin-top: -32px;
  }
}

.lavande_section__prose--lead {
  flex: 0 0 560px;
  max-width: 560px;
}
@media (max-width: 991px) {
  .lavande_section__prose--lead {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .lavande_section__prose--lead {
    flex: none;
    min-width: 0;
    width: 100%;
    text-align: left;
    margin-top: -10px;
    line-height: 1.4;
  }
}

.lavande_section__prose--story {
  flex: 1 1 0;
  max-width: 450px;
  min-width: 0;
}
@media (max-width: 991px) {
  .lavande_section__prose--story {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .lavande_section__prose--story {
    flex: none;
    min-width: 0;
    width: 100%;
    text-align: right;
    padding-top: 0;
    line-height: 1.4;
  }
}

.lavande_section__figure--deco {
  flex: 1 1 0;
  max-width: 537px;
  min-width: 0;
  margin-left: auto;
}
@media (max-width: 991px) {
  .lavande_section__figure--deco {
    flex: 1 1 auto;
    max-width: 330px;
    margin-left: 0;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .lavande_section__figure--deco {
    flex: none;
    max-width: 208px;
    width: 57.4%;
    align-self: flex-end;
    margin-inline: 0;
  }
}

.lavande_section__figure--photo {
  flex: 0 0 526px;
  max-width: 526px;
}
@media (max-width: 991px) {
  .lavande_section__figure--photo {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .lavande_section__figure--photo {
    flex: none;
    max-width: 234px;
    width: 60%;
    align-self: flex-start;
    padding-left: 16px;
  }
}

.lavande_section__prose p {
  margin: 0;
}

.lavande_section__figure {
  margin: 0;
  position: relative;
}

.lavande_section__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .lavande_section__figure--photo img {
    max-width: 100%;
    margin-inline: auto;
  }
}

.lavande_section__figure--deco::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto;
  top: -32px;
  right: -179px;
  width: 420px;
  max-width: none;
  aspect-ratio: 422/404;
  background: url("../images/bef_lavande_01.png") no-repeat;
  background-size: contain;
  background-position: 96% top;
  pointer-events: none;
}
@media (max-width: 991px) {
  .lavande_section__figure--deco::before {
    right: -138px;
  }
}
@media (max-width: 768px) {
  .lavande_section__figure--deco::before {
    top: -31px;
    right: -108px;
    width: 205px;
    aspect-ratio: 205/199;
    background-position: 96% top;
  }
}

.lavande_section__figure--photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto;
  bottom: -129px;
  left: -196px;
  width: 368px;
  aspect-ratio: 369/524;
  background: url("../images/bef_ravande_02.png") no-repeat;
  background-size: contain;
  background-position: 8% bottom;
  pointer-events: none;
}
@media (max-width: 991px) {
  .lavande_section__figure--photo::before {
    bottom: -100px;
    left: -169px;
  }
}
@media (max-width: 768px) {
  .lavande_section__figure--photo::before {
    bottom: auto;
    top: 39px;
    left: -41px;
    width: 123px;
    aspect-ratio: 122.5/211.5;
    background-position: 8% top;
  }
}

.lp-product-set {
  position: relative;
  background: var(--lp-color-white);
  padding-top: 30px;
  padding-bottom: 124px;
  --lp-product-set-violet: #8967b4;
  --lp-product-set-brown: #86654a;
  --lp-product-set-text: #070403;
}
@media (max-width: 768px) {
  .lp-product-set {
    padding-bottom: 56px;
  }
}

.lp-product-set__wave {
  z-index: 3;
}

.lp-product-set__inner {
  position: relative;
  z-index: 2;
}

.lp-product-set__title {
  margin: 0 0 50px;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--lp-product-set-violet);
}
@media (max-width: 991px) {
  .lp-product-set__title {
    margin: 0 0 38px;
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .lp-product-set__title {
    margin: 0 0 20px;
    font-size: 26px;
  }
}

.lp-product-set__grid {
  display: grid;
  gap: 50px;
  align-items: flex-start;
  grid-template-columns: 464px 1fr;
  column-gap: 72px;
}
@media (max-width: 991px) {
  .lp-product-set__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .lp-product-set__grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .lp-product-set__col--copy {
    display: contents;
  }
}

@media (max-width: 768px) {
  .lp-product-set__lead {
    order: 1;
  }
}

.lp-product-set__lead p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--lp-product-set-text);
}
@media (max-width: 768px) {
  .lp-product-set__lead p {
    margin: 0;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .lp-product-set__lead p + p {
    margin-top: 0;
  }
}

.lp-product-set__lead p:last-child {
  margin-bottom: 0;
}

.lp-product-set__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .lp-product-set__highlights {
    margin: 23px 0;
  }
}
@media (max-width: 768px) {
  .lp-product-set__highlights {
    order: 3;
    gap: 4px;
    margin: 0;
    width: 100%;
  }
}

.lp-product-set__highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  width: 100%;
  max-width: 28.75rem;
  margin: 0;
  padding: 0.625rem 1.875rem;
  background: rgba(134, 101, 74, 0.2);
}
@media (max-width: 768px) {
  .lp-product-set__highlight {
    max-width: none;
    padding: 8px 10px;
  }
}

.lp-product-set__paw-deep {
  display: block;
  flex-shrink: 0;
  width: 19px;
  height: auto;
}
@media (max-width: 768px) {
  .lp-product-set__paw-deep {
    width: 18px;
  }
}

.lp-product-set__highlight-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--lp-product-set-brown);
}
@media (max-width: 768px) {
  .lp-product-set__highlight-text {
    font-size: 12px;
  }
}

.lp-product-set__price {
  margin: 28px 0;
  color: var(--lp-product-set-brown);
}
@media (max-width: 991px) {
  .lp-product-set__price {
    margin: 23px 0;
  }
}
@media (max-width: 768px) {
  .lp-product-set__price {
    order: 4;
    margin: 0;
  }
}

.lp-product-set__price-main {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .lp-product-set__price-main {
    font-size: 20px;
    letter-spacing: 0.06em;
  }
}

.lp-product-set__price-suffix {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  margin-left: 0.0625rem;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 991px) {
  .lp-product-set__price-suffix {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .lp-product-set__price-suffix {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

.lp-product-set__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0.25rem;
  padding: 20px 50px;
  border: 2px solid var(--lp-color-white);
  border-radius: var(--lp-radius-pill);
  background: var(--lp-product-set-violet);
  color: var(--lp-color-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(175, 156, 137, 0.5);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
@media (max-width: 991px) {
  .lp-product-set__cta {
    padding: 20px 38px;
    font-size: 19px;
    width: 100%;
    max-width: 24rem;
  }
}
@media (max-width: 768px) {
  .lp-product-set__cta {
    order: 5;
    align-self: center;
    width: auto;
    max-width: none;
    margin-top: 0;
    padding: 12px 20px;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(175, 156, 137, 0.6);
  }
}

.lp-product-set__cta:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.lp-product-set__cta:focus-visible {
  outline: 2px solid var(--lp-product-set-violet);
  outline-offset: 3px;
}

.lp-product-set__cta-paw {
  display: block;
  flex-shrink: 0;
  width: 25px;
  height: auto;
}
@media (max-width: 768px) {
  .lp-product-set__cta-paw {
    width: 18px;
  }
}

.lp-product-set__visual {
  position: relative;
  margin-inline: auto;
  max-width: 100%;
}
@media (max-width: 768px) {
  .lp-product-set__visual {
    min-height: clamp(220px, 68vw, 300px);
  }
}

.lp-product-set__flowers {
  position: absolute;
  top: 116px;
  right: -259px;
  z-index: 2;
  width: 380px;
  height: auto;
  pointer-events: none;
}
@media (max-width: 991px) {
  .lp-product-set__flowers {
    right: -123px;
  }
}
@media (max-width: 768px) {
  .lp-product-set__flowers {
    top: 65px;
    right: -24px;
    width: 165px;
  }
}

.lp-product-set__bundle {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .lp-product-set__bundle {
    width: 86%;
    max-width: 261px;
    margin-inline: 0 auto 0;
  }
}

@media (max-width: 991px) {
  .lp-product-set__col--visual {
    max-width: 22rem;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .lp-product-set__col--visual {
    order: 2;
    max-width: none;
    width: 100%;
    margin-inline: 0;
  }
}

.po-product-01 {
  position: relative;
  background: #fbf3ff;
  padding-bottom: calc(var(--lp-space-section) + 2.5rem);
  --ppo-violet: #8967b4;
  --ppo-brown: #86654a;
  --ppo-text: #070403;
  margin-top: -20px;
}
@media (max-width: 768px) {
  .po-product-01 {
    margin-top: 0;
    padding-bottom: 56px;
  }
}

.po-product-01__wave {
  z-index: 3;
}

.po-product-01__inner {
  position: relative;
  z-index: 2;
}

.po-product-01__masthead {
  position: relative;
  z-index: 3;
  margin: 0 0 36px;
  text-align: center;
}
@media (max-width: 991px) {
  .po-product-01__masthead {
    margin: 0 0 31px;
  }
}
@media (max-width: 768px) {
  .po-product-01__masthead {
    margin: 0 0 16px;
  }
}

.po-product-01__index {
  margin: 0;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 800;
  font-size: 100px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(137, 103, 180, 0.2);
}
@media (max-width: 768px) {
  .po-product-01__index {
    font-size: 60px;
  }
}

.po-product-01__masthead-copy {
  position: relative;
  margin-top: -52px;
}
@media (max-width: 768px) {
  .po-product-01__masthead-copy {
    margin-top: -36px;
  }
}

.po-product-01__title {
  margin: 0;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--ppo-violet);
}
@media (max-width: 991px) {
  .po-product-01__title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .po-product-01__title {
    font-size: 26px;
  }
}

.po-product-01__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .po-product-01__badges {
    margin: 23px 0 0;
  }
}
@media (max-width: 768px) {
  .po-product-01__badges {
    gap: 10px;
    margin: 10px 0 0;
  }
}

.po-product-01__badge {
  padding: 0.25rem 14px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--ppo-violet);
}
@media (max-width: 768px) {
  .po-product-01__badge {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.po-product-01__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 50px;
  align-items: start;
  grid-template-columns: 1fr 510px;
  column-gap: 32px;
}
@media (max-width: 991px) {
  .po-product-01__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .po-product-01__grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.po-product-01__col--copy {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .po-product-01__col--copy {
    display: contents;
  }
}

.po-product-01__col--visual {
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .po-product-01__col--visual {
    order: 2;
    width: 100%;
    z-index: 0;
  }
}

.po-product-01__visual {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 520px;
  overflow: visible;
  isolation: isolate;
}
@media (max-width: 991px) {
  .po-product-01__visual {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .po-product-01__visual {
    margin: 0;
    min-height: clamp(200px, 58vw, 280px);
  }
}

.po-product-01__wash {
  position: absolute;
  z-index: -1;
  left: -18%;
  right: -12%;
  top: -14%;
  bottom: -12%;
  background-image: url("../images/bg_product_01.png");
  background-repeat: no-repeat;
  background-position: 48% 36%;
  background-size: contain;
  pointer-events: none;
  transform-origin: 45% 45%;
  transform: rotate(-7deg);
}
@media (max-width: 991px) {
  .po-product-01__wash {
    left: -16%;
    right: -14%;
    top: -12%;
    bottom: -14%;
    background-position: 50% 42%;
  }
}
@media (max-width: 768px) {
  .po-product-01__wash {
    left: -8%;
    right: -20%;
    top: -6%;
    bottom: -8%;
    background-position: 42% 40%;
    background-size: 83%;
  }
}

.po-product-01__product-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .po-product-01__product-img {
    width: 100%;
    max-width: 254px;
    margin-inline: 0 auto 0;
  }
}

.po-product-01__intro {
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .po-product-01__intro {
    margin-bottom: 23px;
  }
}
@media (max-width: 768px) {
  .po-product-01__intro {
    order: 1;
    margin: 0;
    position: relative;
    z-index: 1;
  }
}

.po-product-01__intro p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--ppo-text);
}
@media (max-width: 768px) {
  .po-product-01__intro p {
    font-size: 12px;
  }
}

.po-product-01__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 768px) {
  .po-product-01__specs {
    gap: 5px;
  }
}

@media (max-width: 768px) {
  .po-product-01__specs--brown {
    order: 3;
    position: relative;
    z-index: 1;
  }
}

.po-product-01__specs li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}

.po-product-01__bullet-paw {
  flex-shrink: 0;
  width: 18px;
  height: auto;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .po-product-01__bullet-paw {
    width: 15px;
    margin-top: 3px;
  }
}

.po-product-01__bullet-paw--narrow {
  margin-top: 5px;
}

.po-product-01__specs--brown span {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ppo-brown);
}
@media (max-width: 768px) {
  .po-product-01__specs--brown span {
    font-size: 12px;
  }
}

.po-product-01__uses {
  margin-top: 30px;
  padding: 1.25rem 1.875rem;
  background: rgba(231, 225, 240, 0.7);
}
@media (max-width: 991px) {
  .po-product-01__uses {
    margin-top: 23px;
  }
}
@media (max-width: 768px) {
  .po-product-01__uses {
    order: 4;
    margin-top: 0;
    padding: 10px;
    width: 100%;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .po-product-01__specs--violet {
    gap: 4px;
  }
}
.po-product-01__specs--violet span:last-child {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--ppo-violet);
}
@media (max-width: 768px) {
  .po-product-01__specs--violet span:last-child {
    font-size: 12px;
  }
}

.po-product-01__check {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 6px;
  color: var(--ppo-violet);
  display: block;
}
@media (max-width: 768px) {
  .po-product-01__check {
    width: 10px;
    height: 10px;
    margin-top: 4px;
  }
}

.po-product-01__meta {
  margin-top: 40px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--ppo-text);
}
@media (max-width: 991px) {
  .po-product-01__meta {
    margin-top: 31px;
  }
}
@media (max-width: 768px) {
  .po-product-01__meta {
    order: 5;
    margin-top: 16px;
    font-size: 12px;
    position: relative;
    z-index: 1;
  }
}

.po-product-01__meta-label {
  display: inline-block;
  margin: 0;
  min-width: 3rem;
}

.po-product-01__meta-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  align-items: start;
}
@media (max-width: 768px) {
  .po-product-01__meta-grid {
    gap: 0 8px;
  }
}

.po-product-01__ingredients {
  margin-top: 0.375rem;
}

.po-product-01__meta-value {
  margin: 0;
  line-height: 1.5;
  max-width: 100%;
}

.po-product-01__ingredients-body {
  margin: 0;
  line-height: 1.5;
  max-width: 100%;
}
@media (max-width: 768px) {
  .po-product-01__ingredients-body {
    line-height: 1.4;
  }
}

.po-product-01__price {
  margin: 24px 0 0;
  color: var(--ppo-brown);
}
@media (max-width: 991px) {
  .po-product-01__price {
    margin: 23px 0 0;
  }
}
@media (max-width: 768px) {
  .po-product-01__price {
    margin: 4px 0 0;
  }
}

.po-product-01__price-main {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .po-product-01__price-main {
    font-size: 20px;
  }
}

.po-product-01__price-suffix {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  margin-left: 0.0625rem;
  font-size: 20px;
}
@media (max-width: 991px) {
  .po-product-01__price-suffix {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .po-product-01__price-suffix {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

.po-product-01__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 20px 50px;
  border: 2px solid var(--lp-color-white);
  border-radius: var(--lp-radius-pill);
  background: var(--ppo-violet);
  color: var(--lp-color-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(175, 156, 137, 0.5);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
@media (max-width: 991px) {
  .po-product-01__cta {
    display: flex;
    margin-top: 23px;
    padding: 20px 38px;
    font-size: 19px;
    width: 100%;
    max-width: 24rem;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .po-product-01__cta {
    order: 6;
    align-self: center;
    width: auto;
    max-width: none;
    margin-top: 16px;
    padding: 12px 20px;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(175, 156, 137, 0.6);
    position: relative;
    z-index: 1;
  }
}

.po-product-01__cta:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.po-product-01__cta-paw {
  display: block;
  flex-shrink: 0;
  width: 25px;
  height: auto;
}
@media (max-width: 768px) {
  .po-product-01__cta-paw {
    width: 18px;
  }
}

.po-product-01__paws.paw-group {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  --ppo-paw-stagger: 0.26s;
  --ppo-paw-duration: 0.48s;
  --ppo-paw-tr-last-index: 3;
}

.po-product-01__paws--tr.paw-group {
  top: 45px;
  right: -12px;
  width: 260px;
  height: 220px;
  min-height: 8.5rem;
}
@media (max-width: 991px) {
  .po-product-01__paws--tr.paw-group {
    width: 215px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .po-product-01__paws--tr.paw-group {
    width: 152px;
    height: 140px;
    top: 36px;
    right: -4px;
  }
}

.po-product-01__paws--bl.paw-group {
  left: -8px;
  bottom: 168px;
  width: 300px;
  height: 280px;
  min-height: 10rem;
}
@media (max-width: 991px) {
  .po-product-01__paws--bl.paw-group {
    bottom: 138px;
    width: 292px;
    height: 276px;
    display: none !important;
  }
}
@media (max-width: 768px) {
  .po-product-01__paws--bl.paw-group {
    bottom: 56px;
    width: 172px;
    height: 180px;
  }
}

.po-product-01__paws .paw {
  opacity: 0;
  filter: drop-shadow(0 1px 1px rgba(90, 60, 120, 0.12));
}

.po-product-01__paws.is-visible .paw {
  animation: paw-pop-lavande var(--ppo-paw-duration) cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--paw-i, 0) * var(--ppo-paw-stagger));
}

.po-product-01__paws--bl.is-visible .paw {
  animation-delay: calc((var(--ppo-paw-tr-last-index) + 1 + var(--paw-i, 0)) * var(--ppo-paw-stagger));
}

.po-product-01__paw--tr1 {
  --paw-i: 0;
  --paw-size: 32px;
  --paw-rot: -132deg;
  top: -2%;
  right: 4%;
}
@media (max-width: 768px) {
  .po-product-01__paw--tr1 {
    --paw-size: 18px;
    top: 98%;
  }
}

.po-product-01__paw--tr2 {
  --paw-i: 1;
  --paw-size: 30px;
  --paw-rot: -142deg;
  top: 30%;
  right: 12%;
}
@media (max-width: 768px) {
  .po-product-01__paw--tr2 {
    --paw-size: 18px;
    top: 110%;
    right: 20%;
  }
}

.po-product-01__paw--tr3 {
  --paw-i: 2;
  --paw-size: 28px;
  --paw-rot: -155deg;
  top: 16%;
  right: 40%;
}
@media (max-width: 768px) {
  .po-product-01__paw--tr3 {
    --paw-size: 18px;
    top: 136%;
    right: 17%;
  }
}

.po-product-01__paw--tr4 {
  --paw-i: 3;
  --paw-size: 31px;
  --paw-rot: -148deg;
  top: 48%;
  right: 28%;
}
@media (max-width: 768px) {
  .po-product-01__paw--tr4 {
    --paw-size: 18px;
    top: 148%;
    right: 50%;
  }
}

.po-product-01__paw--bl1 {
  --paw-i: 0;
  --paw-size: 32px;
  --paw-rot: -140deg;
  top: 8%;
  right: 18%;
}

.po-product-01__paw--bl2 {
  --paw-i: 1;
  --paw-size: 30px;
  --paw-rot: -150deg;
  top: 24%;
  right: 42%;
}

.po-product-01__paw--bl3 {
  --paw-i: 2;
  --paw-size: 29px;
  --paw-rot: -136deg;
  top: 40%;
  right: 26%;
}

.po-product-01__paw--bl4 {
  --paw-i: 3;
  --paw-size: 28px;
  --paw-rot: -158deg;
  top: 54%;
  right: 48%;
}

.po-product-01__paw--bl5 {
  --paw-i: 4;
  --paw-size: 30px;
  --paw-rot: -145deg;
  top: 72%;
  right: 62%;
}

.po-product-02 {
  position: relative;
  background: var(--lp-color-white, #ffffff);
  padding-bottom: calc(var(--lp-space-section) + 2.5rem);
  --ppo-violet: #8967b4;
  --ppo-brown: #86654a;
  --ppo-text: #070403;
}
@media (max-width: 768px) {
  .po-product-02 {
    padding-bottom: 56px;
  }
}

.po-product-02__wave {
  z-index: 0;
}

.po-product-02__inner {
  position: relative;
  z-index: 2;
}

.po-product-02__masthead {
  position: relative;
  z-index: 3;
  margin: 0 0 36px;
  text-align: center;
}
@media (max-width: 991px) {
  .po-product-02__masthead {
    margin: 0 0 31px;
  }
}
@media (max-width: 768px) {
  .po-product-02__masthead {
    margin: 0 0 16px;
  }
}

.po-product-02__index {
  margin: 0;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 800;
  font-size: 100px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(137, 103, 180, 0.2);
}
@media (max-width: 768px) {
  .po-product-02__index {
    font-size: 60px;
  }
}

.po-product-02__masthead-copy {
  position: relative;
  margin-top: -52px;
}
@media (max-width: 768px) {
  .po-product-02__masthead-copy {
    margin-top: -36px;
  }
}

.po-product-02__title {
  margin: 0;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--ppo-violet);
}
@media (max-width: 991px) {
  .po-product-02__title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .po-product-02__title {
    font-size: 26px;
    letter-spacing: -0.05em;
  }
}

.po-product-02__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .po-product-02__badges {
    margin: 23px 0 0;
  }
}
@media (max-width: 768px) {
  .po-product-02__badges {
    gap: 10px;
    margin: 10px 0 0;
  }
}

.po-product-02__badge {
  padding: 0.3125rem 14px;
  background: #ede6f5;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--ppo-violet);
}
@media (max-width: 768px) {
  .po-product-02__badge {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.po-product-02__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 50px;
  align-items: start;
  grid-template-columns: 540px 1fr;
  column-gap: 72px;
}
@media (max-width: 991px) {
  .po-product-02__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .po-product-02__grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.po-product-02__col--visual {
  position: relative;
  z-index: 0;
}
@media (max-width: 991px) {
  .po-product-02__col--visual {
    order: -1;
  }
}
@media (max-width: 768px) {
  .po-product-02__col--visual {
    order: 2;
    width: 100%;
    z-index: auto;
  }
}

.po-product-02__col--copy {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .po-product-02__col--copy {
    display: contents;
  }
}

.po-product-02__visual {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 520px;
  overflow: visible;
  isolation: isolate;
}
@media (max-width: 991px) {
  .po-product-02__visual {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .po-product-02__visual {
    margin: 0;
    min-height: clamp(220px, 62vw, 320px);
  }
}

.po-product-02__wash {
  position: absolute;
  z-index: -1;
  left: -8%;
  right: -22%;
  top: -10%;
  bottom: -14%;
  background-image: url("../images/bg_product_02.png");
  background-repeat: no-repeat;
  background-position: 58% 42%;
  background-size: contain;
  pointer-events: none;
  transform-origin: 72% 68%;
  transform: rotate(4deg);
}
@media (max-width: 991px) {
  .po-product-02__wash {
    left: -10%;
    right: -18%;
    top: -8%;
    background-position: 55% 46%;
  }
}
@media (max-width: 768px) {
  .po-product-02__wash {
    left: -4%;
    right: -12%;
    top: -4%;
    bottom: -6%;
    background-position: 52% 44%;
    background-size: 95%;
  }
}

.po-product-02__product-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .po-product-02__product-img {
    max-width: 251px;
  }
}

.po-product-02__intro {
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .po-product-02__intro {
    margin-bottom: 23px;
  }
}
@media (max-width: 768px) {
  .po-product-02__intro {
    order: 1;
    margin: 0;
    position: relative;
    z-index: 1;
  }
}

.po-product-02__intro p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--ppo-text);
}
@media (max-width: 768px) {
  .po-product-02__intro p {
    font-size: 12px;
  }
}

.po-product-02__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 768px) {
  .po-product-02__specs {
    gap: 5px;
  }
}

@media (max-width: 768px) {
  .po-product-02__specs--brown {
    order: 3;
    position: relative;
    z-index: 1;
  }
}

.po-product-02__specs li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}

.po-product-02__bullet-paw {
  flex-shrink: 0;
  width: 18px;
  height: auto;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .po-product-02__bullet-paw {
    width: 15px;
    margin-top: 3px;
  }
}

.po-product-02__bullet-paw--narrow {
  margin-top: 5px;
}

.po-product-02__specs--brown span {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ppo-brown);
}
@media (max-width: 768px) {
  .po-product-02__specs--brown span {
    font-size: 12px;
  }
}

.po-product-02__uses {
  margin-top: 30px;
  padding: 1.25rem 1.875rem;
  background: rgba(231, 225, 240, 0.7);
}
@media (max-width: 991px) {
  .po-product-02__uses {
    margin-top: 23px;
  }
}
@media (max-width: 768px) {
  .po-product-02__uses {
    order: 4;
    margin-top: 0;
    padding: 10px;
    width: 100%;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .po-product-02__specs--violet {
    gap: 4px;
  }
}
.po-product-02__specs--violet span:last-child {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--ppo-violet);
}
@media (max-width: 768px) {
  .po-product-02__specs--violet span:last-child {
    font-size: 12px;
  }
}

.po-product-02__check {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 6px;
  color: var(--ppo-violet);
  display: block;
}
@media (max-width: 768px) {
  .po-product-02__check {
    width: 10px;
    height: 10px;
    margin-top: 4px;
  }
}

.po-product-02__meta {
  margin-top: 40px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--ppo-text);
}
@media (max-width: 991px) {
  .po-product-02__meta {
    margin-top: 31px;
  }
}
@media (max-width: 768px) {
  .po-product-02__meta {
    order: 5;
    margin-top: 16px;
    font-size: 12px;
    position: relative;
    z-index: 1;
  }
}

.po-product-02__meta-label {
  display: inline-block;
  margin: 0;
  min-width: 3rem;
}

.po-product-02__meta-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  align-items: start;
}
@media (max-width: 768px) {
  .po-product-02__meta-grid {
    gap: 0 29px;
  }
}

.po-product-02__ingredients {
  margin-top: 0.375rem;
}

.po-product-02__meta-value {
  margin: 0;
  line-height: 1.5;
  max-width: 100%;
}

.po-product-02__ingredients-body {
  margin: 0;
  line-height: 1.5;
  max-width: 100%;
}
@media (max-width: 768px) {
  .po-product-02__ingredients-body {
    line-height: 1.4;
  }
}

.po-product-02__price {
  margin: 24px 0 0;
  color: var(--ppo-brown);
}
@media (max-width: 991px) {
  .po-product-02__price {
    margin: 23px 0 0;
  }
}
@media (max-width: 768px) {
  .po-product-02__price {
    margin: 4px 0 0;
  }
}

.po-product-02__price-main {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .po-product-02__price-main {
    font-size: 20px;
  }
}

.po-product-02__price-suffix {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  margin-left: 0.0625rem;
  font-size: 20px;
}
@media (max-width: 991px) {
  .po-product-02__price-suffix {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .po-product-02__price-suffix {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

.po-product-02__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 20px 50px;
  border: 2px solid var(--lp-color-white);
  border-radius: var(--lp-radius-pill);
  background: var(--ppo-violet);
  color: var(--lp-color-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(175, 156, 137, 0.5);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
@media (max-width: 991px) {
  .po-product-02__cta {
    display: flex;
    margin-top: 23px;
    padding: 20px 38px;
    font-size: 19px;
    width: 100%;
    max-width: 24rem;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .po-product-02__cta {
    order: 6;
    align-self: center;
    width: auto;
    max-width: none;
    margin-top: 16px;
    padding: 12px 20px;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(175, 156, 137, 0.6);
  }
}

.po-product-02__cta:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.po-product-02__cta-paw {
  display: block;
  flex-shrink: 0;
  width: 25px;
  height: auto;
}
@media (max-width: 768px) {
  .po-product-02__cta-paw {
    width: 18px;
  }
}

.po-product-02__paws.paw-group {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  --ppo-paw-stagger: 0.26s;
  --ppo-paw-duration: 0.48s;
  --ppo-paw-tl-last-index: 3;
}

.po-product-02__paws--tl.paw-group {
  top: 45px;
  left: -12px;
  width: 260px;
  height: 220px;
  min-height: 8.5rem;
}
@media (max-width: 991px) {
  .po-product-02__paws--tl.paw-group {
    width: 215px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .po-product-02__paws--tl.paw-group {
    width: 152px;
    height: 140px;
    top: 36px;
    left: -4px;
  }
}

.po-product-02__paws--br.paw-group {
  right: -8px;
  bottom: 168px;
  width: 300px;
  height: 280px;
  min-height: 10rem;
}
@media (max-width: 991px) {
  .po-product-02__paws--br.paw-group {
    bottom: 138px;
    width: 276px;
    height: 261px;
    display: none !important;
  }
}
@media (max-width: 768px) {
  .po-product-02__paws--br.paw-group {
    bottom: 56px;
    width: 172px;
    height: 180px;
  }
}

.po-product-02__paws .paw {
  opacity: 0;
  filter: drop-shadow(0 1px 1px rgba(90, 60, 120, 0.12));
}

.po-product-02__paws.is-visible .paw {
  animation: paw-pop-lavande var(--ppo-paw-duration) cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--paw-i, 0) * var(--ppo-paw-stagger));
}

.po-product-02__paws--tl.is-visible .paw {
  animation: paw-pop-lavande-flipx var(--ppo-paw-duration) cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--paw-i, 0) * var(--ppo-paw-stagger));
}

.po-product-02__paws--br.is-visible .paw {
  animation-delay: calc((var(--ppo-paw-tl-last-index) + 1 + var(--paw-i, 0)) * var(--ppo-paw-stagger));
}

.po-product-02__paw--tl1 {
  --paw-i: 0;
  --paw-size: 31px;
  --paw-rot: -128deg;
  top: -2%;
  left: 4%;
}
@media (max-width: 768px) {
  .po-product-02__paw--tl1 {
    --paw-size: 18px;
    top: 158%;
    left: 4%;
  }
}

.po-product-02__paw--tl2 {
  --paw-i: 1;
  --paw-size: 29px;
  --paw-rot: -140deg;
  top: 34%;
  left: 42%;
}
@media (max-width: 768px) {
  .po-product-02__paw--tl2 {
    --paw-size: 18px;
    top: 174%;
    left: 6%;
  }
}

.po-product-02__paw--tl3 {
  --paw-i: 2;
  --paw-size: 28px;
  --paw-rot: -154deg;
  top: 6%;
  left: 62%;
}
@media (max-width: 768px) {
  .po-product-02__paw--tl3 {
    --paw-size: 18px;
    top: 186%;
    left: 30%;
  }
}

.po-product-02__paw--tl4 {
  --paw-i: 3;
  --paw-size: 30px;
  --paw-rot: -136deg;
  top: 54%;
  left: 74%;
}
@media (max-width: 768px) {
  .po-product-02__paw--tl4 {
    --paw-size: 18px;
    top: 224%;
    left: 30%;
  }
}

.po-product-02__paw--br1 {
  --paw-i: 0;
  --paw-size: 32px;
  --paw-rot: -148deg;
  top: 8%;
  right: 14%;
}
@media (max-width: 768px) {
  .po-product-02__paw--br1 {
    --paw-size: 18px;
    top: 88%;
  }
}

.po-product-02__paw--br2 {
  --paw-i: 1;
  --paw-size: 30px;
  --paw-rot: -158deg;
  top: 30%;
  right: 54%;
}
@media (max-width: 768px) {
  .po-product-02__paw--br2 {
    --paw-size: 18px;
    top: 110%;
  }
}

.po-product-02__paw--br3 {
  --paw-i: 2;
  --paw-size: 29px;
  --paw-rot: -168deg;
  top: 20%;
  right: 82%;
}
@media (max-width: 768px) {
  .po-product-02__paw--br3 {
    --paw-size: 18px;
    top: 100%;
  }
}

.po-product-02__paw--br4 {
  --paw-i: 3;
  --paw-size: 28px;
  --paw-rot: -130deg;
  top: 60%;
  right: 62%;
}
@media (max-width: 768px) {
  .po-product-02__paw--br4 {
    --paw-size: 18px;
    top: 140%;
  }
}

.po-product-02__paw--br5 {
  --paw-i: 4;
  --paw-size: 30px;
  --paw-rot: -152deg;
  top: 74%;
  right: 84%;
}
@media (max-width: 768px) {
  .po-product-02__paw--br5 {
    --paw-size: 18px;
    top: 154%;
  }
}

.lp-gift {
  position: relative;
  overflow: visible;
  background: var(--lp-color-white);
  --lg-gift-brown: #86654a;
}
@media (max-width: 768px) {
  .lp-gift.lp-section {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}

.lp-gift__inner {
  position: relative;
  z-index: 2;
}

.lp-gift__masthead {
  margin: 0 0 40px;
  text-align: center;
}
@media (max-width: 991px) {
  .lp-gift__masthead {
    margin: 0 0 31px;
  }
}
@media (max-width: 768px) {
  .lp-gift__masthead {
    margin: 0 0 16px;
  }
}

.lp-gift__title {
  margin: 0;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--lg-gift-brown);
}
@media (max-width: 768px) {
  .lp-gift__title {
    font-size: 20px;
  }
}

.lp-gift__inner .lp-gift__grid,
.lp-gift .lp-grid-2.lp-gift__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 88px;
}

.lp-gift__figure {
  margin: 0;
  flex: 0 1 480px;
  max-width: 480px;
}
@media (max-width: 991px) {
  .lp-gift__figure {
    flex: 0 1 360px;
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .lp-gift__figure {
    flex: none;
    width: 100%;
    max-width: 280px;
  }
}

.lp-gift .lp-grid-2.lp-gift__grid > .lp-gift__col {
  flex: 1 1 260px;
  min-width: 0;
}

.lp-gift .lp-grid-2.lp-gift__grid > .lp-gift__col--visual {
  flex: 0 1 100%;
}

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

.lp-gift__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: fit-content;
  max-width: 28rem;
  text-align: left;
}
@media (max-width: 768px) {
  .lp-gift__list {
    flex: none;
    max-width: 280px;
    gap: 4px;
  }
}

.lp-gift__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}
@media (max-width: 768px) {
  .lp-gift__list li {
    gap: 6px;
  }
}

.lp-gift__bullet-paw {
  flex-shrink: 0;
  width: 18px;
  height: auto;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .lp-gift__bullet-paw {
    width: 13px;
    margin-top: 3px;
  }
}

.lp-gift__list span {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--lg-gift-brown);
}
@media (max-width: 768px) {
  .lp-gift__list span {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .lp-gift__inner .lp-gift__grid {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .lp-gift__inner .lp-gift__grid {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
  }
}

.lp-gift__paws.paw-group {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  top: 15px;
  right: 38px;
  width: 240px;
  height: 200px;
  min-height: 7.75rem;
  --gift-paw-stagger: 0.26s;
  --gift-paw-duration: 0.48s;
}
@media (max-width: 991px) {
  .lp-gift__paws.paw-group {
    width: 200px;
    height: 184px;
  }
}
@media (max-width: 768px) {
  .lp-gift__paws.paw-group {
    display: none;
  }
}

.lp-gift__paws .paw {
  opacity: 0;
  filter: drop-shadow(0 1px 1px rgba(90, 60, 120, 0.12));
}

.lp-gift__paws.is-visible .paw {
  animation: paw-pop-lavande var(--gift-paw-duration) cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--paw-i, 0) * var(--gift-paw-stagger));
}

.lp-gift__paw--1 {
  --paw-i: 0;
  --paw-size: 30px;
  --paw-rot: -150deg;
  top: -4%;
  right: 10%;
}

.lp-gift__paw--2 {
  --paw-i: 1;
  --paw-size: 28px;
  --paw-rot: -136deg;
  top: 18%;
  right: 48%;
}

.lp-gift__paw--3 {
  --paw-i: 2;
  --paw-size: 27px;
  --paw-rot: -162deg;
  top: 40%;
  right: 6%;
}

.lp-gift__paw--4 {
  --paw-i: 3;
  --paw-size: 29px;
  --paw-rot: -128deg;
  top: 58%;
  right: 36%;
}

.lp-feature {
  background: var(--lp-color-beige);
}

.lp-feature__media {
  border-radius: var(--lp-radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575px) {
  .lp-feature__media {
    max-width: 400px;
    margin-inline: auto;
  }
}

@media (max-width: 575px) {
  .lp-feature__col--media {
    order: -1;
  }
}

.lp-testimonials {
  background: var(--lp-color-purple);
  text-align: center;
}

.lp-testimonials__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--lp-color-purple-dark);
}

.lp-testimonials__quote {
  font-size: 18px;
  font-style: normal;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 560px;
}
@media (max-width: 575px) {
  .lp-testimonials__quote {
    font-size: 16px;
  }
}

.lp-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
}

.lp-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(61, 61, 61, 0.25);
}

.lp-dots__dot--active {
  background: var(--lp-color-purple-dark);
  transform: scale(1.2);
}

.lp-detail {
  padding: var(--lp-space-section) 1rem;
}

.lp-detail--alt1 {
  background: var(--lp-color-white);
}

.lp-detail--alt2 {
  background: var(--lp-color-beige);
}

.lp-detail__grid {
  display: grid;
  gap: 50px;
  align-items: start;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .lp-detail__grid {
    gap: 38px;
  }
}
@media (max-width: 575px) {
  .lp-detail__grid {
    gap: var(--lp-space-block);
  }
}

.lp-detail--alt2 .lp-detail__grid {
  direction: rtl;
}

.lp-detail--alt2 .lp-detail__col {
  direction: ltr;
}

.lp-detail-gallery {
  display: grid;
  gap: 0.75rem;
}

.lp-detail-gallery__main {
  border-radius: var(--lp-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--lp-color-purple-soft);
}

.lp-detail-gallery__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lp-detail-gallery__thumb {
  border-radius: var(--lp-radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--lp-color-gray-box);
}

.lp-detail__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--lp-color-text-muted);
}

.lp-detail__list li {
  margin-bottom: 0.5rem;
}

.lp-gift__media {
  border-radius: var(--lp-radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--lp-color-gray-box);
}
@media (max-width: 768px) {
  .lp-gift__media {
    max-width: 280px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .lp-gift__col--visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .lp-gift .lp-heading,
  .lp-gift .lp-lead {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .lp-gift .lp-list-check {
    text-align: left;
    display: inline-block;
  }
}

.lp-gift__actions {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .lp-gift__actions {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .lp-gift .lp-grid-2.lp-gift__grid {
    flex-direction: column;
    align-items: center;
  }
}

.lp-wdr-close {
  position: relative;
  overflow: visible;
  background: #b189d1;
  --wdr-close-violet: #8967b4;
}

.lp-wdr-close.lp-section {
  padding: 0 0 56px;
}
@media (max-width: 991px) {
  .lp-wdr-close.lp-section {
    padding: 0 0 40px;
  }
}
@media (max-width: 768px) {
  .lp-wdr-close.lp-section {
    padding: 0 0 32px;
  }
}
@media (max-width: 575px) {
  .lp-wdr-close.lp-section {
    padding-bottom: 0;
  }
}

.lp-wdr-close__wave {
  box-sizing: border-box;
  width: 100vw;
  max-width: none;
  margin: -2px 0 0;
  margin-left: calc(50% - 50vw);
  line-height: 0;
  pointer-events: none;
}

.lp-wdr-close__wave-img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  transform: scaleY(-1) translateY(1px);
}

.lp-wdr-close__body {
  padding: 48px 1rem 32px;
  text-align: center;
}
@media (max-width: 991px) {
  .lp-wdr-close__body {
    padding: 38px 1rem 31px;
  }
}
@media (max-width: 768px) {
  .lp-wdr-close__body {
    padding: 24px 1rem 0;
  }
}

.lp-wdr-close__lead {
  margin: 0 0 40px;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.6;
  color: var(--lp-color-white, #ffffff);
}
@media (max-width: 991px) {
  .lp-wdr-close__lead {
    margin: 0 0 31px;
    font-size: 31px;
  }
}
@media (max-width: 768px) {
  .lp-wdr-close__lead {
    margin: 0 0 24px;
    font-size: 20px;
    line-height: 1.4;
  }
}

.lp-wdr-close__lead-line {
  display: block;
}

.lp-wdr-close__brandmark {
  margin: 0 auto 56px;
  max-width: 180px;
  width: 100%;
}
@media (max-width: 991px) {
  .lp-wdr-close__brandmark {
    margin: 0 auto 31px;
  }
}
@media (max-width: 768px) {
  .lp-wdr-close__brandmark {
    margin: 0 auto 36px;
    max-width: 140px;
  }
}

.lp-wdr-close__brand-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .lp-wdr-close__brand-img {
    max-width: 140px;
  }
}

.lp-wdr-close__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .lp-wdr-close__actions {
    gap: 23px;
  }
}
@media (max-width: 768px) {
  .lp-wdr-close__actions {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}

.lp-wdr-close__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 20px 50px;
  border-radius: var(--lp-radius-pill);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(175, 156, 137, 0.5);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
@media (max-width: 991px) {
  .lp-wdr-close__btn {
    padding: 20px 38px;
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .lp-wdr-close__btn {
    padding: 12px 20px;
    width: 100%;
    max-width: 336px;
    box-shadow: 0 0 10px rgba(175, 156, 137, 0.6);
  }
}

.lp-wdr-close__btn:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.lp-wdr-close__btn--primary {
  border: 2px solid var(--lp-color-white);
  background: var(--wdr-close-violet);
  color: var(--lp-color-white);
}

.lp-wdr-close__btn--ghost {
  border: 2px solid var(--wdr-close-violet);
  background: var(--lp-color-white);
  color: var(--wdr-close-violet);
}

.lp-wdr-close__btn-paw {
  flex-shrink: 0;
  width: 25px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .lp-wdr-close__btn-paw {
    width: 18px;
  }
}

.lp-wdr-close__btn-icon {
  flex-shrink: 0;
  width: 28px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .lp-wdr-close__btn-icon {
    width: 20px;
  }
}

.lp-wdr-footer {
  margin: 0;
  margin-top: -2px;
  padding: 40px 0 0;
  background: #b189d1;
  color: var(--lp-color-white, #ffffff);
}
@media (max-width: 991px) {
  .lp-wdr-footer {
    padding: 32px 0 0;
  }
}

.lp-wdr-footer__rule {
  box-sizing: border-box;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
}

.lp-wdr-footer__main {
  padding-inline: 1rem;
  padding-block: 40px;
}
@media (max-width: 991px) {
  .lp-wdr-footer__main {
    padding-block: 31px;
  }
}
@media (max-width: 575px) {
  .lp-wdr-footer__main {
    padding-block: 28px;
  }
}

.lp-wdr-footer__bottom {
  padding-inline: 1rem;
  padding-block: 40px;
}
@media (max-width: 991px) {
  .lp-wdr-footer__bottom {
    padding-block: 31px;
  }
}
@media (max-width: 575px) {
  .lp-wdr-footer__bottom {
    padding-block: 10px;
  }
}

.lp-wdr-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .lp-wdr-footer__row {
    gap: 23px;
  }
}
@media (max-width: 575px) {
  .lp-wdr-footer__row {
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }
}

.lp-wdr-footer__brand {
  display: inline-block;
  flex-shrink: 0;
}

.lp-wdr-footer__logo-paw {
  width: auto;
  max-width: 210px;
  height: auto;
  max-height: 44px;
  display: block;
}
@media (max-width: 575px) {
  .lp-wdr-footer__logo-paw {
    max-height: inherit;
    max-width: 209px !important;
  }
}

.lp-wdr-footer__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .lp-wdr-footer__nav {
    flex-direction: column;
  }
}

.lp-wdr-footer__link {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .lp-wdr-footer__link {
    white-space: normal;
  }
}

.lp-wdr-footer__link:hover {
  text-decoration: underline;
}

.lp-wdr-footer__copy {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.06em;
  text-align: center;
  color: inherit;
}

/*# sourceMappingURL=landing-page.css.map */
