*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #042E4A;
  --white: #FFFFFF;
  --yellow: #F0E717;
  --light-gray: #F3F3F3;
  --gray: #E9E9E9;
  --mid-gray: #D9D9D9;
  --dark-gray: #646464;
  --accent-red: #ED5053;
  --teal: #19A3A3;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  color: var(--navy);
  overflow-x: hidden;
}

.pconly { display: block; }
.sponly { display: none; }

@media screen and (max-width: 767px) {
  .pconly { display: none; }
  .sponly { display: block; }
}

/* ===================== SECTION 1: FV ===================== */
.fv {
  position: relative;
  width: 100%;
  height: 810px;
  overflow: hidden;
}

.fv-back {
  position: absolute;
  width: 100%;
  height: 700px;
  background: url(assets/images/fv_bg.png) center top / 100% 100% no-repeat;
}

.fv-back::after {
  content: "";
  display: inline-block;
  background: url(./assets/images/phone-Icon.png) no-repeat center / contain;
  width: 112px;
  height: 212px;
  position: absolute;
  bottom: -10%;
  right: 15%;
}

.fv-inner-scale {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 810px;
  transform: translateX(-50%);
  transform-origin: top center;
}

.fv-announcement {
  position: absolute;
  top: 99px;
  left: 180px;
}

.fv-papatto {
  position: absolute;
  top: 99px;
  left: 739px;
}

.fv-dots {
  position: absolute;
  top: 180px;
  left: 639px;
  display: flex;
  gap: 53px;
}

.fv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(45deg, #F4B53F 0%, #E432AC 100%);
}

.fv-headline-row1 {
  position: absolute;
  top: 197px;
  left: 180px;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.fv-hl-small {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.fv-hl-large {
  font-size: 63px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.fv-headline-row2 {
  position: absolute;
  top: 275px;
  left: 180px;
  font-size: 75px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}

.fv-badge {
  position: absolute;
  top: 370px;
  left: 180px;
  width: 155px;
  height: 155px;
}

.fv-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fv-feature-list {
  position: absolute;
  top: 392px;
  left: 351px;
}

.fv-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.fv-feature-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.fv-feature-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.fv-feature-text span {
  font-size: 34px;
}

.fv-deco-yellow-1,
.fv-deco-yellow-2 {
  position: absolute;
  height: 10px;
  background: var(--yellow);
  z-index: -1;
}

.fv-deco-yellow-1 {
  top: 499px;
  left: 457px;
  width: 140px;
}

.fv-deco-yellow-2 {
  top: 416px;
  left: 624px;
  width: 98px;
}

.fv-btn {
  position: absolute;
  top: 727px;
  left: 540px;
  width: 360px;
  height: 70px;
  background-color: #042E4A;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  transition: background 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.25));
}
.fv-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.fv-btn-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.fv-phone {
  position: absolute;
  top: 70px;
  left: 860px;
  width: 394px;
  height: 568px;
  border-radius: 40px;
  overflow: hidden;
}

/* ===================== SECTION 2: Issues ===================== */
.issues {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.issues::before {
  content: "";
  position: absolute;
  background: var(--light-gray);
  width: 100%;
  height: 600px;
}

.issues::after {
  content: "";
  position: absolute;
  background: var(--light-gray);
  width: 103%;
  height: 1020px;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.issues-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.issues-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding: 80px 0 0;
}

.issues-tag,
.issues-subtitle {
  font-size: 35px;
  font-weight: 700;
  color: var(--navy);
}

.issues-tag {
  display: inline-block;
  /* border-bottom: 3px solid var(--navy); */
  padding-bottom: 4px;
  margin-bottom: 12px;
}

.issues-subtitle-highlight {
  font-size: 48px;
  background: linear-gradient(transparent 60%, rgba(135, 126, 126, 0.2) 60%);
  display: inline-block;
  padding: 0 4px;
}

.issues-card-wrapper {
  position: relative;
  max-width: 880px;
  margin: 0 auto 32px;
}

.issues-card {
  background: #7a7373;
  border-radius: 8px;
  padding: 32px 40px 48px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.issues-card-sweat {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 85px;
  height: auto;
  z-index: 5;
}

.issues-char-left,
.issues-char-right {
  position: absolute;
  width: auto;
  z-index: 1;
}

.issues-char-left {
  left: -120px;
  bottom: -40px;
  height: 202px;
}

.issues-char-right {
  right: -120px;
  top: -30px;
  height: 176px;
}

.issues-list {
  list-style: none;
  margin: 0 auto;
  width: fit-content;
  position: relative;
  right: 8px;
}

.issues-list li {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}

.issues-x-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.issues-x-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.issues-highlight-yellow {
  color: var(--yellow);
  font-size: 26px;
}

.issues-list-text {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}

.issues-result-block {
  margin: 0 -40px;
  padding: 0 40px 32px;
  text-align: center;
}

.issues-result-img {
  width: 190px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

.issues-result-highlight {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.issues-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  margin: 0 auto;
  width: fit-content;
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
}

.issues-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
}

.Speech-bubble {
  padding: 20px 0 0;
}

.issues-speech-bubble {
  background: var(--white);
  border-radius: 40px;
  padding: 16px 32px;
  max-width: 630px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.Speech-bubble p {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 30px 0 0;
}

.issues-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 28px solid var(--white);
}

.issues-speech-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.issues-speech-text span {
  font-size: 25px;
}

.issues-target-section {
  padding: 56px 0 48px;
  text-align: center;
}

.issues-target-heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 60px 0 18px;
}

.issues-target-heading img {
  width: 48px;
  height: auto;
}

.issues-divider {
  display: none;
}

.issues-summary {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
}

.issues-cta-bar {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(to right, #DF37AF, #3C83D0);
  padding: 32px 0;
  text-align: center;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.issues-cta-text {
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-align: center;
}

.issues-cta-text span {
  font-size: 40px;
}

/* ===================== SECTION 3: Features ===================== */
.features {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.features::before,
.features::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 800px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.features::before {
  background-image: url('assets/images/Background Shape -left.png');
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
}

.features::after {
  background-image: url('assets/images/Background Shape -right.png');
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.features-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 90px 40px;
  background: rgba(243, 243, 243, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 10;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.features-papatto {
  position: absolute;
  right: 60px;
  top: 20px;
}

.features-papatto img {
  height: 52px;
  width: auto;
}

.features-deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.features-title {
  text-align: center;
  margin-bottom: 48px;
}

.features-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.features-title-plain,
.features-title-highlight {
  font-size: 36px;
  font-weight: 700;
}

.features-title-plain {
  color: var(--navy);
}

.features-title-highlight {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 8px 24px;
}

.features-title-highlight .text-yellow {
  color: var(--yellow);
}

.features-content-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
  justify-content: center;
}

.features-screenshot {
  width: 650px;
  height: 374px;
  background: var(--mid-gray);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.features-bullet-list {
  list-style: none;
  padding: 16px 0;
}

.features-bullet-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(4, 46, 74, 0.1);
}

.features-bullet-list li:last-child {
  border-bottom: none;
}

.features-bullet-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-bullet-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.features-bullet-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}

.features-note {
  font-size: 14px;
  color: var(--navy);
  margin-top: 12px;
}

.features-arrow-v {
  width: 60px;
  height: 60px;
  margin: 24px auto 0;
  background: url("assets/images/ep_arrow-up-bold.png") no-repeat center / contain;
}

.features-bottom {
  text-align: center;
  padding-top: 32px;
  position: relative;
}

.features-bottom-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.features-bottom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  height: 70px;
  background: linear-gradient(to bottom, #083B5E 0%, #042E4A 100%);
  text-decoration: none;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.features-bottom-btn-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.features-bottom-btn-text-yellow {
  color: #E6E124;
}

.features-icon-container {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 240px;
  height: auto;
  z-index: 20;
  pointer-events: none;
}

.features-bottom-papatto {
  position: absolute;
  right: 300px;
  top: -30px;
}

.features-bottom-papatto img {
  height: 52px;
  width: auto;
}

.features-desc {
  font-size: 20px;
  line-height: 1.7;
}

/* ===================== SECTION 4: Phone Mockup ===================== */
.mockup-section-container {
  width: 100%;
  position: relative;
}

.mockup-phone-absolute {
  position: absolute;
  top: 50%;
  left: calc(50% - 500px + 70px);
  transform: translateY(-50%);
  width: 271px;
  height: auto;
  z-index: 10;
}

.mockup-phone-absolute img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
}

.mockup-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 70px;
  position: relative;
}

.mockup-part-a {
  background: #FFFFFF;
  padding: 100px 0 60px;
}

.mockup-part-b {
  background: linear-gradient(180deg, #F8F0D5 0%, #F4C8CD 100%);
  padding: 60px 0 100px;
}

.mockup-content-a,
.mockup-content-b {
  padding-left: 480px;
}

.mockup-subtitle {
  font-size: 23px;
  font-weight: 700;
  color: var(--navy);
}

.mockup-text-gradient {
  font-size: 36px;
  background: linear-gradient(to right, #DD36B1, #3F86D1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.mockup-main-title {
  font-size: 23px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

.mockup-hashtag {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.mockup-benefits {
  list-style: none;
  margin-bottom: 24px;
}

.mockup-benefits li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.mockup-benefit-dot {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mockup-benefit-dot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mockup-benefit-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.mockup-disclaimer {
  font-size: 14px;
  color: var(--navy);
}

/* ===================== SECTION 5: Price ===================== */
.price-section {
  width: 100%;
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.price-device-deco {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  pointer-events: none;
}

.price-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.price-title {
  font-size: 50px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.price-title::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 13px;
  background: linear-gradient(to top right, #F4B53F, #E432AC);
  z-index: -1;
}

.price-regular-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  padding: 32px 48px;
  width: 453px;
  margin: 0 auto 40px;
  text-align: center;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-label-box {
  background: transparent;
  padding: 4px 8px;
  border-radius: 2px;
  width: 110px;
  text-align: center;
  flex-shrink: 0;
  border: 1px solid var(--navy);
  margin-right: 4px;
}

.price-table .price-row:nth-of-type(2) .price-label-box{
  position: relative;
  right: 4px;
}
.price-label-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
}

.price-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}

.price-compare-section {
  background: rgba(243, 243, 243, 0.8);
  border-radius: 12px;
  padding: 56px 20px 40px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
  box-shadow: 3px 3px 30px 0 rgba(0, 0, 0, 0.2), inset 5px 5px 12px 0 rgba(255, 255, 255, 0.3);
}

.price-compare-heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.price-compare-heading::before,
.price-compare-heading::after {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.price-compare-heading::before {
  top: -24px;
  left: -40px;
  background-image: url("assets/images/price-compare-heading-icon-left.png");
}

.price-compare-heading::after {
  top: -24px;
  right: -40px;
  background-image: url("assets/images/price-compare-heading-icon-right.png");
}

.price-heading-highlight {
  background: linear-gradient(to right, #DD36B1, #3F86D1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.price-compare-grid {
  display: flex;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  border-radius: 8px;
  position: relative;
}

.price-compare-section-illust {
  position: absolute;
  top: -160px;
  right: 0;
  width: 300px;
  z-index: 10;
  pointer-events: none;
}

.price-col {
  flex: 1;
  padding: 48px 24px 32px;
  position: relative;
}

.price-col-regular {
  background: #EAEAEA;
  border-radius: 8px 0 0 8px;
}

.price-col-regular .price-col-rows .price-col-row:nth-of-type(2){
  position: relative;
  right: 5px;
}

.price-col-regular::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  border-top: 45px solid transparent;
  border-bottom: 45px solid transparent;
  border-left: 35px solid #EAEAEA;
  z-index: 5;
}

.price-col-early {
  background: var(--navy);
  border-radius: 0 8px 8px 0;
  padding-left: 48px;
}

.price-col-tag {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.price-col-tag-regular,
.price-col-tag-early {
  display: inline-flex;
  border-radius: 40px;
  white-space: nowrap;
}

.price-col-tag-regular {
  background: var(--white);
  border: 1px solid #CCC;
  padding: 10px 48px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.price-col-tag-early {
  background: var(--white);
  border: 2px solid #9B51E0;
  padding: 10px 48px;
  font-size: 20px;
  font-weight: 700;
  color: #9B51E0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-col-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.price-col-row {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: center;
}

.price-col.price-col-early .price-col-rows .price-col-row:nth-of-type(2) {
  position: relative;
}
.price-col.price-col-early .price-col-rows .price-col-row:nth-of-type(2) .price-label-box-small-early{
  position: relative;
  margin-right: 14px;
}

.price-label-box-small-regular,
.price-label-box-small-early {
  background: transparent;
  border: 1px solid #999;
  border-radius: 2px;
  padding: 2px 0;
  width: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.price-label-box-small-regular {
  position: relative;
  bottom: 6px;
}

.price-label-box-small-early {
  position: relative;
  bottom: 14px;
}

.price-label-sm {
  font-size: 14px;
  font-weight: 500;
}

.price-label-sm-regular { color: var(--navy); }
.price-label-sm-early { color: var(--white); }

.price-amount-regular {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
}

.price-amount-early {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
  line-height: 1;
}

.price-unit-regular,
.price-unit-early {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.price-unit-regular { color: var(--navy); }
.price-unit-early { color: var(--white); }

.price-sale-badge {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 130px;
  height: 130px;
  z-index: 20;
}

.price-sale-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-notes {
  margin-top: 40px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.8;
  display: flex;
  justify-content: center;
}

/* ===================== SECTION 6: CTA ===================== */
.cta-section {
  width: 100%;
  background: var(--navy);
  padding: 70px 0;
  text-align: center;
}

.cta-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.cta-btn-white,
.cta-btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 70px;
  border-radius: 9999px;
  text-decoration: none;
  position: relative;
}

.cta-btn-white {
  background: var(--white);
}

.cta-btn-dark {
  gap: 12px;
  background: linear-gradient(to bottom right, #DD36B1, #3F86D1);
  color: var(--white);
}

.cta-btn-white::after,
.cta-btn-dark::after {
  content: "";
  width: 12px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
}

.cta-btn-white::after {
  background-image: url(./assets/images/weui_arrow-outlined2.png);
}

.cta-btn-dark::after {
  background-image: url(./assets/images/weui_arrow-outlined1.png);
}

.cta-btn-dark:hover,
.cta-btn-white:hover{
  opacity: 0.95;
  transform: translateY(-2px);
}

.cta-btn-white-text,
.cta-btn-dark-text {
  font-size: 22px;
  font-weight: 700;
}

.cta-btn-white-text { color: var(--navy); }

/* ===================== FOOTER ===================== */
footer {
  width: 100%;
  padding: 24px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-pmark {
  width: 43px;
  height: 42px;
  background: var(--mid-gray);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #666;
}

.footer-privacy-text {
  font-size: 15px;
  color: var(--navy);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-company {
  font-size: 14px;
  color: var(--navy);
}

.footer-logo {
  width: 70px;
  height: 25px;
  background: var(--mid-gray);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #666;
}

.issues-char-woman {
  position: absolute;
  right: 20px;
  top: 500px;
  height: 200px;
  width: auto;
  pointer-events: none;
}

.issues-char-man {
  position: absolute;
  right: 60px;
  top: 620px;
  height: 220px;
  width: auto;
  pointer-events: none;
}

@media (max-width: 1439px) {
  .fv {
    height: calc(810px * (100vw / 1440));
  }

  .fv-inner-scale {
    transform: translateX(-50%) scale(calc(100vw / 1440));
  }
}

@media (max-width: 1200px) {
  .issues-char-right {
    right: 0;
    top: -200px;
  }

  .issues-char-left {
    left: 0;
    bottom: -230px;
  }

  .mockup-phone-absolute {
    left: 40px;
  }

  .mockup-content-a,
  .mockup-content-b {
    padding-left: 350px;
  }
    .features-bottom-papatto {
    position: absolute;
    right: 30%;
    top: -30px;
}
.features-icon-container {
  display: none;
}
}

@media (max-width: 1100px) {
  .issues-char-man,
  .issues-char-woman {
    display: none;
  }
}

@media (max-width: 1024px) {
  .fv-announcement { left: 350px; }
  .fv-headline-row1 { left: 350px; }
  .fv-dots { left: 684px; gap: 47px; }
  .fv-headline-row2 { left: 349px; font-size: 60px; }
  .fv-hl-large { font-size: 55px; }
  .fv-hl-small { font-size: 36px; }
  .fv-papatto { top: 136px; left: 867px; }
  .fv-badge { left: 345px; }
  .fv-feature-list { left: 501px; }
  .fv-deco-yellow-1 { left: 607px; }
  .fv-deco-yellow-2 { left: 774px; }
  .fv-back::after {
    bottom: 3%;
    right: 0;
    z-index: 10;
    width: 90px;
    height: 164px;
  }
  .fv-phone {
    top: 200px;
    left: 858px;
    width: 312px;
    height: 450px;
  }

  .issues-inner,
  .price-inner {
    padding: 0 32px;
  }

  .issues-tag,
  .issues-subtitle { font-size: 26px; }
  .issues-list-text { font-size: 16px; }
  .issues-result-highlight { font-size: 22px; }
  .issues-target-heading { font-size: 22px; }
  .issues-summary { font-size: 20px; }
  .issues-cta-text { font-size: 28px; }
  .issues-speech-text { font-size: 17px; }
  .issues-cta-text span {font-size: 20px;}

  .price-compare-section-illust {
    top: -100px;
    width: 200px;
}

  .features-inner { padding: 60px 32px; }
  .features-title-plain,
  .features-title-highlight { font-size: 26px; }
  .features-content-row { gap: 24px; }
  .features-screenshot {
    width: 420px;
    height: 240px;
  }
  .features-bottom-heading { font-size: 26px; }
  .features-bottom-btn { width: 280px; }
  .features-bottom-btn-text { font-size: 24px; }

  .mockup-inner {
    padding: 0 32px;
    gap: 32px;
  }

  .price-compare-heading { font-size: 28px; }
  .price-regular-card {
    width: 100%;
    max-width: 453px;
  }
  .price-sale-badge {
    top: -50px;
    right: 0;
    width: 100px;
    height: 100px;
  }

  .cta-section { padding: 48px 32px; }
  .cta-heading { font-size: 26px; }
  .cta-btn-white,
  .cta-btn-dark {
    width: 280px;
    height: 60px;
  }
  .cta-btn-white-text,
  .cta-btn-dark-text {
    font-size: 18px;
  }

  footer { padding: 20px 32px; }
  .footer-privacy-text { font-size: 13px; }
}

/* ===================== SP common ===================== */
@media (max-width: 767px) {
  .fv {
    height: auto;
    min-height: 0;
  }

  .fv-back {
    height: 515px;
    background: url(assets/images/back-sp.png) center top / 100% 100% no-repeat;
  }

  .fv-back::after {
    display: none;
  }

  .fv-inner-scale {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    transform: none !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 0;
  }

  .fv-announcement,
  .fv-papatto,
  .fv-dots,
  .fv-headline-row1,
  .fv-headline-row2,
  .fv-badge,
  .fv-feature-list,
  .fv-deco-yellow-1,
  .fv-deco-yellow-2,
  .fv-btn,
  .fv-phone {
    position: relative;
    top: -1%;
    left: auto;
    transform: none;
  }

  .fv-announcement {
    order: 1;
    top: 25px;
    left: 80px;
    z-index: 1;
  }

  .fv-papatto {
    order: 2;
    align-self: flex-end;
    top: 95px;
    right: 345px;
    z-index: 1;
  }

  .fv-papatto img {
    height: 40px;
    width: auto;
  }

  .fv-dots {
    order: 3;
    position: absolute;
    top: 162px;
    left: 122px;
    gap: 35px;
    margin-bottom: 8px;
    z-index: 1;
  }

  .fv-dot {
    width: 5px;
    height: 5px;
  }

  .fv-headline-row1 {
    order: 4;
    white-space: normal;
    flex-direction: column;
    align-items: baseline;
    margin-bottom: 4px;
    left: 85px;
    z-index: 1;
  }

  .fv-headline-row2 {
    order: 5;
    white-space: normal;
    margin-bottom: 20px;
    left: 79px;
    font-size: 45px;
    padding: 4px;
    text-shadow: 0 0 6px rgba(255,255,255,1);
    z-index: 1;
  }

  .fv-feature-list {
    order: 6;
    overflow: hidden;
    top: 15px;
    left: 90px;
    z-index: 1;
  }

  .fv-badge {
    order: 7;
    width: 100px;
    height: 100px;
    float: left;
    margin-right: 16px;
    margin-bottom: 8px;
    left: 329px;
    bottom: 80px;
    z-index: 1;
  }

  .fv-phone {
    order: 8;
    position: absolute;
    top: 0;
    right: 70px;
    z-index: 0;
    width: 37%;
    height: auto;
    border-radius: 24px;
    overflow: visible;
    margin-bottom: 20px;
    z-index: 0;
  }

  .fv-phone img {
    position: relative;
    left: 45px;
  }

  .fv-btn {
    order: 9;
    width: 70%;
    height: 56px;
    margin: 0 auto;
    top: -30px;
  }

  .fv-btn::before {
    border-radius: 30px;
  }

  .fv-btn-text {
    font-size: 15px;
  }

  .fv-hl-small {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .fv-hl-large {
    font-size: 40px;
  }

  .fv-feature-text {
    font-size: 14px;
    line-height: 1;
  }

  .fv-feature-text span {
    font-size: 24px;
  }

  .fv-announcement img {
    height: 45px;
    width: auto;
  }

  .fv-deco-yellow-1 {
    top: 318px;
    left: 265px;
    width: 54px;
    z-index: 0;
  }

  .fv-deco-yellow-2 {
    top: 361px;
    left: 165px;
    width: 94px;
    z-index: 0;
  }

  .issues {
    padding-top: 48px;
  }

  .issues-inner {
    padding: 0 20px;
  }

  .issues-tag,
  .issues-subtitle {
    font-size: 20px;
  }

  .issues-subtitle-highlight {
    font-size: 28px;
  }

  .issues-card-wrapper {
    margin: 0 auto 32px auto;
  }

  .issues-card {
    padding: 24px 20px 0;
    width: 300px;
    margin: 0 auto;
  }

  .issues-char-left,
  .issues-char-right,
  .issues-card-sweat {
    display: none;
  }

  .issues-result-block {
    margin: 0 -20px;
    padding: 0 20px 24px;
  }

  .issues-result-img {
    width: 150px;
    margin-bottom: 12px;
  }

  .issues-list-text {
    font-size: 14px;
    white-space: nowrap;
  }

  .issues-result-highlight {
    font-size: 18px;
  }

  .issues-target-heading {
    font-size: 18px;
    gap: 8px;
    text-align: center;
    align-items: flex-end;
  }

  .issues-target-heading img {
    width: 45px;
  }

  .issues-summary {
    font-size: 16px;
  }

  .issues-cta-text {
    font-size: 22px;
    padding: 0 16px;
  }

  .issues-cta-text span {
    font-size: 15px;
  }

  .issues-speech-text {
    font-size: 15px;
  }

  .issues-speech-bubble {
    padding: 14px 20px;
  }

  .issues-dots {
    gap: 10px;
    top: 63%;
  }

  .issues-dot {
    width: 8px;
    height: 8px;
  }

  .issues-cta-bar {
    padding: 16px 0;
  }

  .issues::after {
    width: 200%;
    height: 730px;
  }

  .features {
    padding: 0 0 80px;
  }

  .features-inner {
    width: 90%;
    margin: 0 auto;
  }

  .features-title-row {
    flex-direction: column;
    align-items: center;
  }

  .features-title-plain,
  .features-title-highlight {
    font-size: 22px;
  }

  .features-title-highlight {
    padding: 6px 16px;
  }

  .features-content-row {
    flex-direction: column;
    gap: 24px;
  }

  .features-screenshot {
    width: 100%;
    height: 220px;
  }

  .features-bullet-text {
    font-size: 15px;
  }

  .features-bottom-heading {
    font-size: 18px;
    white-space: nowrap;
    text-align: center;
    position: relative;
    right: 5px;
  }

  .features-bottom-btn {
    width: 100%;
    max-width: 320px;
    height: 54px;
  }

  .features-bottom-btn-text {
    font-size: 22px;
  }

  .features-desc {
    font-size: 14px;
  }

  .features::before,
  .features::after {
    width: 200px;
    height: 800px;
  }

  .features::before {
    left: 0;
    top: 90%;
    transform: translateY(-50%);
  }

  .features::after {
    right: 0;
    top: 39%;
    transform: translateY(-50%);
  }

  .features-icon-container {
    display: none;
  }

  .features-bottom-papatto {
    right: 20%;
    top: -10px;
  }

  .features-bottom-papatto img {
    height: 40px;
    width: auto;
  }
  .price-section {
    padding: 48px 0;
  }

  .price-inner {
    padding: 0 20px;
  }

  .price-title {
    font-size: 36px;
  }

  .price-regular-card {
    width: 100%;
    padding: 24px 20px;
  }

  .price-amount {
    font-size: 22px;
  }

  .price-compare-section {
    padding: 48px 20px 32px;
    margin-top: 40px;
  }

  .price-compare-section-illust {
    top: -40px;
    width: 100px;
  }

  .price-compare-heading {
    font-size: 24px;
    margin-bottom: 48px;
  }

  .price-compare-heading::before,
  .price-compare-heading::after {
    display: none;
  }

  .price-compare-grid {
    flex-direction: column;
    gap: 62px;
  }

  .price-col {
    padding: 40px 20px 24px;
  }

  .price-col-regular {
    border-radius: 8px;
    position: relative;
  }

  .price-col-regular::after {
    display: none;
  }

  .price-col-regular::before {
    content: '';
    position: absolute;
    top: 115%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-top: 18px solid var(--navy);
    border-bottom: 0;
    z-index: 5;
  }

  .price-col-early {
    border-radius: 8px;
    padding-left: 20px;
  }

  .price-col-tag-regular,
  .price-col-tag-early {
    font-size: 16px;
    padding: 8px 32px;
  }

  .price-amount-regular {
    font-size: 24px;
  }

  .price-amount-early {
    font-size: 36px;
  }

  .price-sale-badge {
    top: -55px;
    right: -10px;
    width: 70px;
    height: 70px;
  }

  .price-notes {
    font-size: 12px;
    margin-top: 24px;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-heading {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .cta-btn-white,
  .cta-btn-dark {
    width: 100%;
    max-width: 320px;
    height: 58px;
  }

  .cta-btn-white-text,
  .cta-btn-dark-text {
    font-size: 18px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .footer-right {
    align-self: flex-end;
  }

  .footer-privacy-text {
    font-size: 12px;
  }
}

/* ===================== 700px only difference ===================== */
@media (max-width: 700px) {
  .fv-announcement { left: 7px; }
  .fv-papatto {right: 40%;}
  .fv-dots { left: 46px; gap: 30px; }
  .fv-headline-row1 { left: 10px; }
  .fv-headline-row2 { left: 7px; }
  .fv-hl-large { font-size: 45px; }
  .fv-feature-list { left: 16px; }
  .fv-badge { left: 258px; }
  .fv-phone {
    width: 45%;
    right: 0;
  }
  .fv-deco-yellow-1 {
    top: 323px;
    left: 190px;
  }
  .fv-deco-yellow-2 {
    top: 366px;
    left: 89px;
  }
}
@media screen and (max-width:670px){
  .mockup-inner {
    flex-direction: column;
    padding: 40px 32px;
    gap: 32px;
    align-items: center;
  }

  .mockup-part-a {
    background: #FFFFFF;
    padding: 0 0 60px;
  }

  .mockup-part-b {
    padding: 60px 0 210px;
  }

  .mockup-phone-absolute {
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: auto;
  }

  .mockup-content-a,
  .mockup-content-b {
    padding-left: 0;
  }

  .mockup-content-b {
    position: relative;
    top: 190px;
  }

  .mockup-subtitle,
  .mockup-main-title {
    font-size: 18px;
  }
  .mockup-main-title span {
    font-size: 23px !important;
  }
  .mockup-hashtag {
    font-size: 20px;
  }
  .mockup-benefit-text {
    font-size: 15px;
  }
  .mockup-disclaimer {
    font-size: 12px;
  }
  .mockup-text-gradient {
    font-size: 24px;
  }
}
/* ===================== 500px only difference ===================== */
@media (max-width: 500px) {
  .fv-announcement { right: 13px; left: auto; }
  .fv-papatto { right: 105px; }
  .fv-dots { left: 26px; }
  .fv-headline-row1 { right: 9px; left: auto; }
  .fv-headline-row2 { right: 10px; left: auto; }
  .fv-hl-large { font-size: 36px; }
  .fv-phone {
    width: 55%;
    right: 20px;
    top: 60px;
  }
  .fv-feature-list {right: 5px;left: auto;text-shadow: 0 0 3px rgba(255, 255, 255, 1);}
  .fv-badge {
    left: 75%;
    bottom: 80px;
  }
  .fv-hl-small { font-size: 22px; }
  .fv-hl-large { font-size: 28px; }
  .fv-headline-row2 {
    font-size: 32px;
    right: 15px;
  }
  .fv-dots {
    gap: 24px;
    left: 21px;
  }
  .issues-subtitle { font-size: 17px; }
  .issues-cta-text { font-size: 18px; }
  .fv-deco-yellow-1 {
    top: 291px;
    left: 169px;
    width: 70px;
  }
  .fv-deco-yellow-2 {
    top: 334px;
    left: 70px;
  }
  .issues-dots {
    top: 64%;
  }
  .features-bottom-papatto {
    right: 0;
    top: -10px;
    }
}

@media (max-width: 374px) {
  .fv-hl-small { font-size: 22px; }
  .fv-hl-large { font-size: 28px; }
  .issues-subtitle { font-size: 17px; }
  .issues-cta-text { font-size: 18px; }
  .issues-dots {top: 66%;}
}

@media (max-width: 340px) {
  .fv-headline-row2 {
    font-size: 30px;
    right: 15px;
  }
  .fv-phone {
    width: 55%;
    right: 4px;
    top: 10px;
  }
  .fv-deco-yellow-2 {
    top: 332px;
    left: 68px;
  }
  .fv-deco-yellow-1 {
    top: 289px;
    left: 171px;
  }
  .fv-badge img {
    width: 80%;
    height: 80%;
    object-fit: contain;
  }
  .fv-badge {
    left: 75%;
    bottom: 20px;
  }
}