@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

input,
textarea,
select {
  font: inherit;
}

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

table {
  border-collapse: collapse;
}

body {
  font-family: "Manrope", "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
@media (max-width: 768px) {
  body {
    font-size: 0.9375rem;
  }
}
body {
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #212121;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  transition: color 0.3s ease;
}
a:focus-visible {
  outline: 2px solid #FC4C9C;
  outline-offset: 2px;
}

strong {
  font-weight: 700;
}

::-moz-selection {
  background-color: rgba(252, 76, 156, 0.15);
  color: #212121;
}

::selection {
  background-color: rgba(252, 76, 156, 0.15);
  color: #212121;
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.l-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.l-bg__orb--pink {
  width: 600px;
}
@media (max-width: 768px) {
  .l-bg__orb--pink {
    width: 400px;
  }
}
.l-bg__orb--pink {
  height: 600px;
}
@media (max-width: 768px) {
  .l-bg__orb--pink {
    height: 400px;
  }
}
.l-bg__orb--pink {
  background: #d75a11;
  top: -100px;
  right: -100px;
}
.l-bg__orb--purple {
  width: 500px;
}
@media (max-width: 768px) {
  .l-bg__orb--purple {
    width: 300px;
  }
}
.l-bg__orb--purple {
  height: 500px;
}
@media (max-width: 768px) {
  .l-bg__orb--purple {
    height: 300px;
  }
}
.l-bg__orb--purple {
  background: #cd3ce6;
  bottom: 20%;
  left: -80px;
}
.l-bg__orb--blue {
  width: 550px;
}
@media (max-width: 768px) {
  .l-bg__orb--blue {
    width: 350px;
  }
}
.l-bg__orb--blue {
  height: 550px;
}
@media (max-width: 768px) {
  .l-bg__orb--blue {
    height: 350px;
  }
}
.l-bg__orb--blue {
  background: #2f62d7;
  top: 40%;
  right: -120px;
}

.l-bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(224, 224, 224, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(224, 224, 224, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
}
@media (max-width: 768px) {
  .l-header {
    height: 60px;
  }
}
.l-header {
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(0);
}
.l-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(224, 224, 224, 0.6);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 1080px) {
  .l-header__inner {
    padding: 0 16px;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.l-header__logo-image {
  height: 48px;
}
@media (max-width: 768px) {
  .l-header__logo-image {
    height: 36px;
  }
}
.l-header__logo-image {
  width: auto;
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1080px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #212121;
  transition: color all 0.3s ease, font-weight all 0.3s ease;
  white-space: nowrap;
}
.l-header__nav-link:hover {
  color: rgba(33, 33, 33, 0.75);
}
.l-header__nav-link.is-active {
  color: #FC4C9C;
}
.l-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1080px) {
  .l-header__actions {
    display: none;
  }
}
.l-header__login {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #212121;
  transition: all 0.3s ease;
}
.l-header__login:hover {
  color: #FC4C9C;
}
.l-header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #212121;
  background-color: #FFCC3B;
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.l-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 204, 59, 0.35);
  opacity: 0.7;
}
.l-header__cta:active {
  transform: translateY(0) scale(0.98);
}
.l-header__hamburger {
  display: none;
}
@media (max-width: 1080px) {
  .l-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 6px;
  }
}
.l-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #212121;
  border-radius: 1px;
  transition: transform all 0.3s ease, opacity all 0.3s ease;
}
.l-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.l-mobile-menu {
  display: none;
}
@media (max-width: 1080px) {
  .l-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity all 0.3s ease, visibility all 0.3s ease;
  }
}
.l-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.l-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.l-mobile-menu__link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #212121;
  transition: color all 0.3s ease;
}
.l-mobile-menu__link:hover {
  color: #FC4C9C;
}
.l-mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.l-mobile-menu__login {
  font-size: 0.875rem;
  font-weight: 500;
  color: #212121;
}
.l-mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #8F55FF;
  border-radius: 9999px;
  transition: opacity all 0.3s ease;
}
.l-mobile-menu__cta:hover {
  opacity: 0.7;
}

