.news-list {
  list-style: none outside;
  margin: 0;
  padding: 0;
}

.news-list .item a {
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  color: var(--color-text-strong);
  border: 1px solid var(--color-border-soft);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-float);
  margin-bottom: 12px;
  padding: 20px 20px;
}

.news-list .item:first-child a {
  border-top: 1px solid var(--color-border-soft);
}

.news-list .item .date {
  margin: 0;
  min-width: 140px;
  font-size: 17px;
  color: var(--color-text-strong);
  background: transparent;
  border-radius: 0;
  font-family: var(--font-latin);
  letter-spacing: 0.02em;
  padding: 0 20px 0 0;
}

.news-list .item .category {
  margin: 0;
  min-width: 140px;
  padding: 0 20px 0 0;
}

.news-list .item .category span {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 999px;
  font-family: var(--font-latin);
  letter-spacing: 0.06em;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 14px;
  line-height: 1;
}

.news-list .item .title {
  margin: 0;
  width: 100%;
  color: var(--color-text-strong);
}

.news-list .item a:hover .title {
  color: var(--color-accent-pink-strong);
}

@media screen and (max-width: 767px) {
  .news-list .item a {
    flex-wrap: wrap;
  }

  .news-list .item .date {
    min-width: 100px;
  }

  .news-list .item .title {
    margin-top: 10px;
  }
}

/* 装飾 */
body.light-page * {
  box-sizing: border-box;
}

body.light-page a {
  text-decoration: none;
}

body.light-page footer {
  width: 100%;
  background-color: var(--color-white);
  color: var(--color-black);
  text-align: center;
  margin: 0;
  padding: 0;
}

body.light-page .navbar {
  padding-top: 0;
  padding-bottom: 0;
  min-height: auto;
}

body.light-page .navbar .container {
  padding-top: 0;
  padding-bottom: 0;
}

body.light-page .navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
}

body.light-page .navbar .mb-2 {
  margin-bottom: 0 !important;
}

body.light-page .navbar .d-md-none {
  margin-bottom: 0 !important;
}

body.light-page .navbar .container {
  align-items: center;
  flex-wrap: wrap;
}

body.light-page .navbar .nav-ai-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  body.light-page .navbar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  body.light-page .navbar .navbar-collapse {
    flex: 0 0 auto;
    width: auto;
  }

  body.light-page .navbar .main-menu-collapse {
    display: none;
  }
}

body.light-page .navbar .nav-logo-image {
  width: 200px;
  max-width: 80vw;
  height: auto;
}

@media (max-width: 767px) {
  body.light-page .navbar .nav-logo-image {
    width: 160px;
  }
}

body.light-page .nav-ai-btn {
  height: auto;
  width: auto;
  min-width: 0;
  padding: 14px 22px;
  font-size: 1.05rem;
  line-height: 1.2;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

@media (max-width: 767px) {
  body.light-page .nav-ai-btn {
    width: auto;
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

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

.footer-menu li {
  display: inline-flex;
  align-items: center;
}

.footer-menu li a {
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
}

@media (min-width: 768px) {
  .contact-btn {
    width: auto;
    display: inline-block;
  }
}

.fixed_btn {
  position: fixed;
  bottom: 6px;
  right: 6px;
  padding: 5px 5px;
  z-index: 100;
  opacity: 0;
  transition: all 0.65s;
  cursor: pointer;
}

.fixed_btn:hover {
  box-shadow: none;
  /* 影の設定 */
  border-radius: 0;
  /* 角丸 */
}

.fixed_btn.isActive {
  opacity: 1;
  transition: all 0.65s;
}

/* --- scroll fix: lock horizontal without breaking vertical --- */
html {
  -webkit-text-size-adjust: 100%;
}

body.light-page {
  font-size: 16px;
  line-height: 1.8;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
  background: var(--color-white);
  color: #2f2635;
  font-family: var(--font-rounded);
  letter-spacing: 0.02em;
}

body.light-page #wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

body.light-page section {
  padding-top: 50px;
  padding-bottom: 50px;
}

body.light-page .hero-section {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  body.light-page .hero-section--copy {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

body.light-page #desc-text-halfbg-3 {
  padding-bottom: 0 !important;
  margin-bottom: 0;
}

 .rental-hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .rental-hero-image {
    width: 600px;
    max-width: 600px;
    margin: 0 auto;
    display: block;
  }

  .rental-hero-image--small {
    width: 300px;
    max-width: 300px;
    margin-left: 0;
    margin-right: auto;
  }
}


body.light-page img,
body.light-page video,
body.light-page iframe {
  max-width: 100%;
}

@supports (-webkit-touch-callout: none) {
  body.light-page {
    height: auto;
    overflow-x: hidden;
  }
}


body.light-page p,
body.light-page li,
body.light-page dt,
body.light-page dd,
body.light-page td,
body.light-page th,
body.light-page label {
  font-size: 16px;
  line-height: 1.8;
}

body.light-page .pc-only {
  display: inline;
}

body.light-page .nobr {
  display: inline-block !important;
  white-space: nowrap !important;
}

/* Extension injected sidebar can break scrolling; neutralize it. */
[id^="redeviation-"],
bookmark-sidebar {
  display: none !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

body.light-page h1,
body.light-page h2,
body.light-page h3,
body.light-page h4 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", "MS PMincho", serif;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(24, 20, 32, 0.18);
}

.lp-append {
  position: relative;
}

.lp-compare-table {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #eee2c2;
  background: var(--color-white);
  box-shadow: 0 16px 40px rgba(29, 25, 15, 0.08);
}

.lp-compare-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.lp-compare-table th,
.lp-compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #f1e5c9;
  text-align: center;
  font-size: 15px;
}

.lp-compare-table th:first-child,
.lp-compare-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: #3e2b0f;
  background: #fcf7ec;
}

.lp-step-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-step-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--color-white);
  border: 1px solid #f0e4c6;
  box-shadow: 0 14px 30px rgba(26, 20, 10, 0.08);
}

