/* ==========================================================================
   CSS変数定義
   ========================================================================== */
:root {
	--kv-extra-delay: 1s; /* KVアニメーション遅延時間（kvFadeInUp 800ms + 追加遅延） */
	--kv-start-top: 586px; /* PC版アニメーション起点 */
	--kv-start-bottom: 154px; /* SP版アニメーション起点 */
}

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

html {
	font-size: 62.5% !important; /* 1rem = 10px */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-size: 1.6rem;
	line-height: 1.6;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

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

a:hover {
	opacity: 0.7;
}

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

ul,
ol {
	list-style: none;
}

button {
	background: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	font: inherit;
}

input,
textarea,
select {
	outline: none;
	border: none;
	background: transparent;
	font: inherit;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ==========================================================================
   アニメーション定義
   ========================================================================== */
@keyframes petemoFadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes kvFadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes petemoBounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes petemoRotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes petemoRotateSlow {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes petemoScale {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes kvStar1Move {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 191px;
		left: 50%;
		transform: translateX(calc(-50% - 234px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvStar2Move {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 350px;
		left: 50%;
		transform: translateX(calc(-50% - 537px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvStar3Move {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 449px;
		left: 50%;
		transform: translateX(calc(-50% - 627px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvStar4Move {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 270px;
		left: 50%;
		transform: translateX(calc(-50% + 557px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvStar5Move {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 322px;
		left: 50%;
		transform: translateX(calc(-50% + 496px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvStar6Move {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 438px;
		left: 50%;
		transform: translateX(calc(-50% + 647px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvCheckMove {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 448px;
		left: 50%;
		transform: translateX(calc(-50% - 463px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvGiftMove {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 455px;
		left: 50%;
		transform: translateX(calc(-50% - 270px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvBellMove {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 173px;
		left: 50%;
		transform: translateX(calc(-50% + 458px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvCommentMove {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 33px;
		left: 50%;
		transform: translateX(calc(-50% + 449px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvCouponMove {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 189px;
		left: 50%;
		transform: translateX(calc(-50% - 529px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvPoint1Move {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 128px;
		left: 50%;
		transform: translateX(calc(-50% - 336px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvPoint2Move {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 186px;
		left: 50%;
		transform: translateX(calc(-50% + 316px)) scale(1);
		opacity: 1;
	}
}

/* カードアニメーション */
@keyframes kvCardLeftMove {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(7deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 242px;
		left: 50%;
		transform: translateX(calc(-50% - 299px)) scale(1) rotate(0);
		opacity: 1;
	}
}

@keyframes kvCardRightMove {
	0% {
		top: var(--kv-start-top);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(-7deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 242px;
		left: 50%;
		transform: translateX(calc(-50% + 299px)) scale(1) rotate(0);
		opacity: 1;
	}
}

@keyframes kvFloating {
	0%,
	100% {
		transform: scale(1) rotate(360deg) translateY(0px);
	}
	25% {
		transform: scale(1) rotate(360deg) translateY(-8px);
	}
	75% {
		transform: scale(1) rotate(360deg) translateY(5px);
	}
}

@keyframes kvFloatingSimple {
	0%,
	100% {
		transform: translateY(0px);
	}
	25% {
		transform: translateY(-8px);
	}
	75% {
		transform: translateY(5px);
	}
}

@keyframes kvFloatingRotate {
	0% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(10px) rotate(20deg);
	}

	100% {
		transform: translateY(0px) rotate(0deg);
	}
}

@keyframes kvBurstStar1 {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 45%;
		left: 50%;
		transform: translateX(calc(-50% - 120px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 30%;
		left: 50%;
		transform: translateX(calc(-50% - 200px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 191px;
		left: 50%;
		transform: translateX(calc(-50% - 234px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstStar2 {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 50%;
		left: 50%;
		transform: translateX(calc(-50% - 270px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 40%;
		left: 50%;
		transform: translateX(calc(-50% - 400px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 350px;
		left: 50%;
		transform: translateX(calc(-50% - 537px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstStar3 {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 55%;
		left: 50%;
		transform: translateX(calc(-50% - 310px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 48%;
		left: 50%;
		transform: translateX(calc(-50% - 470px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 449px;
		left: 50%;
		transform: translateX(calc(-50% - 627px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstStar4 {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 50%;
		left: 50%;
		transform: translateX(calc(-50% + 280px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 40%;
		left: 50%;
		transform: translateX(calc(-50% + 420px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 270px;
		left: 50%;
		transform: translateX(calc(-50% + 557px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstStar5 {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 52%;
		left: 50%;
		transform: translateX(calc(-50% + 250px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 42%;
		left: 50%;
		transform: translateX(calc(-50% + 370px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 322px;
		left: 50%;
		transform: translateX(calc(-50% + 496px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstStar6 {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 55%;
		left: 50%;
		transform: translateX(calc(-50% + 320px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 48%;
		left: 50%;
		transform: translateX(calc(-50% + 480px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 438px;
		left: 50%;
		transform: translateX(calc(-50% + 647px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstCheck {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 56%;
		left: 50%;
		transform: translateX(calc(-50% - 230px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 50%;
		left: 50%;
		transform: translateX(calc(-50% - 350px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 448px;
		left: 50%;
		transform: translateX(calc(-50% - 463px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstGift {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 58%;
		left: 50%;
		transform: translateX(calc(-50% - 135px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 52%;
		left: 50%;
		transform: translateX(calc(-50% - 200px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 455px;
		left: 50%;
		transform: translateX(calc(-50% - 270px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstBell {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 50%;
		left: 50%;
		transform: translateX(calc(-50% + 230px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 35%;
		left: 50%;
		transform: translateX(calc(-50% + 340px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 173px;
		left: 50%;
		transform: translateX(calc(-50% + 458px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstComment {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 45%;
		left: 50%;
		transform: translateX(calc(-50% + 225px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 25%;
		left: 50%;
		transform: translateX(calc(-50% + 340px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 33px;
		left: 50%;
		transform: translateX(calc(-50% + 449px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstCoupon {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 50%;
		left: 50%;
		transform: translateX(calc(-50% - 155px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 35%;
		left: 50%;
		transform: translateX(calc(-50% - 230px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 189px;
		left: 50%;
		transform: translateX(calc(-50% - 529px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstPoint1 {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 45%;
		left: 50%;
		transform: translateX(calc(-50% - 170px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 25%;
		left: 50%;
		transform: translateX(calc(-50% - 250px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 128px;
		left: 50%;
		transform: translateX(calc(-50% - 336px)) scale(1) rotate(360deg);
	}
}

@keyframes kvBurstPoint2 {
	0% {
		opacity: 0;
		top: 65%;
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
	}
	30% {
		opacity: 0.6;
		top: 58%;
		left: 50%;
		transform: translateX(calc(-50% + 160px)) scale(0.8) rotate(180deg);
	}
	60% {
		opacity: 0.8;
		top: 45%;
		left: 50%;
		transform: translateX(calc(-50% + 240px)) scale(1.1) rotate(270deg);
	}
	100% {
		opacity: 1;
		top: 186px;
		left: 50%;
		transform: translateX(calc(-50% + 316px)) scale(1) rotate(360deg);
	}
}

/* ==========================================================================
   メインスタイル（.petemo-app-lp スコープ）
   ========================================================================== */
.petemo-app-lp {
	font-family:
		"Rounded Mplus 1c", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN",
		"メイリオ", "Meiryo", sans-serif;
	color: #583c32;
	background: #ffffff;
	overflow-x: hidden;
	/* word-break: keep-all;
  overflow-wrap: anywhere; */
}

/* アニメーション用クラス */
.petemo-app-lp .fade-in-up {
	opacity: 0;
	transform: translateY(50px);
}

.petemo-app-lp .fade-in-up.is-visible {
	animation: petemoFadeInUp 300ms ease-in forwards;
}

/* KV専用のfade-in-upアニメーション */
.petemo-app-lp .kv__phone,
.petemo-app-lp .kv__title {
	opacity: 0;
	transform: translateY(50px);
}

.petemo-app-lp .kv__phone.kv-fade-in,
.petemo-app-lp .kv__title.kv-fade-in {
	animation: kvFadeInUp 800ms ease-out forwards;
}

/* カードアニメーション初期状態 */
.petemo-app-lp .kv__card-left,
.petemo-app-lp .kv__card-right {
	opacity: 0;
	animation-fill-mode: forwards;
}

/* カードアニメーション実行時 */
.petemo-app-lp .kv__card-left.is-kv-visible {
	animation: kvCardLeftMove 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(0.2s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__card-right.is-kv-visible {
	animation: kvCardRightMove 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(0.2s + var(--kv-extra-delay));
}

/* ==========================================================================
   KVセクション
   ========================================================================== */
.petemo-app-lp .kv {
	position: relative;
	height: 661px;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, #f9f6f0 100%);
	z-index: 0;
}

.petemo-app-lp .kv__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-image: url("../images/kv_bg.svg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.petemo-app-lp .kv__container {
	position: relative;
	z-index: 1;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 110px;
	height: 100%;
}

.petemo-app-lp .kv__subtitle {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.3333333333;
	text-align: center;
	white-space: nowrap;
}

.petemo-app-lp .kv__title {
	position: absolute;
	top: 32px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;

	max-width: 584px;
	width: 100%;
}

.petemo-app-lp .kv__title-text {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.petemo-app-lp .kv__title-svg {
	display: block;
	margin: 0 auto;
}

.petemo-app-lp .kv__title-svg--sp {
	display: none;
}

.petemo-app-lp .kv__title-normal {
	font-family: "Rounded Mplus 1c", sans-serif;
	font-size: 4rem;
	font-weight: 500;
	fill: #583c32;
}

.petemo-app-lp .kv__title-highlight {
	font-family: "Rounded Mplus 1c", sans-serif;
	font-size: 5rem;
	font-weight: 500;
	fill: #679328;
}

.petemo-app-lp .kv__phone {
	position: absolute;
	top: 146px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 352px;
	z-index: 10;
}

.petemo-app-lp .kv__card-left {
	z-index: 1;
	position: absolute;
	top: 242px;
	left: 50%;
	transform: translateX(calc(-50% - 299px));
	width: 288px;
}

.petemo-app-lp .kv__card-right {
	z-index: 1;
	position: absolute;
	top: 242px;
	left: 50%;
	transform: translateX(calc(-50% + 299px));
	width: 288px;
}

.petemo-app-lp .kv__coupon {
	position: absolute;
	top: 189px;
	left: 50%;
	transform: translateX(calc(-50% - 529px)) scale(1);
}

.petemo-app-lp .kv__point-1 {
	position: absolute;
	top: 128px;
	left: 50%;
	transform: translateX(calc(-50% - 336px)) scale(1);
}

.petemo-app-lp .kv__point-2 {
	position: absolute;
	top: 186px;
	left: 50%;
	transform: translateX(calc(-50% + 316px)) scale(1);
}

.petemo-app-lp .kv__star-1 {
	position: absolute;
	top: 191px;
	left: 50%;
	transform: translateX(calc(-50% - 234px)) scale(1);
}

.petemo-app-lp .kv__star-2 {
	position: absolute;
	top: 350px;
	left: 50%;
	transform: translateX(calc(-50% - 537px)) scale(1);
}

.petemo-app-lp .kv__star-3 {
	position: absolute;
	top: 449px;
	left: 50%;
	transform: translateX(calc(-50% - 627px)) scale(1);
}

.petemo-app-lp .kv__star-4 {
	position: absolute;
	top: 270px;
	left: 50%;
	transform: translateX(calc(-50% + 557px)) scale(1);
}
.petemo-app-lp .kv__star-5 {
	position: absolute;
	top: 322px;
	left: 50%;
	transform: translateX(calc(-50% + 496px)) scale(1);
}
.petemo-app-lp .kv__star-6 {
	position: absolute;
	top: 438px;
	left: 50%;
	transform: translateX(calc(-50% + 647px)) scale(1);
}

.petemo-app-lp .kv__check {
	position: absolute;
	top: 448px;
	left: 50%;
	transform: translateX(calc(-50% - 463px)) scale(1);
}

.petemo-app-lp .kv__gift {
	position: absolute;
	top: 455px;
	left: 50%;
	transform: translateX(calc(-50% - 270px)) scale(1);
}

.petemo-app-lp .kv__bell {
	position: absolute;
	top: 173px;
	left: 50%;
	transform: translateX(calc(-50% + 458px)) scale(1);
}

.petemo-app-lp .kv__comment {
	position: absolute;
	top: 33px;
	left: 50%;
	transform: translateX(calc(-50% + 449px)) scale(1);
}

/* KVアニメーション制御 - Direct Position版 */
.petemo-app-lp .kv__star-1,
.petemo-app-lp .kv__star-2,
.petemo-app-lp .kv__star-3,
.petemo-app-lp .kv__star-4,
.petemo-app-lp .kv__star-5,
.petemo-app-lp .kv__star-6,
.petemo-app-lp .kv__check,
.petemo-app-lp .kv__gift,
.petemo-app-lp .kv__bell,
.petemo-app-lp .kv__comment,
.petemo-app-lp .kv__coupon,
.petemo-app-lp .kv__point-1,
.petemo-app-lp .kv__point-2 {
	opacity: 0;
	animation-fill-mode: forwards;
}

/* アニメーション実行時のポジション指定 */
.petemo-app-lp .kv__star-1.is-kv-visible,
.petemo-app-lp .kv__star-2.is-kv-visible,
.petemo-app-lp .kv__star-3.is-kv-visible,
.petemo-app-lp .kv__star-4.is-kv-visible,
.petemo-app-lp .kv__star-5.is-kv-visible,
.petemo-app-lp .kv__star-6.is-kv-visible,
.petemo-app-lp .kv__check.is-kv-visible,
.petemo-app-lp .kv__gift.is-kv-visible,
.petemo-app-lp .kv__bell.is-kv-visible,
.petemo-app-lp .kv__comment.is-kv-visible,
.petemo-app-lp .kv__coupon.is-kv-visible,
.petemo-app-lp .kv__point-1.is-kv-visible,
.petemo-app-lp .kv__point-2.is-kv-visible {
	position: absolute;
}

/* アニメーション完了後の状態 */
.petemo-app-lp .kv-animation-complete {
	opacity: 1;
	animation: none;
}

.petemo-app-lp .kv__comment.kv-animation-complete {
	top: 33px;
	left: 50%;
	transform: translateX(calc(-50% + 449px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__comment.kv-animation-complete .kv__comment-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__star-1.kv-animation-complete {
	top: 191px;
	left: 50%;
	transform: translateX(calc(-50% - 234px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__star-1.kv-animation-complete .kv__star-1-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__star-2.kv-animation-complete {
	top: 350px;
	left: 50%;
	transform: translateX(calc(-50% - 537px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__star-2.kv-animation-complete .kv__star-2-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__star-3.kv-animation-complete {
	top: 449px;
	left: 50%;
	transform: translateX(calc(-50% - 627px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__star-3.kv-animation-complete .kv__star-3-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__star-4.kv-animation-complete {
	top: 270px;
	left: 50%;
	transform: translateX(calc(-50% + 557px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__star-4.kv-animation-complete .kv__star-4-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__star-5.kv-animation-complete {
	top: 322px;
	left: 50%;
	transform: translateX(calc(-50% + 496px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__star-5.kv-animation-complete .kv__star-5-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__star-6.kv-animation-complete {
	top: 438px;
	left: 50%;
	transform: translateX(calc(-50% + 647px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__star-6.kv-animation-complete .kv__star-6-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__check.kv-animation-complete {
	top: 448px;
	left: 50%;
	transform: translateX(calc(-50% - 463px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__check.kv-animation-complete .kv__check-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__gift.kv-animation-complete {
	top: 455px;
	left: 50%;
	transform: translateX(calc(-50% - 270px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__gift.kv-animation-complete .kv__gift-inner {
	animation: kvFloatingRotate 15s ease-in-out infinite;
}

.petemo-app-lp .kv__bell.kv-animation-complete {
	top: 173px;
	left: 50%;
	transform: translateX(calc(-50% + 458px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__bell.kv-animation-complete .kv__bell-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__coupon.kv-animation-complete {
	top: 189px;
	left: 50%;
	transform: translateX(calc(-50% - 529px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__coupon.kv-animation-complete .kv__coupon-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__point-1.kv-animation-complete {
	top: 128px;
	left: 50%;
	transform: translateX(calc(-50% - 336px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__point-1.kv-animation-complete .kv__point-1-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

.petemo-app-lp .kv__point-2.kv-animation-complete {
	top: 186px;
	left: 50%;
	transform: translateX(calc(-50% + 316px)) scale(1);
	animation: none;
}

.petemo-app-lp .kv__point-2.kv-animation-complete .kv__point-2-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
}

/* Path円弧アニメーション + 浮遊アニメーション */
.petemo-app-lp .kv__star-1.is-kv-visible {
	animation: kvStar1Move 2.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	animation-delay: calc(0.1s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-1.is-kv-visible .kv__star-1-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
	animation-delay: calc(2.3s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-2.is-kv-visible {
	animation: kvStar2Move 2.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(0.15s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-2.is-kv-visible .kv__star-2-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
	animation-delay: calc(2.45s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-3.is-kv-visible {
	animation: kvStar3Move 2.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(0.2s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-3.is-kv-visible .kv__star-3-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
	animation-delay: calc(2.6s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-4.is-kv-visible {
	animation: kvStar4Move 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	animation-delay: calc(0.05s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-4.is-kv-visible .kv__star-4-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
	animation-delay: calc(2.15s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-5.is-kv-visible {
	animation: kvStar5Move 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(0.25s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-5.is-kv-visible .kv__star-5-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
	animation-delay: calc(2.45s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-6.is-kv-visible {
	animation: kvStar6Move 2.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(0.3s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__star-6.is-kv-visible .kv__star-6-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
	animation-delay: calc(2.6s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__check.is-kv-visible {
	animation: kvCheckMove 2.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	animation-delay: calc(0.35s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__check.is-kv-visible .kv__check-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
	animation-delay: calc(2.55s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__gift.is-kv-visible {
	animation: kvGiftMove 2.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(0.4s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__gift.is-kv-visible .kv__gift-inner {
	animation: kvFloatingRotate 15s ease-in-out infinite;
	animation-delay: 0s;
}

.petemo-app-lp .kv__bell.is-kv-visible {
	animation: kvBellMove 2.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(0.45s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__bell.is-kv-visible .kv__bell-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
	animation-delay: calc(2.5s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__comment.is-kv-visible {
	animation: kvCommentMove 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	animation-delay: calc(0.2s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__comment.is-kv-visible .kv__comment-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
	animation-delay: calc(0.6s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__coupon.is-kv-visible {
	animation: kvCouponMove 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(0.55s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__coupon.is-kv-visible .kv__coupon-inner {
	animation: kvFloatingRotate 15s ease-in-out infinite;
	animation-delay: 0s;
}

.petemo-app-lp .kv__point-1.is-kv-visible {
	animation: kvPoint1Move 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(0.6s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__point-1.is-kv-visible .kv__point-1-inner {
	animation: kvFloatingSimple 15s ease-in-out infinite;
	animation-delay: calc(2.7s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__point-2.is-kv-visible {
	animation: kvPoint2Move 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	animation-delay: calc(0.65s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__point-2.is-kv-visible .kv__point-2-inner {
	animation: kvFloatingRotate 15s ease-in-out infinite;
	animation-delay: calc(2.85s + var(--kv-extra-delay));
}

.petemo-app-lp .kv__speech-bubble {
	position: absolute;
	top: -140px;
	left: -200px;
	z-index: 1;
}

.petemo-app-lp .kv__speech-bubble-image {
	width: auto;
	height: auto;
	max-width: 424px;
}

.petemo-app-lp .kv__speech-bubble-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	white-space: nowrap;
}

/* ==========================================================================
   アプリCTA（固定）
   ========================================================================== */
.petemo-app-lp .app-cta {
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 10;
}

.petemo-app-lp .app-cta__speech-bubble {
	position: absolute;
	top: -140px;
	left: -200px;
	z-index: 1;
}

.petemo-app-lp .app-cta__speech-bubble-image {
	width: auto;
	height: auto;
	max-width: 424px;
}

.petemo-app-lp .app-cta__speech-bubble-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	white-space: nowrap;
}

.petemo-app-lp .app-cta__download-btn {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 197px;
	height: 202px;
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 700;
	text-align: center;
	padding: 18px 0 0 0;
}
.petemo-app-lp .app-cta__download-btn:hover {
	opacity: 1;
}

.petemo-app-lp .app-cta__download-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/cta-bg@2x.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	animation: petemoRotateSlow 20s linear infinite;
	z-index: -1;
	transform-origin: 97px 99px;
}

.petemo-app-lp .app-cta__download-btn-arrow {
	margin-top: 8px;
	font-size: 2.4rem;
	position: relative;
	z-index: 1;
	width: 41px;
	height: 41px;
	background-color: #eeb300;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.petemo-app-lp .app-cta__download-btn-arrow-icon {
	position: relative;
	top: 0;
	transition: top 0.2s ease;
}

.petemo-app-lp .app-cta__download-btn:hover .app-cta__download-btn-arrow-icon {
	top: 4px;
}

/* ==========================================================================
   アプリ紹介セクション
   ========================================================================== */
.petemo-app-lp .app-intro {
	background: #fff;
}

.petemo-app-lp .app-intro__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 110px;
}

.petemo-app-lp .app-intro__header {
	text-align: center;
	margin-bottom: 83px;
}

.petemo-app-lp .app-intro__icon {
	width: 130px;
	height: 130px;
	margin-bottom: 20px;
	border-radius: 24px;
	margin:0px auto 20px;/* add to*/
}

.petemo-app-lp .app-intro__title {
	font-size: 3.2rem;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 20px;
}

.petemo-app-lp .app-intro__lead {
	font-size: 1.8rem;
	line-height: 1.6;
}

.petemo-app-lp .app-intro__feature {
	position: relative;
	padding-top: 43px;
	padding-bottom: 80px;
	margin-left: 360px;
	margin-top: -43px;
}

.petemo-app-lp .app-intro__feature-inner {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #f9f6f0;
	min-height: 314px;
	border-top-right-radius: 250px;
	border-bottom-right-radius: 250px;
	overflow: hidden;
	padding: 40px 250px 60px 120px;
}

.petemo-app-lp .app-intro__feature-image {
	z-index: 1;
	position: absolute;
	left: -360px;
	top: -16px;
	bottom: 0;
	margin: auto 0;
}

.petemo-app-lp .app-intro__feature--right {
	margin-left: 0;
	margin-right: 360px;
}

.petemo-app-lp .app-intro__feature--right .app-intro__feature-image {
	left: auto;
	right: -360px;
}

.petemo-app-lp .app-intro__feature--right .app-intro__feature-inner {
	padding-left: 250px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 250px;
	border-bottom-left-radius: 250px;
	padding-right: 120px;
}

.petemo-app-lp .app-intro__feature-content {
	display: flex;
	flex: 1;
	position: relative;
	flex-direction: column;
	gap: 16px;
}

.petemo-app-lp .app-intro__feature-title {
	font-size: 3.2rem;
	font-weight: 500;
	color: #679328;
	line-height: 1.75;
}

.petemo-app-lp .app-intro__feature-text {
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: 500;
}

.petemo-app-lp .app-intro__feature-illust {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.petemo-app-lp .app-intro__feature--right .app-intro__feature-illust {
	right: auto;
	left: 0;
}

/* 足跡アニメーション */
@keyframes pawprintShow {
	from {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes pawprintHide {
	from {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: 0;
		transform: scale(0.5);
	}
}

/* ==========================================================================
   SP版KVアニメーション用keyframes
   ========================================================================== */
@keyframes kvCardLeftMoveSP {
	0% {
		bottom: var(--kv-start-bottom);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(7deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		bottom: 227px;
		left: 50%;
		transform: translateX(calc(-50% - 130px)) scale(1) rotate(-7deg);
		opacity: 1;
	}
}

@keyframes kvCardRightMoveSP {
	0% {
		bottom: var(--kv-start-bottom);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(-7deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		bottom: 227px;
		left: 50%;
		transform: translateX(calc(-50% + 130px)) scale(1) rotate(7deg);
		opacity: 1;
	}
}

@keyframes kvCouponMoveSP {
	0% {
		bottom: var(--kv-start-bottom);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		bottom: 181px;
		left: 50%;
		transform: translateX(calc(-50% - 127px)) scale(1) rotate(-24deg);
		opacity: 1;
	}
}

@keyframes kvPoint2MoveSP {
	0% {
		bottom: var(--kv-start-bottom);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		bottom: 329px;
		left: 50%;
		transform: translateX(calc(-50% + 134px)) scale(1) rotate(0deg);
		opacity: 1;
	}
}

@keyframes kvStar1MoveSP {
	0% {
		bottom: var(--kv-start-bottom);
		left: 50%;
		transform: translateX(-50%) scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		bottom: 132px;
		left: 50%;
		transform: translateX(calc(-50% - 140px)) scale(1);
		opacity: 1;
	}
}

@keyframes kvStar2MoveSP {
	0% {
		bottom: var(--kv-start-bottom);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		bottom: 153px;
		left: 50%;
		transform: translateX(calc(-50% - 107px)) scale(1) rotate(29deg);
		opacity: 1;
	}
}

@keyframes kvStar4MoveSP {
	0% {
		bottom: var(--kv-start-bottom);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		bottom: 210px;
		left: 50%;
		transform: translateX(calc(-50% + 115px)) scale(1) rotate(0deg);
		opacity: 1;
	}
}

@keyframes kvStar5MoveSP {
	0% {
		bottom: var(--kv-start-bottom);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		bottom: 373px;
		left: 50%;
		transform: translateX(calc(-50% + 111px)) scale(1) rotate(-6deg);
		opacity: 1;
	}
}

@keyframes kvCheckMoveSP {
	0% {
		bottom: var(--kv-start-bottom);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		bottom: 132px;
		left: 50%;
		transform: translateX(calc(-50% + 133px)) scale(1) rotate(23deg);
		opacity: 1;
	}
}

@keyframes kvGiftMoveSP {
	0% {
		bottom: var(--kv-start-bottom);
		left: 50%;
		transform: translateX(-50%) scale(0.1) rotate(0deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		bottom: 323px;
		left: 50%;
		transform: translateX(calc(-50% - 123px)) scale(1) rotate(0deg);
		opacity: 1;
	}
}

/* ==========================================================================
   足跡スタイル（.app-introセクション用）
   ========================================================================== */
.petemo-app-lp .app-intro__pawprints {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 5;
}

.petemo-app-lp .app-intro__pawprints--left {
	left: -258px;
	bottom: 20px;
}

.petemo-app-lp .app-intro__pawprints--right {
	right: -251px;
	bottom: 7px;
}

.petemo-app-lp .app-intro__pawprint {
	width: 22px;
	height: 22px;
	position: relative;
}

.petemo-app-lp .app-intro__pawprint-inner {
	width: 100%;
	height: 100%;
	background-image: url("../images/pawprint.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transform: scale(0.5);
}

.petemo-app-lp .app-intro__pawprints--left .app-intro__pawprint--1 {
	transform: rotate(-10deg);
	left: 0px;
}

.petemo-app-lp .app-intro__pawprints--left .app-intro__pawprint--2 {
	transform: rotate(-3deg);
	left: -4px;
	top: 7px;
}

.petemo-app-lp .app-intro__pawprints--left .app-intro__pawprint--3 {
	transform: rotate(-15deg);
	left: -46px;
	top: -15px;
}

.petemo-app-lp .app-intro__pawprints--left .app-intro__pawprint--4 {
	transform: rotate(-28deg);
	left: -36px;
	top: -7px;
}

.petemo-app-lp .app-intro__pawprints--right .app-intro__pawprint--1 {
	transform: rotate(-88deg);
	right: 0px;
}

.petemo-app-lp .app-intro__pawprints--right .app-intro__pawprint--2 {
	transform: rotate(-96deg);
	right: -3px;
	bottom: -8px;
}

.petemo-app-lp .app-intro__pawprints--right .app-intro__pawprint--3 {
	transform: rotate(-74deg);
	right: -45px;
	bottom: 14px;
}

.petemo-app-lp .app-intro__pawprints--right .app-intro__pawprint--4 {
	transform: rotate(-64deg);
	right: -35px;
	bottom: 6px;
}

.petemo-app-lp .app-intro__pawprint.is-visible .app-intro__pawprint-inner {
	animation: pawprintShow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.petemo-app-lp .app-intro__pawprint.is-hiding .app-intro__pawprint-inner {
	animation: pawprintHide 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
	animation-fill-mode: forwards;
}

/* 各足跡の遅延設定 - 表示時 */
.petemo-app-lp .app-intro__pawprint--1.is-visible .app-intro__pawprint-inner {
	animation-delay: 0.1s;
}

.petemo-app-lp .app-intro__pawprint--2.is-visible .app-intro__pawprint-inner {
	animation-delay: 0.2s;
}

.petemo-app-lp .app-intro__pawprint--3.is-visible .app-intro__pawprint-inner {
	animation-delay: 0.3s;
}

.petemo-app-lp .app-intro__pawprint--4.is-visible .app-intro__pawprint-inner {
	animation-delay: 0.4s;
}

/* 各足跡の遅延設定 - 非表示時（逆順） */
.petemo-app-lp .app-intro__pawprint--1.is-hiding .app-intro__pawprint-inner {
	animation-delay: 0.3s;
}

.petemo-app-lp .app-intro__pawprint--2.is-hiding .app-intro__pawprint-inner {
	animation-delay: 0.2s;
}

.petemo-app-lp .app-intro__pawprint--3.is-hiding .app-intro__pawprint-inner {
	animation-delay: 0.1s;
}

.petemo-app-lp .app-intro__pawprint--4.is-hiding .app-intro__pawprint-inner {
	animation-delay: 0s;
}

/* ==========================================================================
   機能詳細セクション
   ========================================================================== */
.petemo-app-lp .features {
	position: relative;
	padding: 80px 0;
	background: #f9f6f0;
	border-radius: 80px 80px 0px 0px;
	max-width: 1440px;
	margin: 0 auto;
}

.petemo-app-lp .features + .features-section-spacer {
	width: 100%;
	aspect-ratio: 1440 / 78;
	background: #f9f6f0;
}

.petemo-app-lp .features__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 110px;
}

.petemo-app-lp .features__title {
	font-size: 3.2rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 40px;
	line-height: 1.75;
}

.petemo-app-lp .features__title-accent {
	color: #679328;
}

.petemo-app-lp .features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 80px;
}

.petemo-app-lp .features__item:nth-child(2) {
	top: 40px;
}

.petemo-app-lp .features__item {
	position: relative;
	background: white;
	border-radius: 16px;
	padding: 40px 16px;
	text-align: center;
	min-width: 0;
}

.petemo-app-lp .features__item-icon {
	max-width: 280px;
	height: auto;
	margin: 0 auto 24px;
}

.petemo-app-lp .features__item-title {
	font-size: 2.4rem;
	font-weight: 700;
	color: #679328;
	margin-bottom: 16px;
	line-height: 1.4;
}

.petemo-app-lp .features__item-text {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.6;
}

.petemo-app-lp .features__video {
	text-align: center;
}

.petemo-app-lp .features__video-title {
	font-size: 3.2rem;
	line-height: 1.75;
	font-weight: 500;
	margin-bottom: 40px;
}

.petemo-app-lp .features__video-wrapper {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	background: gray;
	border-radius:20px;/*add to*/
}

.petemo-app-lp .features__video-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
	border-radius:20px;/*add to*/
}

/* ==========================================================================
   キャンペーンセクション
   ========================================================================== */
.petemo-app-lp .campaign {
	padding: 30px 0;
	background: #fff4bb;
	position: relative;
	overflow: hidden;
}

.petemo-app-lp .campaign__inner {
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
	padding: 96px 0 calc(50px + 100vw * 78 / 1440);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.petemo-app-lp .campaign__inner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/campaign_confetti.svg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	pointer-events: none;
	z-index: 2;
}
.petemo-app-lp .campaign__container {
	max-width: 1007px;
	margin: 0 110px;
	position: relative;
	width: 100%;
	/* z-index: 2; */
}

.petemo-app-lp .campaign__ribbon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: calc(100% - 210px);
	min-height: 94px;
	max-width: 798px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #f0821a;
	color: #ffffff;
	padding: 8px 60px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.9;
	letter-spacing: 0;
	text-align: center;
	clip-path: polygon(0% 0%, 100% 0%, 96% 50%, 100% 100%, 0% 100%, 4% 50%);
}

.petemo-app-lp .campaign__ribbon-main {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	color: #ffffff;
}

.petemo-app-lp .campaign__ribbon-sub {
	display: block;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.1875;
	color: #ffffff;
}

.petemo-app-lp .campaign__title {
	font-size: 3.2rem;
	font-weight: 500;
	color: #333;
	margin-bottom: 40px;
}

.petemo-app-lp .campaign__content {
	position: relative;
}

.petemo-app-lp .campaign__content-inner {
	position: relative;
	z-index: 10;
	background: white;
	border-radius: 30px;
	padding: 80px 40px 40px 40px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 32px;
}

.petemo-app-lp .campaign__coupon {
	flex: 0 0 auto;
	text-align: center;
	transform: rotate(-3deg);
}

.petemo-app-lp .campaign__coupon img {
	max-width: 100%;
	height: auto;
}

.petemo-app-lp .campaign__text {
	flex: 1;
}

.petemo-app-lp .campaign__text-main {
	font-size: 2.1rem;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 24px;
}

.petemo-app-lp .campaign__text-highlight {
	color: #679328;
	font-weight: 800;
}

.petemo-app-lp .campaign__period {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.6;
	background: #eaf0da;
	padding: 6px 24px;
	border-radius: 140px;
	min-height: 41px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.petemo-app-lp .campaign__decoration {
	position: absolute;
	pointer-events: none;
}

.petemo-app-lp .campaign__decoration img {
	max-width: 100%;
	height: auto;
}

.petemo-app-lp .campaign__decoration--yellow-top {
	top: 16px;
	left: -116px;
	z-index: 1;
}

.petemo-app-lp .campaign__decoration--yellow-bottom {
	bottom: 0;
	right: -124px;
	z-index: 1;
}

.petemo-app-lp .campaign__decoration--green-top {
	top: -16px;
	right: -129px;
	z-index: 10;
}

.petemo-app-lp .campaign__decoration--green-bottom {
	bottom: -54px;
	left: -124px;
	z-index: 10;
}

.petemo-app-lp .campaign__disclaimer {
	margin-top: 10px;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
}

/* ==========================================================================
   ポイントシステムセクション
   ========================================================================== */
.petemo-app-lp .point-system {
	padding: 40px 0 calc((100% / 1440 * 78) + 120px);
	background: #679328;
}

.petemo-app-lp .point-system__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 110px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.petemo-app-lp .point-system__title {
	font-size: 3.2rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
	color: #ffffff;
}

.petemo-app-lp .point-system__content {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.petemo-app-lp .point-system__content-container {
	background: white;
	border-radius: 40px;
	padding: 40px;
}

.petemo-app-lp .point-system__block {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.petemo-app-lp .point-system__block:last-child {
	margin-bottom: 0;
}

.petemo-app-lp .point-system__block-title {
	font-size: 2.8rem;
	font-weight: 500;
	color: #679328;
	/* margin-bottom: 24px; */
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.petemo-app-lp .point-system__block-title::before,
.petemo-app-lp .point-system__block-title::after {
	content: "";
	width: 20px;
	height: 16px;
	background-image: url("../images/paw_icon.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}

.petemo-app-lp .point-system__earn {
	text-align: center;
}

.petemo-app-lp .point-system__earn-card {
	min-width: 520px;
	display: inline-block;
	background:
		linear-gradient(
			-45deg,
			#63a550 25%,
			transparent 25%,
			transparent 50%,
			#63a550 50%,
			#63a550 75%,
			transparent 75%,
			transparent
		),
		linear-gradient(
			-45deg,
			transparent 25%,
			#68ac55 25%,
			#68ac55 50%,
			transparent 50%,
			transparent 75%,
			#68ac55 75%,
			#68ac55
		);
	background-size: 48px 48px;
	border-radius: 16px;
	padding: 16px;
	text-align: center;
	margin-bottom: 30px;
}

.petemo-app-lp .point-system__earn-label {
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 16px;
	line-height: 1.6;
}

.petemo-app-lp .point-system__earn-value {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fffee6;
	border-radius: 16px;
	padding: 20px;
}

.petemo-app-lp .point-system__earn-value-main {
	display: flex;
	align-items: baseline;
	position: relative;
}

.petemo-app-lp .point-system__earn-number {
	font-size: 12rem;
	font-weight: 500;
	color: #679328;
	line-height: 1;
}

.petemo-app-lp .point-system__earn-unit {
	font-size: 1.8rem;
	color: #679328;
	font-weight: 800;
	list-style: 1;
}

.petemo-app-lp .point-system__earn-badge {
	background: #679328;
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: 500;
	padding: 0 12px;
	border-radius: 70px;
	margin-left: 6px;
	line-height: 1;
	white-space: nowrap;
	height: 22px;
	display: flex;
	align-items: center;
}

.petemo-app-lp .point-system__earn-rate {
	position: absolute;
	top: 0;
	left: 100px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: 500;
	color: #679328;
	text-align: center;
	background-image: url(../images/speech_bubble_earn.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 160px;
	height: 76px;
	padding: 10px 24px;
	gap: 0;
	line-height: 1.2;
	white-space: nowrap;
}

.petemo-app-lp .point-system__earn-rate-small {
	font-size: 1.1rem;
}

.petemo-app-lp .point-system__highlight {
	color: #679328;
	font-size: 2.4rem;
	font-weight: 500;
}

.petemo-app-lp .point-system__highlight-number {
	font-size: 4rem;
}

.petemo-app-lp .point-system__days {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	max-width: 980px;
	width: 100%;
	/* height: 284px; */
	background: #f9f6f0;
	border-radius: 24px;
	padding: 40px 32px;
	margin: 0 auto;
	box-sizing: border-box;
}

.petemo-app-lp .point-system__day {
	position: relative;
	min-width: 0;
}

/* 背景画像は各valueに設定 */

.petemo-app-lp .point-system__day-label {
	display: block;
	background: #679328;
	color: #ffffff;
	padding: 14px 20px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.4;
	clip-path: polygon(0% 0%, 100% 0%, 96% 50%, 100% 100%, 0% 100%, 4% 50%);
	margin-bottom: 20px;
	text-align: center;
}

.petemo-app-lp .point-system__day-value {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

/* 背景画像を各valueに設定 */
.petemo-app-lp .point-system__day--dog .point-system__day-value {
	background: url("../images/day_bg_1.svg") no-repeat center;
	background-size: 140px 140px;
}

.petemo-app-lp .point-system__day--cat .point-system__day-value {
	background: url("../images/day_bg_2.svg") no-repeat center;
	background-size: 140px 140px;
}

.petemo-app-lp .point-system__day--customer .point-system__day-value {
	background: url("../images/day_bg_3.svg") no-repeat center;
	background-size: 140px 140px;
}

/* テキストサイズ別スタイル */
.petemo-app-lp .point-system__day-condition {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.6;
}

.petemo-app-lp .point-system__day-service {
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1.6;
}

.petemo-app-lp .point-system__day-number {
	font-size: 4rem;
	font-weight: 500;
	line-height: 1;
}

.petemo-app-lp .point-system__day-unit {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.6;
}

.petemo-app-lp .point-system__day-amount {
	display: inline-block;
	white-space: nowrap;
}

.petemo-app-lp .point-system__divider {
	height: 52px;
	background: url("../images/point_system_divider.svg") repeat-x center;
	background-size: auto 4px;
}

.petemo-app-lp .point-system__use-description {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}

.petemo-app-lp .point-system__use-card {
	background:
		linear-gradient(
			-45deg,
			#63a550 25%,
			transparent 25%,
			transparent 50%,
			#63a550 50%,
			#63a550 75%,
			transparent 75%,
			transparent
		),
		linear-gradient(
			-45deg,
			transparent 25%,
			#68ac55 25%,
			#68ac55 50%,
			transparent 50%,
			transparent 75%,
			#68ac55 75%,
			#68ac55
		);
	background-size: 48px 48px;
	border-radius: 16px;
	padding: 16px;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.petemo-app-lp .point-system__use-label {
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 16px;
	line-height: 1.6;
}

.petemo-app-lp .point-system__use-value {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fffee6;
	border-radius: 16px;
	padding: 34px 24px;
	flex: 1;
	height: 100%;
}

.petemo-app-lp .point-system__use-service {
	font-size: 1.8rem;
	font-weight: 800;
	color: #679328;
	line-height: 1.7;
}

.petemo-app-lp .point-system__use-amount {
	color: #679328;
	font-weight: 800;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: 1fr 1fr;
	align-items: center;
	gap: 4px 0;
}

.petemo-app-lp .point-system__use-amount-number {
	font-size: 12rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.05em;
	margin-right: 0.07em;
	grid-row: 1 / 3;
	grid-column: 1;
}

.point-system__use-amount-prefix {
	font-size: 1.9rem;
	line-height: 1;
	grid-row: 1;
	grid-column: 2;
	align-self: end;
}
.petemo-app-lp .point-system__use-amount-suffix {
	font-size: 4rem;
	line-height: 1;
	font-weight: 800;
	grid-row: 2;
	grid-column: 2;
	align-self: start;
}

/* タブレット表示（1160px以下） */
@media (max-width: 1160px) {
	.petemo-app-lp .point-system__use-amount {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 4px 0;
	}

	.petemo-app-lp .point-system__use-amount-prefix {
		order: 1;
		align-self: center;
	}

	.petemo-app-lp .point-system__use-amount-number {
		order: 2;
		margin-right: 0;
	}

	.petemo-app-lp .point-system__use-amount-suffix {
		order: 3;
		align-self: center;
	}
}

.petemo-app-lp .point-system__use-content {
	display: flex;
	align-items: stretch;
	gap: 24px;
	/* margin-top: 30px; */
}

.petemo-app-lp .point-system__use-services {
	flex: 1;
	text-align: center;
	background: #f9f6f0;
	border-radius: 16px;
	padding: 16px;
	display: flex;
	flex-direction: column;
}

.petemo-app-lp .point-system__use-services-title {
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.6;
}

.petemo-app-lp .point-system__use-services-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #ffffff;
	border-radius: 16px;
	padding: 16px 24px;
	flex: 1;
}

.petemo-app-lp .point-system__use-services-icons img {
	max-width: 100%;
	height: auto;
}

.petemo-app-lp .point-system__use-services-text {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
}

.petemo-app-lp .point-system__howto {
	text-align: center;
}

.petemo-app-lp .point-system__howto-title {
	font-size: 3.2rem;
	font-weight: 500;
	margin-bottom: 40px;
	line-height: 1.75;
	color: #ffffff;
}

.petemo-app-lp .point-system__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.petemo-app-lp .point-system__step {
	background: #ffffff;
	border-radius: 16px;
	text-align: center;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.petemo-app-lp .point-system__step-label {
	position: relative;
	background: #fff4bb;
	color: #7a9c59;
	padding: 0 20px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1.4;
}
.petemo-app-lp .point-system__step-body {
	padding: 24px 20px 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.petemo-app-lp .point-system__step-icon {
	width: 204px;
	height: 204px;
	margin: 20px auto;
}

.petemo-app-lp .point-system__step-title {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.4;
	color: #679328;
}

.petemo-app-lp .point-system__step-text-wrapper {
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
	/* height: 100%; */
}
.petemo-app-lp .point-system__step-text {
	font-size: 1.4rem;
	line-height: 1.8;
}

/* ==========================================================================
   ダウンロードCTAセクション
   ========================================================================== */
.petemo-app-lp .download {
	padding: 40px 0 32px;
	background: #f9f6f0;
	/* position: relative; */
	/* overflow: hidden; */
	/* padding-bottom: 32px; */
}

.petemo-app-lp .download__container {
	position: relative;
	max-width: 1440px;
	height: 825px;
	margin: 0 auto;
	padding: 0 110px;
	background: url(../images/download_bg@2x.png) no-repeat center center;
	background-size: cover;
}

.petemo-app-lp .download__title {
	font-size: 4rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 60px;
	line-height: 1.4;
}

.petemo-app-lp .download__title-accent {
	color: #679328;
}

.petemo-app-lp .download__content {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 252px;
	left: 50%;
	transform: translateX(calc(-50% + 181px));
}

.petemo-app-lp .download__phone {
	flex: 0 0 auto;
}

.petemo-app-lp .download__info {
	text-align: center;
}

.petemo-app-lp .download__text {
	/* font-size: 2.4rem; */
	font-size: clamp(1.5rem, 0.469rem + 2.15vw, 2.4rem);
	white-space: nowrap;
	font-weight: 700;
	margin-bottom: 22px;
	line-height: 1.4;
}

.petemo-app-lp .download__text-accent {
	color: #679328;
}

.petemo-app-lp .download__qr-buttons-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items:center;/*add to*/
}

.petemo-app-lp .download__qr {
	position: relative;
	display: inline-block;
	/* margin-bottom: 30px; */
}

.petemo-app-lp .download__qr img {
	max-width: 172px;
	height: auto;
}

.petemo-app-lp .download__qr span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2.4rem;
	font-weight: 500;
	color: #999;
}

.petemo-app-lp .download__buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.petemo-app-lp .download__button {
	display: block;
	transition: transform 0.3s ease;
}

.petemo-app-lp .download__button img {
	height: auto;
	width: 127px;
}

.petemo-app-lp .download__pets {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.petemo-app-lp .download__pet {
	position: absolute;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.petemo-app-lp .download__pet--hamster {
	top: 50px;
	left: 100px;
}

.petemo-app-lp .download__pet--dog {
	bottom: 50px;
	right: 150px;
}

.petemo-app-lp .download__pet--cat {
	top: 100px;
	right: 100px;
}

/* ==========================================================================
   SNSフォローセクション
   ========================================================================== */
.petemo-app-lp .sns-follow {
	background: #fafafa;
	padding: 121px 0 32px;
}

.petemo-app-lp .sns-follow__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 110px;
	position: relative;
}

.petemo-app-lp .sns-follow__dog-illust {
	text-align: center;
	position: absolute;
	top: -160px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.petemo-app-lp .sns-follow__dog-illust img {
	width: 240px;
	height: auto;
}

.petemo-app-lp .sns-follow__content-wrapper {
	background: #679328;
	color: white;
	padding: 60px 40px;
	border-radius: 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
	z-index: 2;
	max-width: 960px;
	margin: 0 auto;
}

.petemo-app-lp .sns-follow__content {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.petemo-app-lp .sns-follow__title {
	font-size: 3.2rem;
	font-weight: 500;
	line-height: 1.75;
}

.petemo-app-lp .sns-follow__hashtag {
	background: #fff;
	color: #679328;
	padding: 0px 20px;
	border-radius: 61px;
	font-weight: 500;
	height: 56px;
	display: inline-flex;
	align-items: center;
	margin-right: 6px;
}

.petemo-app-lp .sns-follow__text {
	background: #fff4bb;
	color: #679328;
	font-size: 1.8rem;
	font-weight: 500;
	margin: 0;
	padding: 0 24px;
	height: 39px;
	display: flex;
	align-items: center;
	border-radius: 6px;
	position: relative;
}

.petemo-app-lp .sns-follow__text::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -8px;
	transform: translateY(-50%);
	width: 19px;
	height: 19px;
	background: url("../images/speech_bubble.svg") no-repeat center;
	background-size: contain;
}

.petemo-app-lp .br-mobile {
	display: none;
}

.petemo-app-lp .sp-show {
	display: none;
}

.petemo-app-lp .sp-hide {
	display: block;
}

.petemo-app-lp .sns-follow__action {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.petemo-app-lp .sns-follow__buttons {
	display: flex;
	gap: 16px;
}

.petemo-app-lp .sns-follow__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: white;
	border-radius: 16px;
	box-shadow: 4px 4px 0px #507d10;
}

.petemo-app-lp .sns-follow__button img {
	width: 30px;
	height: 30px;
}

.petemo-app-lp .sns-follow__links {
	text-align: center;
	margin-top: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.petemo-app-lp .sns-follow__footer-link {
	font-size: 1.8rem;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #ffffff;
	border-radius: 50px;
	height: 45px;
	white-space: nowrap;
	line-height: 1;
	padding: 0 24px;
}

.petemo-app-lp .sns-follow__external-icon {
	width: 24px;
	height: 24px;
	background: url(../images/external_link_icon.svg) no-repeat center center;
}

/* ポイントデー詳細リンク */
.petemo-app-lp .point-system__disclaimer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 32px;
}

.petemo-app-lp .point-system__disclaimer-text {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.7;
	margin-bottom: 8px;
}

.petemo-app-lp .point-system__disclaimer-text:last-child {
	margin-bottom: 0;
}

.petemo-app-lp .point-system__disclaimer-link {
	text-decoration: underline;
	/* display: inline-flex;
	align-items: center; */
}

.petemo-app-lp .point-system__disclaimer-icon {
	width: 16px;
	height: 16px;
	background: url(../images/external_link_icon.svg) no-repeat center center;
	background-size: contain;
	display: inline-block;
	margin-left: 4px;
	vertical-align: middle;
}

/* アプリの使い方セクションの注釈テキスト */
.petemo-app-lp .point-system__howto-disclaimer {
	margin-top: 40px;
}

.petemo-app-lp .point-system__howto-disclaimer-text {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0;
	color: #ffffff;
	text-align: center;
}

/* ダウンロードリンクのスタイル */
.petemo-app-lp .point-system__step-link {
	color: inherit;
	text-decoration: underline;
}

/* 注釈テキスト内のリンクスタイル */
.petemo-app-lp .point-system__howto-disclaimer-link {
	color: inherit;
	text-decoration: underline;
}

/* ==========================================================================
   セクション区切りの円弧
   ========================================================================== */
.petemo-app-lp .section-arc {
	width: 100%;
	aspect-ratio: 1440 / 78;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
	margin-top: calc(-100% / 1440 * 78);
	position: relative;
	z-index: 0;
}

.petemo-app-lp .section-arc::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	height: 3px;
	width: 100%;
}

.petemo-app-lp .section-arc.section-arc--white::after {
	background: #ffffff;
}

.petemo-app-lp .section-arc.section-arc--gray::after {
	background: #fafafa;
}

.petemo-app-lp .section-arc.section-arc--beige::after {
	background: #f9f6f0;
}

.petemo-app-lp .section-arc.section-arc--green::after {
	background: #679328;
}

.petemo-app-lp .section-arc.section-arc--yellow::after {
	background: #fff4bb;
}

/* 色のバリエーション - PC用 */
.petemo-app-lp .section-arc--white {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3OCIgdmlld0JveD0iMCAwIDE0NDAgNzgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xOV82MDA3KSI+CjxlbGxpcHNlIGN4PSI3MjAuNSIgY3k9IjE2OC41IiByeD0iODY3LjUiIHJ5PSIxNjguNSIgZmlsbD0iI0ZGRkZGRiIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE5XzYwMDciPgo8cmVjdCB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3OCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4=");
}

.petemo-app-lp .section-arc--gray {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3OCIgdmlld0JveD0iMCAwIDE0NDAgNzgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xOV82MDA3KSI+CjxlbGxpcHNlIGN4PSI3MjAuNSIgY3k9IjE2OC41IiByeD0iODY3LjUiIHJ5PSIxNjguNSIgZmlsbD0iI0ZBRkFGQSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE5XzYwMDciPgo8cmVjdCB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3OCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4=");
}

.petemo-app-lp .section-arc--beige {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3OCIgdmlld0JveD0iMCAwIDE0NDAgNzgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xOV82MDA3KSI+CjxlbGxpcHNlIGN4PSI3MjAuNSIgY3k9IjE2OC41IiByeD0iODY3LjUiIHJ5PSIxNjguNSIgZmlsbD0iI0Y5RjZGMCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE5XzYwMDciPgo8cmVjdCB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3OCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4=");
}

.petemo-app-lp .section-arc--green {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3OCIgdmlld0JveD0iMCAwIDE0NDAgNzgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xOV82MDA3KSI+CjxlbGxpcHNlIGN4PSI3MjAuNSIgY3k9IjE2OC41IiByeD0iODY3LjUiIHJ5PSIxNjguNSIgZmlsbD0iIzY3OTMyOCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE5XzYwMDciPgo8cmVjdCB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3OCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K");
}

.petemo-app-lp .section-arc--yellow {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3OCIgdmlld0JveD0iMCAwIDE0NDAgNzgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xOV82MDA3KSI+CjxlbGxpcHNlIGN4PSI3MjAuNSIgY3k9IjE2OC41IiByeD0iODY3LjUiIHJ5PSIxNjguNSIgZmlsbD0iI0ZGRjRCQiIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE5XzYwMDciPgo8cmVjdCB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3OCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4=");
}

@media (max-width: 1110px) and (min-width: 769px) {
	.petemo-app-lp .app-intro__feature {
		margin-left: 250px;
	}
	.petemo-app-lp .app-intro__feature--right {
		margin-left: 0;
		margin-right: 250px;
	}
	.petemo-app-lp .app-intro__feature-inner {
		padding: 80px 75px 200px 130px;
	}
	.petemo-app-lp .app-intro__feature--right .app-intro__feature-inner {
		padding: 80px 130px 200px 65px;
	}
}

/* SP対応 */
@media (max-width: 768px) {
	.petemo-app-lp .section-arc {
		aspect-ratio: 375 / 60;
		margin-top: calc(-100% / 375 * 60);
	}

	.petemo-app-lp .section-arc--white {
		background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzc1IiBoZWlnaHQ9IjYwIiB2aWV3Qm94PSIwIDAgMzc1IDYwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMTlfNzY4OSkiPgo8ZWxsaXBzZSBjeD0iMTg3LjUiIGN5PSI2MCIgcng9IjE4Ny41IiByeT0iNjAiIGZpbGw9IiNGRkZGRkYiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xOV83Njg5Ij4KPHJlY3Qgd2lkdGg9IjM3NSIgaGVpZ2h0PSI2MCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4=");
	}

	.petemo-app-lp .section-arc--gray {
		background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzc1IiBoZWlnaHQ9IjYwIiB2aWV3Qm94PSIwIDAgMzc1IDYwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMTlfNzY4OSkiPgo8ZWxsaXBzZSBjeD0iMTg3LjUiIGN5PSI2MCIgcng9IjE4Ny41IiByeT0iNjAiIGZpbGw9IiNGQUZBRkEiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xOV83Njg5Ij4KPHJlY3Qgd2lkdGg9IjM3NSIgaGVpZ2h0PSI2MCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4=");
	}

	.petemo-app-lp .section-arc--beige {
		background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzc1IiBoZWlnaHQ9IjYwIiB2aWV3Qm94PSIwIDAgMzc1IDYwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMTlfNzY4OSkiPgo8ZWxsaXBzZSBjeD0iMTg3LjUiIGN5PSI2MCIgcng9IjE4Ny41IiByeT0iNjAiIGZpbGw9IiNGOUY2RjAiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xOV83Njg5Ij4KPHJlY3Qgd2lkdGg9IjM3NSIgaGVpZ2h0PSI2MCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4=");
	}

	.petemo-app-lp .section-arc--green {
		background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzc1IiBoZWlnaHQ9IjYwIiB2aWV3Qm94PSIwIDAgMzc1IDYwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMTlfNzY4OSkiPgo8ZWxsaXBzZSBjeD0iMTg3LjUiIGN5PSI2MCIgcng9IjE4Ny41IiByeT0iNjAiIGZpbGw9IiM2NzkzMjgiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xOV83Njg5Ij4KPHJlY3Qgd2lkdGg9IjM3NSIgaGVpZ2h0PSI2MCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K");
	}

	.petemo-app-lp .section-arc--yellow {
		background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzc1IiBoZWlnaHQ9IjYwIiB2aWV3Qm94PSIwIDAgMzc1IDYwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBjbGlwLXBhdGg9InVybCgjY2xpcDBfMTlfNzY4OSkiPgo8ZWxsaXBzZSBjeD0iMTg3LjUiIGN5PSI2MCIgcng9IjE4Ny41IiByeT0iNjAiIGZpbGw9IiNGRkY0QkIiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xOV83Njg5Ij4KPHJlY3Qgd2lkdGg9IjM3NSIgaGVpZ2h0PSI2MCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4=");
	}

	/* SP版KVアニメーション適用 */
	.petemo-app-lp .kv__card-left.is-kv-visible {
		animation: kvCardLeftMoveSP 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		animation-delay: calc(0.2s + var(--kv-extra-delay));
	}

	.petemo-app-lp .kv__card-right.is-kv-visible {
		animation: kvCardRightMoveSP 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		animation-delay: calc(0.3s + var(--kv-extra-delay));
	}

	.petemo-app-lp .kv__coupon.is-kv-visible {
		animation: kvCouponMoveSP 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		animation-delay: calc(0.1s + var(--kv-extra-delay));
	}

	.petemo-app-lp .kv__point-2.is-kv-visible {
		animation: kvPoint2MoveSP 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
		animation-delay: calc(0.1s + var(--kv-extra-delay));
	}

	.petemo-app-lp .kv__star-1.is-kv-visible {
		animation: kvStar1MoveSP 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
		animation-delay: calc(0.1s + var(--kv-extra-delay));
	}

	.petemo-app-lp .kv__star-2.is-kv-visible {
		animation: kvStar2MoveSP 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		animation-delay: calc(0.1s + var(--kv-extra-delay));
	}

	.petemo-app-lp .kv__star-4.is-kv-visible {
		animation: kvStar4MoveSP 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
		animation-delay: calc(0.1s + var(--kv-extra-delay));
	}

	.petemo-app-lp .kv__star-5.is-kv-visible {
		animation: kvStar5MoveSP 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		animation-delay: calc(0.1s + var(--kv-extra-delay));
	}

	.petemo-app-lp .kv__check.is-kv-visible {
		animation: kvCheckMoveSP 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
		animation-delay: calc(0.1s + var(--kv-extra-delay));
	}

	.petemo-app-lp .kv__gift.is-kv-visible {
		animation: kvGiftMoveSP 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		animation-delay: calc(0s + var(--kv-extra-delay));
	}

	/* SP版 kv-animation-complete 位置修正 */
	.petemo-app-lp .kv__card-left.kv-animation-complete {
		top: auto;
		bottom: 227px;
		left: 50%;
		transform: translateX(calc(-50% - 130px)) rotate(-7deg) scale(1);
	}

	.petemo-app-lp .kv__card-right.kv-animation-complete {
		top: auto;
		bottom: 227px;
		left: 50%;
		transform: translateX(calc(-50% + 130px)) rotate(7deg) scale(1);
	}

	.petemo-app-lp .kv__coupon.kv-animation-complete {
		top: auto;
		bottom: 181px;
		left: 50%;
		transform: translateX(calc(-50% - 127px)) scale(1) rotate(-24deg);
	}

	.petemo-app-lp .kv__point-2.kv-animation-complete {
		top: auto;
		bottom: 329px;
		left: 50%;
		transform: translateX(calc(-50% + 134px)) scale(1) rotate(0deg);
	}

	.petemo-app-lp .kv__star-1.kv-animation-complete {
		top: auto;
		bottom: 132px;
		left: 50%;
		transform: translateX(calc(-50% - 140px)) scale(1);
	}

	.petemo-app-lp .kv__star-2.kv-animation-complete {
		top: auto;
		bottom: 153px;
		left: 50%;
		transform: translateX(calc(-50% - 107px)) scale(1) rotate(29deg);
	}

	.petemo-app-lp .kv__star-4.kv-animation-complete {
		top: auto;
		bottom: 210px;
		left: 50%;
		transform: translateX(calc(-50% + 115px)) scale(1) rotate(0deg);
	}

	.petemo-app-lp .kv__star-5.kv-animation-complete {
		top: auto;
		bottom: 373px;
		left: 50%;
		transform: translateX(calc(-50% + 111px)) scale(1) rotate(-6deg);
	}

	.petemo-app-lp .kv__check.kv-animation-complete {
		top: auto;
		bottom: 132px;
		left: 50%;
		transform: translateX(calc(-50% + 133px)) scale(1) rotate(23deg);
	}

	.petemo-app-lp .kv__gift.kv-animation-complete {
		top: auto;
		bottom: 323px;
		left: 50%;
		transform: translateX(calc(-50% - 123px)) scale(1) rotate(0deg);
	}
}

/* ==========================================================================
   レスポンシブスタイル（タブレット・スマートフォン）
   ========================================================================== */

/* タブレット対応 */
@media (max-width: 1024px) {
	.petemo-app-lp .kv__container,
	.petemo-app-lp .app-intro__container,
	.petemo-app-lp .features__container,
	.petemo-app-lp .campaign__container,
	.petemo-app-lp .point-system__container,
	.petemo-app-lp .download__container,
	.petemo-app-lp .sns-follow__container {
		padding: 0 40px;
	}
	.petemo-app-lp .kv__title {
		/* top: 32px; */
		/* font-size: 2.3rem; */
		/* font-weight: 700; */
	}

	/* SP版（767px以下） */
	.petemo-app-lp .kv__title-svg--pc {
		display: none;
	}

	.petemo-app-lp .kv__title-svg--sp {
		display: block;
		/* width: 280px; */
		/* height: 50px; */
	}

	.petemo-app-lp .kv__title-normal {
		font-size: 2.3rem;
		font-weight: 700;
	}

	.petemo-app-lp .kv__title-highlight {
		font-size: 2.3rem;
		font-weight: 700;
	}

	.petemo-app-lp .kv__title-highlight--quote {
		letter-spacing: -0.3rem;
	}

	.petemo-app-lp .kv__title-highlight + .kv__title-highlight--quote {
		letter-spacing: -0.2rem;
	}

	/* .petemo-app-lp .features__grid {
    grid-template-columns: repeat(2, 1fr);
  } */

	.petemo-app-lp .point-system__days {
		flex-wrap: wrap;
	}
}

/* スマートフォン対応 */
@media (max-width: 768px) {
	/* 基本設定 */
	html {
		font-size: 62.5%;
	}

	.petemo-app-lp .kv__container,
	.petemo-app-lp .app-intro__container,
	.petemo-app-lp .features__container,
	.petemo-app-lp .campaign__container,
	.petemo-app-lp .point-system__container,
	.petemo-app-lp .download__container,
	.petemo-app-lp .sns-follow__container {
		padding: 0 20px;
	}
	.petemo-app-lp .app-intro__container {
		padding: 0;
	}
	/* KVセクション */
	.petemo-app-lp .kv {
		height: 518px;
	}

	.petemo-app-lp .kv__bg {
		background-image: none;
		background-color: #f9f6f0;
	}

	.petemo-app-lp .kv__subtitle {
		/* top: 20px; */
		font-size: 2rem;
		font-weight: 700;
	}

	.petemo-app-lp .kv__title {
		top: 32px;
		font-size: 2rem;
		font-weight: 700;
		max-width: 300px;
	}

	.petemo-app-lp .kv__phone {
		top: 113px;
		width: 214px;
	}

	.petemo-app-lp .kv__card-left {
		top: auto;
		bottom: 227px;
		transform: translateX(calc(-50% - 130px)) rotate(-7deg);
		width: 134px;
	}

	.petemo-app-lp .kv__card-right {
		top: auto;
		bottom: 227px;
		transform: translateX(calc(-50% + 130px)) rotate(7deg);
		width: 134px;
	}

	.petemo-app-lp .kv__coupon {
		top: auto;
		bottom: 181px;
		transform: translateX(calc(-50% - 127px)) scale(1) rotate(-24deg);
		width: 76px;
	}

	.petemo-app-lp .kv__point {
		display: none;
	}

	.petemo-app-lp .kv__point-1 {
		display: none;
	}

	.petemo-app-lp .kv__point-2 {
		top: auto;
		bottom: 329px;
		transform: translateX(calc(-50% + 134px)) scale(1) rotate(0deg);
		width: 39px;
	}

	.petemo-app-lp .kv__star {
		display: none;
	}

	.petemo-app-lp .kv__star-1 {
		top: auto;
		bottom: 132px;
		transform: translateX(calc(-50% - 140px)) scale(1);
		width: 14px;
	}

	.petemo-app-lp .kv__star-2 {
		top: auto;
		bottom: 153px;
		transform: translateX(calc(-50% - 107px)) scale(1) rotate(29deg);
		width: 14px;
	}

	.petemo-app-lp .kv__star-3 {
		display: none;
	}

	.petemo-app-lp .kv__star-4 {
		top: auto;
		bottom: 210px;
		transform: translateX(calc(-50% + 115px)) scale(1) rotate(0deg);
		width: 14px;
	}

	.petemo-app-lp .kv__star-5 {
		top: auto;
		bottom: 373px;
		transform: translateX(calc(-50% + 111px)) scale(1) rotate(-6deg);
		width: 11px;
	}

	.petemo-app-lp .kv__star-6 {
		display: none;
	}

	.petemo-app-lp .kv__check {
		top: auto;
		bottom: 132px;
		transform: translateX(calc(-50% + 133px)) scale(1) rotate(23deg);
		width: 62px;
	}

	.petemo-app-lp .kv__gift {
		top: auto;
		bottom: 323px;
		transform: translateX(calc(-50% - 123px)) scale(1) rotate(0deg);
		width: 54px;
	}

	.petemo-app-lp .kv__bell {
		display: none;
	}

	.petemo-app-lp .kv__comment {
		display: none;
	}

	/* アプリ紹介セクション */
	.petemo-app-lp .app-intro {
		position: relative;
		z-index: 1;
		padding: 0 0 70px;
	}

	.petemo-app-lp .app-intro__header {
		margin: 0 0 20px;
		padding: 0 20px;
		position: relative;
	}

	.petemo-app-lp .app-intro__speech-bubble {
		position: absolute;
		top: -127px;
		left: 3px;
		right: 0;
		margin: 0 auto;
		z-index: 1;
		width: 342px;
	}

	.petemo-app-lp .app-intro__speech-bubble-image {
		width: 100%;
		height: auto;
		/* max-width: 300px; */
	}

	.petemo-app-lp .app-intro__speech-bubble-text {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #583c32;
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.5;
		text-align: center;
		white-space: nowrap;
		padding-bottom: 15px;
	}

	.petemo-app-lp .app-intro__icon {
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}

	.petemo-app-lp .app-intro__title {
		font-size: 2.4rem;
		margin-bottom: 16px;
		line-height: 1.4;
	}

	.petemo-app-lp .app-intro__lead {
		font-size: 1.4rem;
		line-height: 1.6;
	}

	.petemo-app-lp .app-intro__feature {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin: 0 0 20px 0;
		padding: 230px 0 0;
	}

	.petemo-app-lp .app-intro__feature-inner {
		display: flex;
		flex-direction: column;
		padding: 40px 40px 100px 32px;
		border-radius: 0px 250px 250px 0px;
		min-height: 250px;
		margin-right: 20px;
		height: auto;
	}

	.petemo-app-lp .app-intro__feature--right .app-intro__feature-inner {
		border-radius: 250px 0px 0px 250px;
		padding: 50px 32px 100px 40px;
		margin-right: 0;
		margin-left: 20px;
		min-height: 250px;
		height: auto;
	}

	.petemo-app-lp .app-intro__feature-image {
		left: 26px;
		top: 0;
		z-index: 0;
		margin: 0;
	}
	.petemo-app-lp .app-intro__feature--right .app-intro__feature-image {
		left: auto;
		right: 16px;
	}

	.petemo-app-lp .app-intro__feature-image img {
		width: 100%;
		height: auto;
		max-width: 280px;
	}

	.petemo-app-lp .app-intro__feature-content {
		flex: 1;
		text-align: left;
	}

	.petemo-app-lp .app-intro__feature-title {
		font-size: 2rem;
		margin-bottom: 0;
		line-height: 1.4;
		font-weight: 700;
	}

	.petemo-app-lp .app-intro__feature-text {
		font-size: 1.5rem;
		line-height: 1.6;
		margin-bottom: 0;
	}

	.petemo-app-lp .app-intro__feature-illust {
		width: 199px;
	}

	.petemo-app-lp .app-intro__feature-illust img {
		width: 100%;
		height: auto;
	}

	/* ==========================================================================
   足跡スタイル（.app-introセクション用）
   ========================================================================== */
	.petemo-app-lp .app-intro__pawprints {
		position: absolute;
		display: flex;
		flex-direction: column;
		gap: 10px;
		z-index: 5;
	}

	.petemo-app-lp .app-intro__pawprints--left {
		left: 72px;
		bottom: auto;
		top: 97px;
	}

	.petemo-app-lp .app-intro__pawprints--right {
		right: 70px;
		bottom: auto;
		top: 84px;
	}

	.petemo-app-lp .app-intro__pawprint {
		width: 22px;
		height: 22px;
		position: relative;
	}

	.petemo-app-lp .app-intro__pawprint-inner {
		width: 100%;
		height: 100%;
		background-image: url("../images/pawprint.svg");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		opacity: 0;
		transform: scale(0.5);
	}

	.petemo-app-lp .app-intro__pawprints--left .app-intro__pawprint--1 {
		transform: rotate(-10deg);
		left: 0px;
	}

	.petemo-app-lp .app-intro__pawprints--left .app-intro__pawprint--2 {
		transform: rotate(-3deg);
		left: -4px;
		top: 7px;
	}

	.petemo-app-lp .app-intro__pawprints--left .app-intro__pawprint--3 {
		transform: rotate(-15deg);
		left: -46px;
		top: -15px;
	}

	.petemo-app-lp .app-intro__pawprints--left .app-intro__pawprint--4 {
		transform: rotate(-28deg);
		left: -36px;
		top: -7px;
	}

	.petemo-app-lp .app-intro__pawprints--right .app-intro__pawprint--1 {
		transform: rotate(-88deg);
		right: 0px;
	}

	.petemo-app-lp .app-intro__pawprints--right .app-intro__pawprint--2 {
		transform: rotate(-96deg);
		right: -3px;
		bottom: -8px;
	}

	.petemo-app-lp .app-intro__pawprints--right .app-intro__pawprint--3 {
		transform: rotate(-74deg);
		right: -45px;
		bottom: 14px;
	}

	.petemo-app-lp .app-intro__pawprints--right .app-intro__pawprint--4 {
		transform: rotate(-64deg);
		right: -35px;
		bottom: 6px;
	}

	.petemo-app-lp .app-intro__pawprint.is-visible .app-intro__pawprint-inner {
		animation: pawprintShow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	}

	.petemo-app-lp .app-intro__pawprint.is-hiding .app-intro__pawprint-inner {
		animation: pawprintHide 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
		animation-fill-mode: forwards;
	}

	/* 各足跡の遅延設定 - 表示時 */
	.petemo-app-lp .app-intro__pawprint--1.is-visible .app-intro__pawprint-inner {
		animation-delay: 0.1s;
	}

	.petemo-app-lp .app-intro__pawprint--2.is-visible .app-intro__pawprint-inner {
		animation-delay: 0.2s;
	}

	.petemo-app-lp .app-intro__pawprint--3.is-visible .app-intro__pawprint-inner {
		animation-delay: 0.3s;
	}

	.petemo-app-lp .app-intro__pawprint--4.is-visible .app-intro__pawprint-inner {
		animation-delay: 0.4s;
	}

	/* 各足跡の遅延設定 - 非表示時（逆順） */
	.petemo-app-lp .app-intro__pawprint--1.is-hiding .app-intro__pawprint-inner {
		animation-delay: 0.3s;
	}

	.petemo-app-lp .app-intro__pawprint--2.is-hiding .app-intro__pawprint-inner {
		animation-delay: 0.2s;
	}

	.petemo-app-lp .app-intro__pawprint--3.is-hiding .app-intro__pawprint-inner {
		animation-delay: 0.1s;
	}

	.petemo-app-lp .app-intro__pawprint--4.is-hiding .app-intro__pawprint-inner {
		animation-delay: 0s;
	}

	/* 機能詳細セクション */
	.petemo-app-lp .features {
		padding: 50px 0;
	}

	.petemo-app-lp .features + .features-section-spacer {
		aspect-ratio: 375 / 60;
	}
	.petemo-app-lp .features__title {
		font-size: 2.4rem;
		margin-bottom: 24px;
	}

	.petemo-app-lp .features__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 50px;
	}

	.petemo-app-lp .features__item {
		padding: 30px 20px;
	}
	.petemo-app-lp .features__item:nth-child(2) {
		top: auto;
	}

	.petemo-app-lp .features__item-icon {
		margin-bottom: 16px;
	}

	.petemo-app-lp .features__item-title {
		font-size: 2rem;
		line-height: 1.4;
		margin-bottom: 16px;
	}

	.petemo-app-lp .features__item-text {
		font-size: 1.5rem;
		line-height: 1.6;
		font-weight: 500;
	}

	.petemo-app-lp .features__video-title {
		font-size: 2.4rem;
		line-height: 1.5;
		margin-bottom: 24px;
	}

	/* キャンペーンセクション */
	.petemo-app-lp .campaign {
		padding: 0 0 60px;
	}

	.petemo-app-lp .campaign__inner {
		padding: 96px 0 calc(100vw * 60 / 375);
	}

	.petemo-app-lp .campaign__container {
		margin: 0 24px;
		padding: 0;
	}

	.petemo-app-lp .campaign__ribbon {
		font-size: 1.4rem;
		padding: 8px 30px;
		width: 100%;
		height: 100px;
		clip-path: polygon(0% 0%, 100% 0%, 95% 50%, 100% 100%, 0% 100%, 5% 50%);
	}

	.petemo-app-lp .campaign__ribbon-main {
		font-size: 1.3rem;
		line-height: 1.6;
	}

	.petemo-app-lp .campaign__ribbon-sub {
		font-size: 2rem;
		line-height: 1.4;
	}

	.petemo-app-lp .campaign__content-inner {
		flex-direction: column;
		gap: 24px;
		padding: 80px 16px 40px;
		align-items: center;
		margin: 0 20px;
	}

	.petemo-app-lp .campaign__coupon {
		transform: rotate(0deg);
		order: 1;
	}

	.petemo-app-lp .campaign__text {
		order: 2;
		text-align: center;
	}

	.petemo-app-lp .campaign__text-main {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
		line-height: 1.6;
	}
	.petemo-app-lp .campaign__text-highlight {
		font-size: 1.5rem;
		line-height: 1.6;
		font-weight: 500;
	}
	.petemo-app-lp .campaign__note {
		font-size: 1.5rem;
		line-height: 1.6;
		margin-bottom: 12px;
	}

	.petemo-app-lp .campaign__period {
		font-size: 1.2rem;
		line-height: 1.75;
		padding: 6px 24px;
		height: auto;
		min-height: 33px;
	}

	.petemo-app-lp .campaign__decoration--yellow-top {
		top: -100px;
		left: -58px;
		transform: scale(0.6) rotate(21deg);
		z-index: 0;
	}

	.petemo-app-lp .campaign__decoration--yellow-bottom {
		bottom: -85px;
		right: -71px;
		transform: scale(0.5) rotate(17deg);
	}

	.petemo-app-lp .campaign__decoration--green-top {
		top: -39px;
		right: -58px;
		transform: scale(0.6) rotate(-12deg);
	}

	.petemo-app-lp .campaign__decoration--green-bottom {
		bottom: -75px;
		left: -68px;
		transform: scale(0.6) rotate(-1deg);
	}

	.petemo-app-lp .campaign__disclaimer {
		font-size: 1.2rem;
		line-height: 1.7;
		text-align: center;
		margin-top: 16px;
	}

	.petemo-app-lp .campaign__inner::after {
		background-image: url("../images/campaign_confetti_sp.svg");
	}

	/* ポイントシステムセクション */
	.petemo-app-lp .point-system {
		padding: 40px 0 calc(30px + 100vw * 60 / 375);
	}

	.petemo-app-lp .point-system__container {
		gap: 24px;
	}

	.petemo-app-lp .point-system__title {
		font-size: 2.4rem;
		line-height: 1.5;
		text-align: center;
	}

	.petemo-app-lp .point-system__content {
		flex-direction: column;
		gap: 40px;
	}

	.petemo-app-lp .point-system__content-container {
		border-radius: 24px;
		padding: 40px 16px;
	}
	.petemo-app-lp .point-system__divider {
		margin: 16px 0;
	}
	.petemo-app-lp .point-system__block {
		gap: 24px;
	}

	.petemo-app-lp .point-system__block-title {
		font-size: 2rem;
		font-weight: bold;
		line-height: 1.4;
	}

	.petemo-app-lp .point-system__use-description {
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 24px;
		text-align: left;
	}
	.petemo-app-lp .point-system__highlight {
		font-size: 1.5rem;
	}
	.petemo-app-lp .point-system__highlight-number {
		font-size: 1.5rem;
	}
	.petemo-app-lp .point-system__use-description--earn {
		text-align: center;
	}

	.petemo-app-lp .point-system__earn-card {
		min-width: auto;
		padding: 16px;
		margin-bottom: 16px;
		width: 100%;
	}

	.petemo-app-lp .point-system__earn-value {
		padding: 16px;
	}

	.petemo-app-lp .point-system__earn-label {
		font-size: 1.4rem;
		margin-bottom: 12px;
	}

	.petemo-app-lp .point-system__earn-number {
		font-size: 12rem;
		line-height: 1;
	}

	.petemo-app-lp .point-system__earn-unit {
		font-size: 1.8rem;
	}

	.petemo-app-lp .point-system__earn-badge {
		font-size: 1.4rem;
		padding: 4px 10px;
		margin-left: 6px;
	}

	.petemo-app-lp .point-system__earn-rate {
		font-size: 1.3rem;
		top: 7px;
		left: 80px;
		width: 148px;
		height: 69px;
		padding: 16px 24px;
		font-weight: 500;
	}
	.petemo-app-lp .point-system__earn-rate-small {
		font-size: 1rem;
	}

	.petemo-app-lp .point-system__days {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding: 24px 18px;
		margin: 0;
	}

	.petemo-app-lp .point-system__day {
		min-width: auto;
	}

	.petemo-app-lp .point-system__day-label {
		font-size: 1.5rem;
		padding: 10px 28px;
		margin-bottom: 24px;
		clip-path: polygon(0% 0%, 100% 0%, 95% 50%, 100% 100%, 0% 100%, 5% 50%);
	}

	.petemo-app-lp .point-system__day-value {
		padding: 16px;
		gap: 0;
		min-height: 140px;
		align-items: center;
		justify-content: center;
		padding-top: 30px;
	}

	.petemo-app-lp .point-system__day-service {
		font-size: 1.8rem;
		line-height: 1.6;
		text-align: center;
	}

	.petemo-app-lp .point-system__day-number {
		font-size: 4rem;
	}

	.petemo-app-lp .point-system__day-unit {
		font-size: 1.8rem;
		line-height: 1.6;
	}

	.petemo-app-lp .point-system__day-condition {
		font-size: 1.2rem;
		font-weight: 800;
		line-height: 1.6;
	}

	.petemo-app-lp .point-system__use-content {
		flex-direction: column;
		gap: 20px;
	}

	.petemo-app-lp .point-system__use-card {
		padding: 16px;
		margin: 0;
		border-radius: 24px;
	}

	.petemo-app-lp .point-system__use-label {
		font-size: 1.8rem;
		font-weight: 800;
		margin-bottom: 12px;
		line-height: 1.6;
	}

	.petemo-app-lp .point-system__use-value {
		padding: 16px 24px;
		min-height: 136px;
	}

	.petemo-app-lp .point-system__use-service {
		font-size: 1.5rem;
		font-weight: 800;
		line-height: 1.7;
	}

	.petemo-app-lp .point-system__use-amount-number {
		font-size: 8rem;
		line-height: 0.7;
	}

	.petemo-app-lp .point-system__use-amount {
		font-size: 2.5rem;
		font-weight: 800;
		line-height: 56px;
		display: grid;
		grid-template-columns: auto 1fr;
		grid-template-rows: 1fr 1fr;
		align-items: center;
	}

	.petemo-app-lp .point-system__use-amount-prefix {
		font-size: 1.2rem;
		order: initial;
		grid-row: 1;
		grid-column: 2;
		align-self: end;
	}

	.petemo-app-lp .point-system__use-amount-number {
		font-size: 8rem;
		order: initial;
		grid-row: 1 / 3;
		grid-column: 1;
		margin-right: 0.07em;
	}

	.petemo-app-lp .point-system__use-amount-suffix {
		font-size: 2.5rem;
		order: initial;
		grid-row: 2;
		grid-column: 2;
		align-self: start;
	}

	.petemo-app-lp .point-system__use-services {
		padding: 16px;
		margin: 0;
		border-radius: 24px;
	}

	.petemo-app-lp .point-system__use-services-title {
		font-size: 1.2rem;
		font-weight: 800;
		margin-bottom: 12px;
		line-height: 1.6;
	}

	.petemo-app-lp .point-system__use-services-content {
		padding: 12px 16px;
		gap: 10px;
	}

	.petemo-app-lp .point-system__use-services-text {
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.6;
	}

	.petemo-app-lp .point-system__howto-title {
		font-size: 2.4rem;
		margin-bottom: 24px;
		line-height: 1.5;
		font-weight: 500;
	}

	.petemo-app-lp .point-system__steps {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.petemo-app-lp .point-system__step {
		max-width: none;
		margin: 0;
	}

	.petemo-app-lp .point-system__step-label {
		font-size: 2.4rem;
		padding: 0 20px;
		height: 68px;
		line-height: 1.5;
		font-weight: 500;
	}

	.petemo-app-lp .point-system__step-body {
		padding: 24px 20px 32px;
		margin-top: 0;
	}

	.petemo-app-lp .point-system__step-icon {
		width: 204px;
		height: 204px;
		margin: 0 auto 24px;
	}

	.petemo-app-lp .point-system__step-title {
		font-size: 2rem;
		margin-bottom: 16px;
		line-height: 1.4;
		font-weight: 700;
	}

	.petemo-app-lp .point-system__step-text {
		font-size: 1.4rem;
		line-height: 1.5714285714;
		font-weight: 500;
	}

	/* ポイントデー詳細リンク - SP */
	.petemo-app-lp .point-system__disclaimer {
		justify-content: flex-start;
	}

	.petemo-app-lp .point-system__disclaimer-text {
		font-size: 1.2rem;
		line-height: 2.1;
	}

	.petemo-app-lp .point-system__howto-disclaimer {
		margin-top: 30px;
	}

	.petemo-app-lp .point-system__howto-disclaimer-text {
		font-size: 1.2rem;
		line-height: 1.7;
		text-align: left;
	}

	/* ダウンロードCTAセクション */
	.petemo-app-lp .download {
		padding: 0 0 calc(30px + 100vw * 60 / 375);
	}

	.petemo-app-lp .download__container {
		max-width: none;
		height: auto;
		background: none;
		padding: 0;
		position: relative;
	}

	.petemo-app-lp .download__title {
		font-size: 2.4rem;
		margin-bottom: 20px;
		line-height: 1.5;
		text-align: center;
		margin-top: 11px;
	}

	.petemo-app-lp .download__content {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px;
		position: static;
		top: auto;
		left: auto;
	}

	.petemo-app-lp .download__phone {
		order: 1;
		max-width: 200px;
		margin: 0 auto;
	}

	.petemo-app-lp .download__info {
		order: 2;
		text-align: center;
		width: 100%;
	}

	.petemo-app-lp .download__text {
		font-size: 1.8rem;
		margin-bottom: 20px;
		line-height: 1.4;
	}

	.petemo-app-lp .download__qr {
		margin-bottom: 20px;
	}

	.petemo-app-lp .download__qr img {
		width: 120px;
		height: 120px;
	}

	.petemo-app-lp .download__buttons {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.petemo-app-lp .download__button img {
		width: 140px;
		height: auto;
	}

	/* SNSフォローセクション */
	.petemo-app-lp .sns-follow {
		padding: 40px 0 32px;
	}

	.petemo-app-lp .sns-follow__dog-illust {
		top: -129px;
	}

	.petemo-app-lp .sns-follow__dog-illust img {
		width: 160px;
	}

	.petemo-app-lp .sns-follow__content-wrapper {
		padding: 40px 20px;
		border-radius: 24px;
	}

	.petemo-app-lp .sns-follow__content {
		gap: 30px;
	}

	.petemo-app-lp .sns-follow__title {
		font-size: 2rem;
		line-height: 1.4;
		font-weight: bold;
	}

	.petemo-app-lp .sns-follow__hashtag {
		font-size: 2rem;
		padding: 0 20px;
		height: 28px;
		margin-right: 6px;
		line-height: 1.4;
		font-weight: 700;
		margin-bottom: 6px;
	}

	.petemo-app-lp .sns-follow__text {
		font-size: 1.8rem;
		padding: 5px 16px;
		height: auto;
		margin: 0;
		border-radius: 8px;
	}

	.petemo-app-lp .sns-follow__text::after {
		top: calc(100% - 10px);
		right: 50%;
		transform: translateX(50%) rotate(90deg);
		width: 19px;
		height: 19px;
		background: url("../images/speech_bubble.svg") no-repeat center;
		background-size: contain;
	}

	.petemo-app-lp .sns-follow__action {
		flex-direction: column;
	}

	.petemo-app-lp .sns-follow__buttons {
		gap: 32px;
	}

	.petemo-app-lp .sns-follow__button {
		width: 60px;
		height: 60px;
	}

	.petemo-app-lp .sns-follow__button.sns-follow__button--instagram img {
		width: 29px;
		height: 29px;
	}
	.petemo-app-lp .sns-follow__button.sns-follow__button--x img {
		width: 22px;
		height: 23px;
	}

	.petemo-app-lp .sns-follow__links {
		margin-top: 24px;
		gap: 12px;
	}

	.petemo-app-lp .sns-follow__footer-link {
		font-size: 1.2rem;
		height: 36px;
		gap: 12px;
	}

	.petemo-app-lp .sns-follow__external-icon {
		width: 16px;
		height: 16px;
	}

	.petemo-app-lp .sp-show {
		display: block;
	}

	.petemo-app-lp .sp-hide {
		display: none;
	}

	.petemo-app-lp .br-mobile {
		display: inline;
	}

	.petemo-app-lp .download__bg-sp {
		width: 100%;
		height: auto;
	}

	.petemo-app-lp .download__title,
	.petemo-app-lp .download__content {
		position: relative;
		z-index: 2;
	}
	.petemo-app-lp .download__content {
		transform: none;
	}

	.petemo-app-lp .download__button-sp {
		margin-bottom: 20px;
	}

	.petemo-app-lp .download__button-sp-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: #669327;
		color: white;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 2.4rem;
		padding: 16px 42px;
		border-radius: 70px;
		text-decoration: none;
		box-sizing: border-box;
		transition: opacity 0.3s ease;
	}

	.petemo-app-lp .download__button-sp-link:hover {
		opacity: 0.7;
	}

	.petemo-app-lp .app-cta {
		bottom: 16px;
		right: 12px;
	}

	.petemo-app-lp .app-cta__download-btn {
		width: 124px;
		height: 124px;
		font-size: 1.2rem;
		line-height: 1.5;
		padding: 0 4px 4px 0;
		align-items: center;
		justify-content: center;
	}

	.petemo-app-lp .app-cta__download-btn::before {
		transform-origin: 60px 61px;
	}

	.petemo-app-lp .app-cta__download-btn-arrow {
		display: none;
	}
}
/* 2025.11.17 add to */
span[data-v-fbc6c706],span[data-v-5ed3d020]{
	font-size:clamp(1rem,1vw,1.46rem);
}

@media (max-width:844px){
	span[data-v-fbc6c706],span[data-v-5ed3d020]{
		font-size:14px;
	}
}

@media (max-width:640px){
	.site-header__btns[data-v-1f07ca88]{
		justify-content: flex-end;
	}
	button[data-v-2a9992bb] {
		margin:0 1vw 0 0;
	}
}