.l-inner {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
@media (max-width: 1280px) {
  .l-inner {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .l-inner {
    padding: 0 16px;
  }
}

.l-section {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 1080px) {
  .l-section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .l-section {
    padding: 64px 0;
  }
}
.l-section.is-animate > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.l-section.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.l-section--hero {
  padding-top: 144px;
}
@media (max-width: 768px) {
  .l-section--hero {
    padding-top: 92px;
  }
}
.l-section--hero {
  padding-bottom: 0;
}
.l-section--concerns {
  background-color: #f3eeea;
}
.l-section--transition, .l-section--intro {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .l-section--transition, .l-section--intro {
    padding: 48px 0;
  }
}
.l-section--features-carousel {
  padding: 0;
}
@media (max-width: 768px) {
  .l-section--features-carousel {
    padding: 0;
  }
}
.l-section--features-carousel {
  overflow: hidden;
}
.l-section--value {
  background-color: transparent;
}
.l-section--value .l-inner {
  max-width: 1160px;
}
.l-section--voice {
  overflow: hidden;
  background-color: #f3eeea;
}
.l-section--price {
  background-color: #f3eeea;
}
.l-section--trial {
  background-color: #FAFAFA;
}
.l-section--steps {
  background-color: #FFFFFF;
}
.l-section--cta-final {
  background-color: #212121;
  color: #FFFFFF;
}
.l-section--faq {
  background-color: #FAFAFA;
}
.l-section--cta-bottom {
  background-color: #FC4C9C;
  color: #FFFFFF;
  overflow: hidden;
}

.l-footer {
  background-color: #212121;
  color: #FFFFFF;
  padding: 64px 0 24px;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 48px 0 24px;
  }
}
.l-footer__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
@media (max-width: 1280px) {
  .l-footer__inner {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .l-footer__inner {
    padding: 0 16px;
  }
}
.l-footer__logo {
  margin-bottom: 48px;
}
.l-footer__logo img {
  height: 48px;
}
@media (max-width: 768px) {
  .l-footer__logo img {
    height: 40px;
  }
}
.l-footer__logo img {
  width: auto;
  filter: brightness(0) invert(1);
}
.l-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.l-footer__link {
  font-size: 0.75rem;
  color: #999999;
  transition: color all 0.3s ease;
}
.l-footer__link:hover {
  color: #FFFFFF;
}
.l-footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
}
.l-footer__copyright {
  font-size: 0.6875rem;
  color: #999999;
  letter-spacing: 0.05em;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  font-family: "Manrope", "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.c-btn:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}
.c-btn:active {
  transform: translateY(0) scale(0.98);
}
.c-btn--primary-lg {
  padding: 22px 64px;
}
@media (max-width: 768px) {
  .c-btn--primary-lg {
    padding: 18px 48px;
  }
}
.c-btn--primary-lg {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .c-btn--primary-lg {
    font-size: 1rem;
  }
}
.c-btn--primary-lg {
  color: #212121;
  background-color: #FFCC3B;
}
.c-btn--primary-lg:hover {
  box-shadow: 0 8px 24px rgba(255, 204, 59, 0.4);
}

.c-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .c-section-heading {
    margin-bottom: 48px;
  }
}
.c-section-heading__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
}
@media (max-width: 768px) {
  .c-section-heading__label {
    font-size: 0.75rem;
  }
}
.c-section-heading__label {
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(33, 33, 33, 0.7);
  margin-bottom: 8px;
}
.c-section-heading__label::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.c-section-heading__en {
  font-family: "Manrope", sans-serif;
  font-size: 5rem;
}
@media (max-width: 768px) {
  .c-section-heading__en {
    font-size: 4rem;
  }
}
.c-section-heading__en {
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #212121;
  line-height: 1.2;
}