.lp-step-card h3 {
  font-size: 18px;
  margin: 8px 0 10px;
}

.lp-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #c79a36;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(140, 100, 30, 0.25);
}

.lp-faq-list {
  display: grid;
  gap: 12px;
}

.lp-faq-item {
  border-radius: 14px;
  border: 1px solid #efe2c5;
  background: var(--color-white);
  padding: 0;
  box-shadow: 0 10px 24px rgba(24, 18, 10, 0.06);
}

.lp-faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  color: #2f2410;
  list-style: none;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: "+";
  float: right;
  font-size: 18px;
  color: #b98628;
}

.lp-faq-item[open] summary::after {
  content: "−";
}

.lp-faq-body {
  padding: 0 18px 16px;
  color: #4a3b20;
}

@media (max-width: 992px) {
  .lp-step-grid {
    grid-template-columns: 1fr;
  }
}

.hero-copy {
  position: relative;
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-title {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 28px 36px;
  margin: 0;
  z-index: 1;
}

.hero-title::before {
  content: none;
}

.hero-title::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 10px;
  height: 12px;
  background: rgba(205, 149, 206, 0.25);
  border-radius: 999px;
  transform: none;
  z-index: -2;
}

.hero-word {
  display: inline-block;
  font-family: var(--font-rounded);
  letter-spacing: 0.08em;
  text-shadow: -1px -1px 0 var(--color-white), 1px -1px 0 var(--color-white),
    -1px 1px 0 var(--color-white), 1px 1px 0 var(--color-white),
    0 8px 16px rgba(26, 18, 32, 0.12);
}

.hero-word-main {
  color: var(--color-primary);
  font-size: 2.8rem;
  font-weight: 700;
  transform: none;
}

.hero-word-sub {
  color: var(--color-text-strong);
  font-size: 1.6rem;
  font-weight: 600;
}

.hero-word-1 {
  transform: none;
}

.hero-word-2 {
  transform: none;
}

.hero-subcopy {
  margin: 0;
  color: #4a3f52;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.hero-bubbles {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 4px;
  padding: 0;
}

.hero-bubbles li {
  position: relative;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid rgba(205, 149, 206, 0.7);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-float);
  font-weight: 700;
  color: #3a2e46;
  letter-spacing: 0.06em;
  font-family: var(--font-rounded);
}

.hero-bubbles li::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -10px;
  border-width: 10px 8px 0 8px;
  border-style: solid;
  border-color: rgba(205, 149, 206, 0.7) transparent transparent;
}

.hero-bubbles li::before {
  content: "";
  position: absolute;
  left: 27px;
  bottom: -8px;
  border-width: 8px 6px 0 6px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.92) transparent transparent;
}

@media (max-width: 768px) {
  .hero-copy {
    padding: 32px 16px 28px;
  }

  .hero-title {
    padding: 22px 26px;
  }

  .hero-title::before {
    width: 220px;
    height: 120px;
  }

  .hero-word-main {
    font-size: 2.2rem;
  }

  .hero-word-sub {
    font-size: 1.3rem;
  }

  .hero-bubbles li {
    padding: 10px 18px;
  }
}

.price-text {
  font-size: 1.7rem !important;
  color: var(--color-accent-magenta) !important;
}

.price-text strong {
  font-size: 2.7rem;
  font-weight: bold;
}

.lp-badges-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}


@media (max-width: 768px) {
  body.light-page {
    line-height: 1.85 !important;
  }

  body.light-page p,
  body.light-page li,
  body.light-page dt,
  body.light-page dd,
  body.light-page td,
  body.light-page th,
  body.light-page label {
    line-height: 1.85 !important;
  }

  .custom-section .container,
  .custom-section .row {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .custom-section .text-center {
    text-align: left !important;
  }

  .custom-section .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .solution-card {
    width: 100%;
    text-align: left;
  }

  body.light-page .pc-only {
    display: none;
  }

  .price-text strong {
    font-size: 1.8rem !important;
  }

  .lp-badges-container {
    gap: 12px;
  }
}

.floating-cta--glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(24, 20, 32, 0.18);
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* === Moved from inline styles in index.php === */
body.light-page,
body.light-page p,
body.light-page h1,
body.light-page h2,
body.light-page h3,
body.light-page h4,
body.light-page h5,
body.light-page h6,
body.light-page a,
body.light-page li {
  font-weight: normal;
}

body.light-page h1,
body.light-page h2,
body.light-page h3,
body.light-page h4,
body.light-page h5,
body.light-page h6,
body.light-page strong {
  font-weight: bold;
}

@media (max-width: 768px) {
  body.light-page h1 {
    font-size: 24px;
  }

  body.light-page h2 {
    font-size: 24px;
  }

  body.light-page h3 {
    font-size: 24px;
  }

  body.light-page h4 {
    font-size: 20px;
  }
}

.responsive-image,
.responsive-banner {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.logo-image {
  width: auto;
  max-width: 100px;
}

@media (max-width: 767px) {
  .logo-image {
    max-width: 80px;
  }
}

.hero-banner {
  display: block;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .custom-section .container {
    max-width: 100% !important;
  }

  .custom-section .row,
  .custom-section .col-12 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .solution-card,
  .feature-pills {
    width: 100% !important;
    display: block !important;
    text-align: left !important;
  }

  .custom-section p {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-banner__img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    object-fit: contain;
  }
}

#lazy-load-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.youtube-play-button {
  width: 60px;
  height: 60px;
  background-color: #ff0000;
  border-radius: 50%;
  position: relative;
}

.youtube-play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transform: translate(-50%, -50%);
}

.spaced-image {
  margin-top: 10px;
  margin-bottom: 15px;
}

.custom-section {
  margin-bottom: 20px;
  padding-top: 30px;
  padding-bottom: 50px;
  background-color: transparent;
  font-display: swap;
}

@media (min-width: 768px) {
  .custom-section {
    padding-bottom: 50px;
  }
}

.rounded {
  border-radius: 30px;
}

.table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  border: none;
}

.table th,
.table td {
  padding: 35px 10px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
}

.table thead th {
  background-color: var(--color-primary-strong);
  color: var(--color-white);
  border: none;
}

.table tbody tr:nth-child(odd) {
  background-color: var(--color-white);
}

.table tbody tr:nth-child(even) {
  background-color: var(--color-white);
}

.price {
  font-size: 20px;
  color: #004e7c;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.monthly-label {
  font-size: 12px;
  background-color: var(--color-primary-strong);
  color: var(--color-white);
  padding: 2px 5px;
  border-radius: 5px;
}

.tax-included {
  font-size: 16px;
  text-align: center;
  margin-top: 5px;
}

.price-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-details div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.monthly-price-gap {
  width: 10px;
}

.custom-btn-primary {
  font-size: 21px;
  background-color: var(--color-primary-strong);
  color: var(--color-white);
}

.custom-btn-primary:hover {
  background-color: var(--color-primary-strong);
  color: var(--color-white);
}

@media (max-width: 768px) {
  td small {
    font-size: 11px;
  }
}

@media (min-width: 769px) {
  td small {
    font-size: 16px;
  }
}

.responsive-img {
  width: 100%;
  height: auto;
}

.custom-box,
.custom-box-red {
  padding: 2px 4px;
  font-size: 12px;
  display: inline-block;
  white-space: nowrap;
  line-height: 1.2;
}

.custom-box {
  border: 1.2px solid #d673a6;
  color: #d673a6;
}

.custom-box-red {
  border: 1.2px solid #ff0000;
  color: #ff0000;
}

.video-section {
  --measure: 68ch;
  --gap: clamp(16px, 2.4vw, 32px);
}

.video-section .vs-block {
  display: grid;
  gap: var(--gap);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 56px);
}

@media (min-width: 992px) {
  .video-section .vs-block {
    grid-template-columns: 1.1fr 1fr;
  }
}

.video-section h2 {
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0 0 0.6em;
  text-align: center;
}

@media (min-width: 992px) {
  .video-section h2 {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .video-section .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .video-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  .video-section .col-12 {
    padding-left: 0;
    padding-right: 0;
  }
}

.video-section .vs-lead {
  max-width: var(--measure);
  margin: 0 auto;
  text-align: left;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

@media (min-width: 992px) {
  .video-section .vs-lead {
    margin: 0;
  }
}

.video-section .video-wrapper {
  display: flex;
  justify-content: center;
}

.video-section .video-thumb {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

#video-placeholder-1.video-thumb {
  background-image: url('https://lalamo.me/images/rental/hqdefault-1.webp');
}

#video-placeholder-2.video-thumb {
  background-image: url('https://lalamo.me/images/rental/hqdefault-2.webp');
}

.video-section .youtube-play-button {
  width: 70px;
  height: 70px;
}

@media (min-width: 1200px) {
  .video-section .youtube-play-button {
    width: 84px;
    height: 84px;
  }
}

.video-section img {
  height: auto !important;
  max-width: 100%;
  object-fit: contain;
}

@supports (-webkit-touch-callout: none) {
  .fixed-top {
    position: static !important;
    top: auto !important;
  }

}

:root {
  --color-primary: #cd95ce;
  --color-primary-strong: #d09dd0;
  --color-accent-rose: #d672a8;
  --color-accent-pink-strong: #d772a9;
  --color-accent-pink: #ffb3d9;
  --color-accent-gold: #ffd700;
  --color-bg: #ffffff;
  --color-soft-bg: #ffffff;
  --color-blush: #ffffff;
  --color-text-muted: #2e2f32;
  --color-text-strong: #3f3646;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-border-muted: #cccccc;
  --color-border-soft: rgba(205, 149, 206, 0.25);
  --color-accent-magenta: #e91e63;
  --font-rounded: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --font-latin: "Poppins", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --shadow-float: 0 10px 20px rgba(205, 149, 206, 0.2);
}

.lead-text,
.main-benefit {
  font-family: var(--font-rounded);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.js-apply,
.custom-btn-primary,
.btn,
button,
input[type="submit"],
input[type="button"] {
  border-radius: 24px !important;
}

.js-apply,
.custom-btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-pink) 100%) !important;
  border-color: var(--color-primary) !important;
  box-shadow: var(--shadow-float);
  letter-spacing: 0.06em;
}

.js-apply:hover,
.custom-btn-primary:hover {
  background: linear-gradient(135deg, #d7a3d8 0%, #ffc4e2 100%) !important;
}

.solution-card,
.lp-step-card,
.lp-faq-item,
.lp-compare-table,
.price-table {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(205, 149, 206, 0.2);
}

.price-table {
  overflow: hidden;
  width: 100%;
}

.price-table .table {
  width: 100%;
}

.solution-card {
  padding: 30px;
  width: 100%;
  max-width: 100%;
}

.lp-step-num {
  background: var(--color-primary);
  box-shadow: var(--shadow-float);
  font-family: var(--font-latin);
  font-weight: 700;
}

.lp-badge {
  background: linear-gradient(135deg, var(--color-accent-pink) 0%, var(--color-primary) 100%);
  box-shadow: var(--shadow-float);
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-family: var(--font-latin);
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.price-text {
  color: var(--color-primary) !important;
}

.price-text strong,
.price-table h3 {
  font-family: var(--font-latin);
}

.price-table h3 {
  background-color: var(--color-primary);
  letter-spacing: 0.08em;
  color: var(--color-white);
  font-weight: 700;
  padding: 20px;
  margin: 0;
  text-align: center;
}

.price-table h3 {
  font-size: 22px;
}


input,
select,
textarea {
  border-radius: 24px;
  border: 1px solid rgba(205, 149, 206, 0.35);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-float);
}

.floating-cta,
.floating-cta__btn {
  border-radius: 24px;
  box-shadow: var(--shadow-float);
}

.floating-cta__btn--secondary {
  color: var(--color-primary);
  border-color: rgba(205, 149, 206, 0.7);
}

.floating-cta__btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-pink) 100%);
  border-color: var(--color-primary);
}

body.light-page .light {
  font-family: var(--font-rounded);
}

body.light-page h1,
body.light-page h2,
body.light-page h3,
body.light-page h4,
body.light-page h5,
body.light-page h6 {
  font-family: var(--font-rounded);
  letter-spacing: 0.06em;
  color: var(--color-text-strong);
}

body.light-page h2::after,
body.light-page h3::after {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: rgba(205, 149, 206, 0.35);
}

body.light-page h3.hero-title::after {
  content: none;
}

body.light-page h3[style*="rgb(215,114,169)"],
body.light-page h4[style*="rgb(215,114,169)"] {
  color: var(--color-primary) !important;
}

.no-title-line::after,
body.light-page h2.no-title-line::after {
  content: none;
}

#text-3col h3::after,
#text-3col--1 h3::after,
#text-3col--0 h3::after {
  content: none;
}

.feature-pills {
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(205, 149, 206, 0.2);
}

.table,
.lp-compare-table table {
  border-radius: 24px;
  overflow: hidden;
}

.table th,
.table td {
  border-color: rgba(205, 149, 206, 0.18);
}

.table thead th {
  background: rgba(205, 149, 206, 0.18);
}

.table tbody tr:nth-child(odd),
.table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.78);
}

.fixed_btn,
.fixed_btn:hover {
  border-radius: 24px;
  box-shadow: var(--shadow-float);
}

.nav-bg-soft {
  background-color: var(--color-soft-bg);
}

.section-bg-soft,
.bg-soft {
  background-color: var(--color-soft-bg);
}

.bg-blush {
  background-color: var(--color-blush);
}

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

.media-cover {
  object-fit: cover;
}

.svg-cover {
  object-fit: cover;
}

.inline-flex {
  display: flex;
}

.list-loose {
  line-height: 2;
}

.accent-pink {
  color: var(--color-accent-pink-strong);
}

.text-sm-line {
  font-size: 16px;
  line-height: 1.8;
}

.text-line-19 {
  line-height: 1.9;
}

.text-line-30 {
  line-height: 30px;
}

.text-black {
  color: var(--color-black);
}

.price-plan-cell {
  line-height: 32px;
}

.price-amount {
  margin-left: 10px;
}

.btn-apply-solid {
  background-color: var(--color-primary-strong) !important;
  border-color: var(--color-primary-strong) !important;
  color: var(--color-white) !important;
  background-image: none !important;
}

.btn-tel {
  background-color: var(--color-accent-rose) !important;
  border-color: var(--color-accent-rose) !important;
  color: var(--color-white) !important;
  overflow: visible;
}

.z-10 {
  position: relative;
  z-index: 10;
}

.video-cover {
  object-fit: cover;
}

.video-half {
  width: 50%;
}

.video-full {
  width: 100%;
}

.news-muted {
  color: var(--color-text-muted);
  background: transparent;
}

.floating-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 99999;
  padding: 10px;
  border-radius: 18px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.floating-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(25, 20, 15, 0.16);
}

.floating-cta__btn--secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary-strong);
  border: 1.5px solid rgba(208, 157, 208, 0.7);
}

.floating-cta__btn--primary {
  background: linear-gradient(135deg, var(--color-primary-strong) 0%, #c67cc6 100%);
  color: var(--color-white);
  border: 1px solid #c67cc6;
  font-weight: 700;
}

.full-bleed-start {
  padding-left: 0;
  padding-right: 0;
}

.full-bleed-start .container,
.full-bleed-start .container-fluid {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.full-bleed-start .row {
  margin-left: 0;
  margin-right: 0;
}

.full-bleed-start [class^="col-"],
.full-bleed-start [class*=" col-"] {
  padding-left: 0;
  padding-right: 0;
}