.p-hero {
  text-align: center;
}
.p-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .p-hero__content {
    padding: 0 16px;
  }
}
.p-hero__catch {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-hero__catch {
    margin-bottom: 20px;
  }
}
.p-hero__catch-sub {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .p-hero__catch-sub {
    font-size: 1.125rem;
  }
}
.p-hero__catch-sub {
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #212121;
}
.p-hero__catch-main {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .p-hero__catch-main {
    font-size: 2rem;
  }
}
.p-hero__catch-main {
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.p-hero__catch-main strong {
  color: #FC4C9C;
}
.p-hero__window {
  width: 100%;
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 32px;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  overflow: visible;
  border: 1px solid #E0E0E0;
}
.p-hero__window-header {
  display: flex;
  align-items: center;
  padding: 18px 24px;
}
@media (max-width: 768px) {
  .p-hero__window-header {
    padding: 14px 16px;
  }
}
.p-hero__window-header {
  background-color: #F5F5F5;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 4px 4px 0 0;
  position: relative;
  overflow: hidden;
}
.p-hero__window-dots {
  display: flex;
  gap: 8px;
}
.p-hero__window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.p-hero__window-dot--close {
  background-color: #FF5F57;
}
.p-hero__window-dot--minimize {
  background-color: #FEBC2E;
}
.p-hero__window-dot--maximize {
  background-color: #28C840;
}
.p-hero__window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-hero__window-title {
    font-size: 0.8125rem;
  }
}
.p-hero__window-title {
  font-weight: 700;
  color: #212121;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.p-hero__window-body {
  position: relative;
  display: flex;
  background-color: #FFFFFF;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}
.p-hero__window-mascot {
  position: absolute;
  right: -24px;
}
@media (max-width: 768px) {
  .p-hero__window-mascot {
    right: -16px;
  }
}
.p-hero__window-mascot {
  bottom: -32px;
}
@media (max-width: 768px) {
  .p-hero__window-mascot {
    bottom: -20px;
  }
}
.p-hero__window-mascot {
  width: 88px;
}
@media (max-width: 768px) {
  .p-hero__window-mascot {
    width: 64px;
  }
}
.p-hero__window-mascot {
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.p-hero__mascot-pupils {
  transform-origin: 50px 95px;
  animation: mascot-look-around 4s ease-in-out infinite;
}
.p-hero__mascot-eye-white {
  transform-origin: 50px 95px;
  animation: mascot-blink 4s ease-in-out infinite;
}
.p-hero__chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 32px;
}
@media (max-width: 768px) {
  .p-hero__chat-messages {
    padding: 16px;
  }
}
.p-hero__chat-messages {
  gap: 16px;
}
@media (max-width: 768px) {
  .p-hero__chat-messages {
    gap: 12px;
  }
}
.p-hero__chat-messages {
  overflow: hidden;
}
.p-hero__chat-row {
  display: flex;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.6s ease;
}
.p-hero__chat-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-hero__chat-row--user {
  justify-content: flex-end;
}
.p-hero__chat-row--ai {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.p-hero__chat-ai-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-color: #EEEEEE;
  padding: 5px;
}
.p-hero__chat-bubble {
  max-width: 80%;
  padding: 12px 24px;
}
@media (max-width: 768px) {
  .p-hero__chat-bubble {
    padding: 10px 16px;
  }
}
.p-hero__chat-bubble {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .p-hero__chat-bubble {
    font-size: 0.8125rem;
  }
}
.p-hero__chat-bubble {
  line-height: 1.7;
  border-radius: 4px;
}
.p-hero__chat-bubble--user {
  background-color: #212121;
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.p-hero__chat-bubble--ai {
  background-color: #F7F7F7;
  color: #212121;
  border-bottom-left-radius: 4px;
  border: 1px solid #EEEEEE;
}
.p-hero__chat-typing {
  display: flex;
  gap: 5px;
  padding: 4px 0;
}
.p-hero__chat-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #BDBDBD;
  animation: heroTypingBounce 1.4s infinite ease-in-out;
}
.p-hero__chat-typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.p-hero__chat-typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}
.p-hero__cta-area {
  margin-bottom: 48px;
}
.p-hero__cta-area .c-btn--primary-lg {
  padding: 22px 96px;
}
@media (max-width: 768px) {
  .p-hero__cta-area .c-btn--primary-lg {
    padding: 18px 64px;
  }
}
.p-hero__cta-label {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .p-hero__cta-label {
    font-size: 0.9375rem;
  }
}
.p-hero__cta-label {
  font-weight: 600;
  color: #212121;
  margin-bottom: 8px;
}
.p-hero__stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}
@media (max-width: 768px) {
  .p-hero__stats {
    gap: 32px;
  }
}
.p-hero__stats {
  flex-wrap: wrap;
}
.p-hero__stat {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-hero__stat-award {
  width: 36px;
}
@media (max-width: 768px) {
  .p-hero__stat-award {
    width: 32px;
  }
}
.p-hero__stat-award {
  height: auto;
  opacity: 0.6;
}
.p-hero__stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-hero__stat-label {
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-hero__stat-label {
    font-size: 0.875rem;
  }
}
.p-hero__stat-label {
  font-weight: 600;
  color: #212121;
  letter-spacing: 0.05em;
}
.p-hero__stat-number {
  font-family: "Manrope", sans-serif;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .p-hero__stat-number {
    font-size: 2rem;
  }
}
.p-hero__stat-number {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #212121;
  line-height: 1.2;
}
.p-hero__stat-number [data-count] {
  display: inline-block;
  min-width: 5ch;
}
@media (max-width: 768px) {
  .p-hero__stat-number [data-count] {
    min-width: 4.5ch;
  }
}
.p-hero__stat-number [data-count] {
  text-align: right;
}
.p-hero__stat-unit {
  font-family: "Manrope", "YakuHanJPs", "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .p-hero__stat-unit {
    font-size: 0.875rem;
  }
}
.p-hero__stat-unit {
  font-weight: 700;
  margin-left: 2px;
}
.p-hero__stat-star {
  width: 64px;
}
@media (max-width: 768px) {
  .p-hero__stat-star {
    width: 48px;
  }
}
.p-hero__stat-star {
  height: auto;
  margin-top: 4px;
}
.p-hero__icons {
  width: 100%;
  max-width: 1080px;
  overflow: hidden;
  padding: 48px 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.p-hero__icons-row {
  display: flex;
  gap: 32px;
  animation: marquee 40s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
.p-hero__icons-row:nth-child(2) {
  animation-direction: reverse;
  margin-top: 16px;
}
.p-hero__icon-item {
  width: 64px;
}
@media (max-width: 768px) {
  .p-hero__icon-item {
    width: 52px;
  }
}
.p-hero__icon-item {
  height: 64px;
}
@media (max-width: 768px) {
  .p-hero__icon-item {
    height: 52px;
  }
}
.p-hero__icon-item {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.p-concerns__title {
  text-align: center;
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .p-concerns__title {
    font-size: 1.75rem;
  }
}
.p-concerns__title {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-concerns__title {
    margin-bottom: 32px;
  }
}
.p-concerns__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}
.p-concerns__item {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-concerns__item {
    gap: 16px;
  }
}
.p-concerns__item:nth-child(odd) .p-concerns__balloon::after {
  left: auto;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #FFFFFF;
  border-right: 0;
}
.p-concerns__item:nth-child(even) {
  flex-direction: row-reverse;
}
.p-concerns__item:nth-child(even) .p-concerns__balloon::after {
  right: auto;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #FFFFFF;
  border-left: 0;
}
.p-concerns__balloon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 28px 28px;
}
@media (max-width: 768px) {
  .p-concerns__balloon {
    padding: 20px 20px;
  }
}
.p-concerns__balloon {
  position: relative;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.p-concerns__balloon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.p-concerns__balloon-text {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-concerns__balloon-text {
    font-size: 1rem;
  }
}
.p-concerns__balloon-text {
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}
.p-concerns__avatar {
  width: 120px;
}
@media (max-width: 768px) {
  .p-concerns__avatar {
    width: 96px;
  }
}
.p-concerns__avatar {
  flex-shrink: 0;
}
.p-concerns__avatar img {
  width: 100%;
  height: auto;
}

.p-transition {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .p-transition {
    gap: 24px;
  }
}
.p-transition__line {
  display: block;
  width: 1px;
  height: 48px;
}
@media (max-width: 768px) {
  .p-transition__line {
    height: 32px;
  }
}
.p-transition__line {
  background: linear-gradient(to bottom, transparent, #FC4C9C);
}
.p-transition__text {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-transition__text {
    font-size: 1.375rem;
  }
}
.p-transition__text {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-transition__text span {
  background: linear-gradient(90deg, #FC4C9C 0%, #EF54EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.p-transition__arrow {
  color: #999999;
  animation: transition-bounce 2s ease-in-out infinite;
}

.p-intro {
  text-align: center;
}
.p-intro__subtitle {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .p-intro__subtitle {
    font-size: 1.25rem;
  }
}
.p-intro__subtitle {
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.p-intro__title {
  font-size: 2.75rem;
}
@media (max-width: 768px) {
  .p-intro__title {
    font-size: 2.25rem;
  }
}
.p-intro__title {
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.p-features-carousel {
  overflow: hidden;
}
.p-features-carousel__track {
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  .p-features-carousel__track {
    gap: 24px;
  }
}
.p-features-carousel__track {
  animation: features-scroll 20s linear infinite;
  width: -moz-max-content;
  width: max-content;
  padding: 16px 0;
}
.p-features-carousel__item {
  flex-shrink: 0;
  width: 240px;
}
@media (max-width: 768px) {
  .p-features-carousel__item {
    width: 200px;
  }
}
.p-features-carousel__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.p-features-carousel__label {
  display: flex;
  justify-content: center;
}
.p-features-carousel__label-badge {
  display: inline-block;
  padding: 6px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #212121;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  position: relative;
}
.p-features-carousel__label-badge::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #212121;
}
.p-features-carousel__card {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: #FAFAFA;
  border: 1px solid #E0E0E0;
}
.p-features-carousel__card-image {
  width: 100%;
  height: auto;
  display: block;
}

.p-value__main-title {
  text-align: center;
  font-size: 2.75rem;
}
@media (max-width: 768px) {
  .p-value__main-title {
    font-size: 2.25rem;
  }
}
.p-value__main-title {
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .p-value__main-title {
    margin-bottom: 48px;
  }
}
.p-value__items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.p-value__item {
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: clip;
  min-height: 480px;
}
@media (max-width: 1080px) {
  .p-value__item {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .p-value__item {
    min-height: auto;
  }
}
.p-value__item {
  border: 1px solid #BDBDBD;
}
@media (max-width: 768px) {
  .p-value__item {
    flex-direction: column;
  }
}
.p-value__item:nth-child(even) {
  flex-direction: row-reverse;
}
.p-value__item:nth-child(even) .p-value__item-image {
  margin: -12px 0 -12px -8px;
}
@media (max-width: 768px) {
  .p-value__item:nth-child(even) .p-value__item-image {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .p-value__item:nth-child(even) {
    flex-direction: column;
  }
}
.p-value__item-content {
  flex: 1;
  padding: 64px 64px 112px;
}
@media (max-width: 1080px) {
  .p-value__item-content {
    padding: 48px;
  }
}
@media (max-width: 768px) {
  .p-value__item-content {
    padding: 32px 24px;
  }
}
.p-value__item-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 24px;
}
@media (max-width: 768px) {
  .p-value__item-tag {
    padding: 4px 16px;
  }
}
.p-value__item-tag {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-value__item-tag {
    font-size: 0.875rem;
  }
}
.p-value__item-tag {
  font-weight: 700;
  color: #FFFFFF;
  background-color: #212121;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  position: relative;
}
.p-value__item-title {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-value__item-title {
    font-size: 1.625rem;
  }
}
.p-value__item-title {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.p-value__item-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-value__item-text {
    font-size: 0.875rem;
  }
}
.p-value__item-text {
  line-height: 1.7;
  color: rgba(33, 33, 33, 0.75);
}
.p-value__item-image {
  flex: 0 0 55%;
  align-self: stretch;
  position: relative;
  margin: -12px -8px -12px 0;
}
@media (max-width: 768px) {
  .p-value__item-image {
    margin: 0;
  }
}
.p-value__item-image {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .p-value__item-image {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .p-value__item-image {
    width: 100%;
    height: 280px;
  }
}
.p-value__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  border: 6px solid #FFFFFF;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.05);
}

.p-voice {
  position: relative;
}
.p-voice__carousel {
  position: relative;
  max-width: 100%;
  padding: 0 64px;
}
@media (max-width: 768px) {
  .p-voice__carousel {
    padding: 0 16px;
  }
}
.p-voice__viewport {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: grab;
  overflow: visible;
}
@media (max-width: 768px) {
  .p-voice__viewport {
    transition: height 0.4s ease;
  }
}
.p-voice__card {
  position: absolute;
  width: 720px;
}
@media (max-width: 768px) {
  .p-voice__card {
    width: 360px;
  }
}
.p-voice__card {
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #EEEEEE;
  padding: 36px;
}
@media (max-width: 768px) {
  .p-voice__card {
    padding: 24px;
  }
}
.p-voice__card {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.p-voice__card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 3;
  pointer-events: auto;
  padding: 56px;
}
@media (max-width: 768px) {
  .p-voice__card.is-active {
    padding: 24px;
  }
}
.p-voice__card.is-prev {
  opacity: 0.5;
  transform: translateX(-100%) scale(0.8);
}
@media (max-width: 768px) {
  .p-voice__card.is-prev {
    transform: translateX(-92%) scale(0.85);
  }
}
.p-voice__card.is-prev {
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}
.p-voice__card.is-next {
  opacity: 0.5;
  transform: translateX(100%) scale(0.8);
}
@media (max-width: 768px) {
  .p-voice__card.is-next {
    transform: translateX(92%) scale(0.85);
  }
}
.p-voice__card.is-next {
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}
.p-voice__card.is-prev-hidden {
  opacity: 0;
  transform: translateX(-160%) scale(0.8);
  z-index: 1;
}
.p-voice__card.is-next-hidden {
  opacity: 0;
  transform: translateX(160%) scale(0.8);
  z-index: 1;
}
.p-voice__card-catchcopy {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-voice__card-catchcopy {
    font-size: 1rem;
  }
}
.p-voice__card-catchcopy {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #212121;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-voice__card-catchcopy {
    margin-bottom: 16px;
  }
}
.p-voice__card-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.p-voice__card-avatar-wrap {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.p-voice__card-avatar {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-voice__card-profile-info {
  flex: 1;
  min-width: 0;
}
.p-voice__card-name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #212121;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-voice__card-handle {
  font-size: 0.8125rem;
  color: rgba(33, 33, 33, 0.7);
  line-height: 1.4;
}
.p-voice__card-followers {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(33, 33, 33, 0.7);
  letter-spacing: 0.04em;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 16px;
}
.p-voice__card-followers span {
  font-size: 1.25rem;
  font-weight: 800;
  color: #212121;
}
.p-voice__card-achievement {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  background-color: #FAFAFA;
  border-radius: 4px;
  margin-bottom: 16px;
}
.p-voice__card-achievement-before {
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(33, 33, 33, 0.7);
}
.p-voice__card-achievement-arrow {
  font-size: 0.75rem;
  color: #999999;
}
.p-voice__card-achievement-after {
  font-family: "Manrope", sans-serif;
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  .p-voice__card-achievement-after {
    font-size: 1.125rem;
  }
}
.p-voice__card-achievement-after {
  font-weight: 800;
  color: #FC4C9C;
}
.p-voice__card-achievement-note {
  font-size: 0.6875rem;
  color: rgba(33, 33, 33, 0.7);
  margin-left: auto;
}
.p-voice__card-text {
  font-size: 0.875rem;
  line-height: 2;
  color: rgba(33, 33, 33, 0.75);
}
.p-voice__card-text p + p {
  margin-top: 8px;
}
.p-voice__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
}
@media (max-width: 768px) {
  .p-voice__nav-btn {
    width: 36px;
  }
}
.p-voice__nav-btn {
  height: 48px;
}
@media (max-width: 768px) {
  .p-voice__nav-btn {
    height: 36px;
  }
}
.p-voice__nav-btn {
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .p-voice__nav-btn {
    font-size: 0.875rem;
  }
}
.p-voice__nav-btn {
  color: #FFFFFF;
  transition: all 0.3s ease;
  z-index: 5;
  cursor: pointer;
}
.p-voice__nav-btn:hover {
  transform: translateY(-50%) scale(1.08);
}
.p-voice__nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.p-voice__nav-btn--prev {
  left: calc(50% - 390px);
}
@media (max-width: 768px) {
  .p-voice__nav-btn--prev {
    left: 4px;
  }
}
.p-voice__nav-btn--next {
  right: calc(50% - 390px);
}
@media (max-width: 768px) {
  .p-voice__nav-btn--next {
    right: 4px;
  }
}
.p-voice__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.p-voice__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 9999px;
  background-color: rgba(189, 189, 189, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.p-voice__dot:hover {
  background-color: rgba(189, 189, 189, 0.5);
}
.p-voice__dot.is-active {
  width: 28px;
  background-color: #212121;
}

.p-feature-detail__sub-text {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .p-feature-detail__sub-text {
    font-size: 1.125rem;
  }
}
.p-feature-detail__sub-text {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-feature-detail__sub-text {
    margin-bottom: 32px;
  }
}
.p-feature-detail__items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  .p-feature-detail__items {
    gap: 64px;
  }
}
.p-feature-detail__item {
  position: relative;
}
.p-feature-detail__item-number {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 6rem;
}
@media (max-width: 768px) {
  .p-feature-detail__item-number {
    font-size: 4rem;
  }
}
.p-feature-detail__item-number {
  font-weight: 800;
  color: rgba(252, 76, 156, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.p-feature-detail__item-inner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 1080px) {
  .p-feature-detail__item-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
}
.p-feature-detail__item-content {
  flex: 0 0 42%;
  margin-top: 8px;
}
@media (max-width: 1080px) {
  .p-feature-detail__item-content {
    flex: 1;
  }
}
.p-feature-detail__item-header {
  margin-bottom: 16px;
}
.p-feature-detail__item-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #212121;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}
.p-feature-detail__item-badge i {
  font-size: 1rem;
}
.p-feature-detail__item-title {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-feature-detail__item-title {
    font-size: 1.625rem;
  }
}
.p-feature-detail__item-title {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.p-feature-detail__item-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-feature-detail__item-text {
    font-size: 0.875rem;
  }
}
.p-feature-detail__item-text {
  line-height: 1.7;
  color: rgba(33, 33, 33, 0.75);
}
.p-feature-detail__item-text strong {
  font-weight: 700;
  color: #FC4C9C;
}
.p-feature-detail__item-image {
  flex: 1;
}
.p-feature-detail__item-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
}

.p-price__subtitle {
  text-align: center;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-price__subtitle {
    font-size: 1.625rem;
  }
}
.p-price__subtitle {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.p-price__desc {
  text-align: center;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-price__desc {
    font-size: 0.875rem;
  }
}
.p-price__desc {
  color: rgba(33, 33, 33, 0.7);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-price__desc {
    margin-bottom: 32px;
  }
}
.p-price__tabs {
  display: flex;
  justify-content: center;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 9999px;
  padding: 4px;
  max-width: 400px;
  margin: 0 auto 48px;
}
@media (max-width: 768px) {
  .p-price__tabs {
    margin: 0 auto 32px;
  }
}
.p-price__tabs {
  border: 1px solid #E0E0E0;
}
.p-price__tabs-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background-color: #212121;
  border-radius: 9999px;
  transition: transform 0.3s ease;
}
.p-price__tabs.is-right .p-price__tabs-slider {
  transform: translateX(100%);
}
.p-price__tab {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #212121;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.p-price__tab.is-active {
  color: #FFFFFF;
}
.p-price__plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .p-price__plans {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-price__plan {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 48px;
}
@media (max-width: 768px) {
  .p-price__plan {
    padding: 32px;
  }
}
.p-price__plan {
  border: 1px solid #E0E0E0;
  transition: box-shadow 0.3s ease;
}
.p-price__plan:hover {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.p-price__plan-name {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-price__plan-name {
    font-size: 1rem;
  }
}
.p-price__plan-name {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.p-price__plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.p-price__plan-amount {
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .p-price__plan-amount {
    font-size: 2.5rem;
  }
}
.p-price__plan-amount {
  font-weight: 800;
  line-height: 1;
  color: #212121;
}
.p-price__plan-unit {
  font-size: 0.8125rem;
  color: #999999;
}
.p-price__plan-annual {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  font-size: 0.75rem;
  color: #999999;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E0E0E0;
}
.p-price__plan-annual-label {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #FC4C9C;
  border-radius: 4px;
}
.p-price__plan-annual-price {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #212121;
}
.p-price__plan-annual-unit {
  font-size: 0.6875rem;
  color: #999999;
}
.p-price__plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-price__plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-price__plan-feature {
    font-size: 0.875rem;
  }
}
.p-price__plan-feature {
  line-height: 1.4;
}
.p-price__plan-feature strong {
  color: #FC4C9C;
}
.p-price__plan-feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FC4C9C;
}
.p-price__notes {
  font-size: 0.6875rem;
  line-height: 1.7;
  color: #999999;
  margin-bottom: 32px;
}
.p-price__recommend {
  text-align: center;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-price__recommend {
    font-size: 0.875rem;
  }
}
.p-price__recommend {
  font-weight: 500;
  color: rgba(33, 33, 33, 0.7);
}

.p-comparison {
  text-align: center;
}
.p-comparison__title {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .p-comparison__title {
    font-size: 1.375rem;
  }
}
.p-comparison__title {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-comparison__title {
    margin-bottom: 32px;
  }
}
.p-comparison__options {
  flex-direction: row;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .p-comparison__options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: initial;
  }
}
.p-comparison__option {
  background-color: #FAFAFA;
  border-radius: 4px;
  padding: 24px;
  border: 1px solid #E0E0E0;
}
.p-comparison__option-label {
  font-size: 0.8125rem;
  color: #999999;
  margin-bottom: 4px;
}
.p-comparison__option-price {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .p-comparison__option-price {
    font-size: 1.25rem;
  }
}
.p-comparison__option-price {
  font-weight: 700;
  color: #212121;
}
.p-comparison__arrow {
  font-size: 1.25rem;
  color: #999999;
  margin-bottom: 24px;
}
.p-comparison__result {
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  align-items: center;
  background-color: rgba(252, 76, 156, 0.06);
  border: 2px solid #FC4C9C;
  border-radius: 4px;
  padding: 32px;
}
@media (max-width: 576px) {
  .p-comparison__result {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-direction: column;
    justify-content: initial;
    gap: 16px;
  }
}
.p-comparison__result-mascot {
  flex-shrink: 0;
}
.p-comparison__result-mascot img {
  width: 64px;
}
@media (max-width: 768px) {
  .p-comparison__result-mascot img {
    width: 48px;
  }
}
.p-comparison__result-mascot img {
  height: auto;
}
.p-comparison__result-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
@media (max-width: 576px) {
  .p-comparison__result-price {
    align-items: center;
  }
}
.p-comparison__result-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #FC4C9C;
}
.p-comparison__result-amount {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-comparison__result-amount {
    font-size: 1.75rem;
  }
}
.p-comparison__result-amount {
  font-weight: 800;
  color: #FC4C9C;
}
.p-comparison__result-note {
  font-size: 0.8125rem;
  color: rgba(33, 33, 33, 0.7);
  margin-top: 8px;
}

.p-trial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.p-trial__label {
  display: inline-block;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FC4C9C;
  border: 1px solid #FC4C9C;
  border-radius: 9999px;
  margin-bottom: 24px;
}
.p-trial__title {
  font-size: 1.875rem;
}
@media (max-width: 768px) {
  .p-trial__title {
    font-size: 1.375rem;
  }
}
.p-trial__title {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.p-trial__title strong {
  color: #FC4C9C;
  font-family: "Manrope", sans-serif;
  font-size: 1.2em;
}
.p-trial__subtitle {
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-trial__subtitle {
    font-size: 0.875rem;
  }
}
.p-trial__subtitle {
  line-height: 1.7;
  color: rgba(33, 33, 33, 0.7);
  margin-bottom: 32px;
}
.p-trial__highlight {
  font-weight: 700;
  color: #FC4C9C;
}
.p-trial__btn {
  margin-bottom: 24px;
}
.p-trial__notes {
  font-size: 0.6875rem;
  line-height: 1.7;
  color: #999999;
  margin-bottom: 48px;
}
.p-trial__faq {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-trial__faq-item {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 24px;
  border: 1px solid #E0E0E0;
}
.p-trial__faq-q, .p-trial__faq-a {
  display: flex;
  gap: 8px;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-trial__faq-q, .p-trial__faq-a {
    font-size: 0.8125rem;
  }
}
.p-trial__faq-q, .p-trial__faq-a {
  line-height: 1.7;
}
.p-trial__faq-q {
  font-weight: 700;
  margin-bottom: 8px;
}
.p-trial__faq-a {
  color: rgba(33, 33, 33, 0.7);
}
.p-trial__faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  width: 24px;
  height: 24px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #212121;
  border-radius: 4px;
}
.p-trial__faq-icon--a {
  background-color: #FC4C9C;
}

.p-steps__title {
  text-align: center;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-steps__title {
    font-size: 1.5rem;
  }
}
.p-steps__title {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-steps__title {
    margin-bottom: 32px;
  }
}
.p-steps__list {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 1080px) {
  .p-steps__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-direction: column;
    justify-content: initial;
    align-items: center;
    gap: 24px;
  }
}
.p-steps__item {
  text-align: center;
  max-width: 280px;
}
.p-steps__item-badge {
  display: inline-block;
  padding: 4px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #FC4C9C;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.p-steps__item-title {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .p-steps__item-title {
    font-size: 1rem;
  }
}
.p-steps__item-title {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.p-steps__item-image {
  margin-bottom: 16px;
}
.p-steps__item-image img {
  width: 200px;
}
@media (max-width: 768px) {
  .p-steps__item-image img {
    width: 160px;
  }
}
.p-steps__item-image img {
  height: auto;
}
.p-steps__item-text {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(33, 33, 33, 0.7);
}
.p-steps__separator {
  display: flex;
  align-items: center;
  gap: 8px;
  transform: none;
  margin-top: 100px;
}
@media (max-width: 1080px) {
  .p-steps__separator {
    transform: rotate(90deg);
    margin-top: 0;
  }
}
.p-steps__separator-line {
  width: 32px;
}
@media (max-width: 1080px) {
  .p-steps__separator-line {
    width: 24px;
  }
}
.p-steps__separator-line {
  height: 1px;
  background-color: #E0E0E0;
}
.p-steps__separator-arrow {
  font-size: 0.75rem;
  color: #FC4C9C;
}

.p-cta-final {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.p-cta-final__symbol {
  width: 56px;
}
@media (max-width: 768px) {
  .p-cta-final__symbol {
    width: 48px;
  }
}
.p-cta-final__symbol {
  height: 56px;
}
@media (max-width: 768px) {
  .p-cta-final__symbol {
    height: 48px;
  }
}
.p-cta-final__symbol {
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}
.p-cta-final__title {
  font-size: 1.875rem;
}
@media (max-width: 768px) {
  .p-cta-final__title {
    font-size: 1.375rem;
  }
}
.p-cta-final__title {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.p-cta-final__btn {
  margin-bottom: 32px;
}
.p-cta-final__notes {
  font-size: 0.6875rem;
  line-height: 1.7;
  color: #999999;
  text-align: left;
}
.p-cta-final__notes li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-cta-final__notes li::before {
  content: "・";
}
.p-cta-final__notes li + li {
  margin-top: 4px;
}

.p-faq {
  max-width: 800px;
  margin: 0 auto;
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-faq__item {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 32px;
}
@media (max-width: 768px) {
  .p-faq__item {
    padding: 24px;
  }
}
.p-faq__item {
  border: 1px solid #E0E0E0;
}
.p-faq__question {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.p-faq__q-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  width: 28px;
  height: 28px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #212121;
  border-radius: 4px;
}
.p-faq__q-text {
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-faq__q-text {
    font-size: 0.875rem;
  }
}
.p-faq__q-text {
  font-weight: 700;
  line-height: 1.4;
}
.p-faq__answer {
  padding-left: 44px;
}
.p-faq__a-text {
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .p-faq__a-text {
    font-size: 0.8125rem;
  }
}
.p-faq__a-text {
  line-height: 1.7;
  color: rgba(33, 33, 33, 0.7);
}

.p-cta-bottom {
  text-align: center;
  position: relative;
}
.p-cta-bottom__title {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-cta-bottom__title {
    font-size: 1.5rem;
  }
}
.p-cta-bottom__title {
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 32px;
}
.p-cta-bottom__btn {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.p-cta-bottom__btn .c-btn--primary-lg {
  background-color: #FFFFFF;
  color: #8F55FF;
  box-shadow: 0 4px 16px rgba(33, 33, 33, 0.15);
}
.p-cta-bottom__icons {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.p-cta-bottom__icons-row {
  display: flex;
  gap: 8px;
  animation: cta-marquee 25s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
.p-cta-bottom__icon-item {
  width: 72px;
}
@media (max-width: 768px) {
  .p-cta-bottom__icon-item {
    width: 56px;
  }
}
.p-cta-bottom__icon-item {
  height: 72px;
}
@media (max-width: 768px) {
  .p-cta-bottom__icon-item {
    height: 56px;
  }
}
.p-cta-bottom__icon-item {
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  opacity: 0.4;
}

@keyframes heroTypingBounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
}
@keyframes heroCursor {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes features-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
@keyframes cta-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes mascot-look-around {
  0%, 20% {
    transform: translate(0, 0);
  }
  25%, 35% {
    transform: translate(3px, -1px);
  }
  40%, 50% {
    transform: translate(-3px, 0);
  }
  55%, 65% {
    transform: translate(2px, 1px);
  }
  70%, 80% {
    transform: translate(-1px, -1px);
  }
  85%, 100% {
    transform: translate(0, 0);
  }
}
@keyframes mascot-blink {
  0%, 37% {
    transform: scaleY(1);
  }
  38% {
    transform: scaleY(0.1);
  }
  42% {
    transform: scaleY(1);
  }
  43%, 100% {
    transform: scaleY(1);
  }
}
@keyframes transition-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */