:root {
  --black: #09070c;
  --ink: #111017;
  --white: #ffffff;
  --soft: #fff3f8;
  --pink: #f72aa9;
  --pink-2: #ff4b81;
  --pink-3: #e3007f;
  --green: #14c755;
  --muted: #74717b;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --scroll-y: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.page {
  overflow: hidden;
  background: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 3.4vw, 54px);
  color: var(--white);
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(8, 6, 12, 0.86);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  font-family: "Anton", Impact, sans-serif;
  font-size: 24px;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.12);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text span {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text small {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.45vw, 22px);
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 900;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

.global-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, #fd2fd8, #ff4c80);
  box-shadow: 0 15px 30px rgba(244, 25, 146, 0.35);
  line-height: 1;
  text-align: center;
}

.global-nav .nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 21px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1)),
    linear-gradient(90deg, #00c95a, #15dc74);
  box-shadow:
    0 0 0 5px rgba(20, 199, 85, 0.16),
    0 16px 34px rgba(20, 199, 85, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  animation: phonePulse 2.5s ease-in-out infinite;
}

.global-nav .nav-phone strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}

.global-nav .nav-cta::after {
  display: none;
}

.global-nav .nav-phone::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #00b84d;
  content: "☎";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-shadow: none;
}

.global-nav .nav-phone span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.global-nav .nav-phone::after {
  display: none;
}

.header-phone-mobile {
  display: none;
}

.header-phone-mobile strong {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background: #151016;
}

.hero-bg {
  position: absolute;
  inset: -40px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32) 52%, rgba(0, 0, 0, 0.62)),
    url("../img/salon-hero.png") center / cover no-repeat;
  transform: translateY(calc(var(--scroll-y) * -0.05px)) scale(1.04);
}

.hero-dot {
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background-image: radial-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
}

.hero::after {
  position: absolute;
  right: -24vw;
  bottom: -190px;
  width: 78vw;
  height: 360px;
  content: "";
  border-radius: 180px 0 0 180px;
  background: linear-gradient(135deg, rgba(255, 45, 213, 0.94), rgba(255, 74, 99, 0.92));
  filter: drop-shadow(0 -20px 50px rgba(0, 0, 0, 0.38));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 24px;
  align-items: center;
  min-height: 860px;
  padding: 118px clamp(20px, 4vw, 58px) 108px;
}

.hero-logo {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(44px, 5.2vw, 84px);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-price {
  display: grid;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  text-transform: none;
}

.hero-price-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: #f72aa9;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(255, 42, 169, 0.24);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 900;
}

.hero-price-row {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 900;
  text-shadow: 0 7px 22px rgba(0, 0, 0, 0.38);
}

.hero-price-row b {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(76px, 9.5vw, 146px);
  font-weight: 400;
  line-height: 0.82;
  color: #fff;
  text-shadow:
    0 0 22px rgba(255, 47, 216, 0.58),
    0 12px 32px rgba(0, 0, 0, 0.5);
}

.hero-price-row small {
  padding-bottom: 6px;
  font-size: clamp(24px, 3.1vw, 44px);
  font-weight: 900;
}

.hero-sub {
  margin: 12px 0 58px;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 900;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-tags span {
  min-width: 180px;
  padding: 9px 18px;
  background: linear-gradient(90deg, #ff2b4e, #e836e9);
  font-size: clamp(17px, 1.65vw, 24px);
  font-weight: 900;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  word-break: keep-all;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 800;
  line-height: 1.95;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 62px;
  padding: 0 34px;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, #ef30df, #ff3e79);
  box-shadow: 0 20px 42px rgba(238, 32, 156, 0.38);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-device-art {
  position: absolute;
  top: -110px;
  right: -66px;
  z-index: 2;
  width: min(980px, 60vw);
  filter:
    drop-shadow(0 34px 54px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 42px rgba(255, 47, 217, 0.18));
}

.hero-device-art img {
  display: block;
  width: 100%;
  height: auto;
}

.device-laptop {
  position: absolute;
  top: 132px;
  right: 0;
  width: min(680px, 51vw);
  overflow: hidden;
  border: 10px solid rgba(20, 20, 24, 0.98);
  border-radius: 24px;
  background: #111;
  box-shadow: var(--shadow);
}

.device-laptop::before {
  display: block;
  height: 18px;
  content: "";
  background: linear-gradient(90deg, #1a1720, #2b2531);
}

.device-phone {
  position: absolute;
  right: -8px;
  bottom: 106px;
  width: 220px;
  overflow: hidden;
  border: 9px solid #08070a;
  border-radius: 34px;
  background: #111;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
  transform: rotate(7deg);
}

.device-phone img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.hero-offer {
  position: absolute;
  right: -40px;
  bottom: -38px;
  z-index: 4;
  width: min(580px, 48vw);
  padding: 48px 42px;
  border-radius: 92px 0 0 92px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 65, 68, 0.92), rgba(236, 48, 211, 0.92));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-offer p {
  margin: 0 0 22px;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
}

.hero-offer a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  border-radius: 999px;
  background: var(--white);
  color: #f0137f;
  font-size: clamp(16px, 1.6vw, 23px);
  font-weight: 900;
}

.proof-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: -52px auto 0;
  padding: 0 20px;
}

.proof-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 10px 22px;
  border: 1px solid rgba(231, 0, 126, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 25px rgba(236, 40, 130, 0.12);
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 900;
  text-align: center;
}

.proof-pill b {
  margin-right: 8px;
  color: #e4007f;
  font-size: 1.28em;
}

.section-white,
.section-dark {
  position: relative;
  padding: clamp(86px, 9vw, 145px) clamp(20px, 5vw, 72px);
}

.section-white {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(247, 42, 169, 0.1), transparent 35%),
    linear-gradient(180deg, #131019, #07060a);
}

.section-word {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(245, 27, 156, 0.08);
  font-family: "Anton", Impact, sans-serif;
  font-size: min(18vw, 230px);
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.intro-inner {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--pink-3);
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.section-dark .kicker {
  color: #ff4fc1;
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

.intro p:not(.kicker),
.section-head p,
.split-copy p,
.cms-copy p,
.contact-copy p {
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  line-height: 2.1;
}

.section-head {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto 52px;
}

.section-head h2 span {
  color: #f226d9;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(74px, 12vw, 158px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-head p {
  max-width: 780px;
  margin: 18px 0 0;
  color: #5a5560;
}

.section-head-light p {
  color: rgba(255, 255, 255, 0.76);
}

.section-side-label {
  position: absolute;
  top: 120px;
  left: 30px;
  color: #e4007f;
  font-family: "Anton", Impact, sans-serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.works-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
  max-width: 1120px;
  margin: 0 auto;
}

.work-phone {
  position: relative;
  overflow: hidden;
  border: 10px solid #07070b;
  border-radius: 34px;
  background: #07070b;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
  transform: translateY(0) rotate(-1deg);
}

.work-phone:nth-child(2) {
  margin-top: 42px;
  transform: rotate(1deg);
}

.work-phone:nth-child(3) {
  margin-top: 84px;
  transform: rotate(-0.5deg);
}

.work-phone img {
  height: 480px;
  width: 100%;
  object-fit: cover;
}

.work-phone span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-family: "Anton", Impact, sans-serif;
  font-size: 15px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}

.reason-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(20, 18, 28, 0.94);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.reason-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.reason-card > div {
  padding: 24px;
}

.reason-card p:first-child {
  margin: 0 0 14px;
  color: #ff8bd2;
  font-size: 15px;
  font-weight: 900;
}

.reason-card p:first-child span {
  display: inline-block;
  margin-right: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2caf, #ff4b7e);
  color: var(--white);
  font-size: 12px;
}

.reason-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.42;
}

.reason-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.reason-card-accent {
  display: grid;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 40, 175, 0.96), rgba(255, 76, 90, 0.92)),
    #e4007f;
}

.reason-card-accent > div {
  align-self: end;
  padding: 34px;
}

.reason-card-accent p:first-child span {
  background: rgba(255, 255, 255, 0.2);
}

.reason-card-accent p:last-child {
  color: rgba(255, 255, 255, 0.86);
}

.reason-card-accent a {
  display: inline-flex;
  margin-top: 24px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--white);
  color: #e4007f;
  font-weight: 900;
}

.split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.split-copy p {
  color: #58525d;
}

.function-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.function-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 15px 16px;
  border: 1px solid rgba(226, 0, 127, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(225, 24, 134, 0.08);
}

.function-list .function-priority {
  border-color: rgba(244, 28, 166, 0.32);
  background: linear-gradient(135deg, rgba(255, 238, 249, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 20px 42px rgba(225, 24, 134, 0.16);
}

.function-list .function-priority b {
  color: #e4007f;
}

.function-list b {
  color: #f226d9;
  font-family: "Anton", Impact, sans-serif;
  font-size: 28px;
}

.function-list span {
  font-weight: 900;
}

.pain {
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 28, 166, 0.12), transparent 32%),
    linear-gradient(180deg, #fff, #fff7fb);
}

.pain-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto 42px;
}

.pain-copy p:not(.kicker) {
  color: #58525d;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  line-height: 2.1;
}

.pain-visual {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(225, 24, 134, 0.2);
}

.pain-visual img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
}

.pain-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.24));
}

.pain-visual-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, #f226d9, #ff3e79);
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
}

.solution-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.solution-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(226, 0, 127, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(225, 24, 134, 0.1);
}

.solution-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, #f226d9, #ff3e79);
  font-size: 12px;
  font-weight: 900;
}

.solution-card h3 {
  margin: 0 0 14px;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.5;
}

.solution-card p {
  margin: 0;
  color: #5c5662;
  font-weight: 700;
  line-height: 1.95;
}

.solution-card-accent {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 47, 174, 0.96), rgba(255, 68, 96, 0.94)),
    #e4007f;
  box-shadow: 0 24px 58px rgba(225, 24, 134, 0.26);
}

.solution-card-accent span {
  color: #e4007f;
  background: var(--white);
}

.solution-card-accent p {
  color: rgba(255, 255, 255, 0.86);
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.operation-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(255, 47, 174, 0.2), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.operation-card b {
  color: #ff43c6;
  font-family: "Anton", Impact, sans-serif;
  font-size: 44px;
  letter-spacing: 0.02em;
}

.operation-card h3 {
  margin: 28px 0 12px;
  font-size: 24px;
}

.operation-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  line-height: 1.95;
}

.operation-break-wrap span {
  display: inline;
}

.operation-break-wrap span + span::before {
  content: "・";
}

.cms-show-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.cms-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.45);
}

.cms-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.price-lead {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 46, 189, 0.94), rgba(255, 73, 84, 0.92)),
    url("../img/salon-free.png") center / cover no-repeat;
  box-shadow: 0 30px 70px rgba(221, 0, 127, 0.22);
}

.price-lead::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.02));
}

.price-lead > * {
  position: relative;
  z-index: 1;
}

.price-bg-text {
  position: absolute;
  top: 12px;
  right: 34px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.14);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(90px, 15vw, 190px);
}

.price-copy {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 800;
  line-height: 1.9;
}

.price-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 34px 0;
}

.price-main div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.price-main span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.price-main strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(58px, 8vw, 96px);
  line-height: 1;
}

.price-main small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.3em;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  max-width: 820px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 900;
}

.price-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 34px auto 0;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 458px;
  padding: 24px 20px;
  overflow: hidden;
  border: 1px solid rgba(227, 0, 127, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 243, 248, 0.78), rgba(255, 255, 255, 0.98)),
    var(--white);
  box-shadow: 0 20px 44px rgba(17, 16, 23, 0.08);
  flex-direction: column;
}

.plan-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--pink), var(--pink-2));
}

.plan-label,
.plan-badge,
.plan-template {
  font-weight: 900;
}

.plan-label {
  margin: 0 0 12px;
  color: var(--pink-3);
  font-size: 13px;
}

.plan-card h3 {
  min-height: 64px;
  margin: 0;
  font-size: clamp(20px, 1.55vw, 23px);
  line-height: 1.25;
  word-break: keep-all;
}

.plan-sub {
  min-height: 48px;
  margin: 12px 0 18px;
  color: #4f4a55;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
  word-break: keep-all;
}

.plan-price {
  margin: 0 0 18px;
  padding: 16px 0 14px;
  border-top: 1px solid rgba(227, 0, 127, 0.14);
  border-bottom: 1px solid rgba(227, 0, 127, 0.14);
  color: var(--pink-3);
}

.plan-price span {
  display: block;
  margin-bottom: 4px;
  color: #5a5560;
  font-size: 12px;
  font-weight: 900;
}

.plan-price strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(44px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 0.9;
}

.plan-price small {
  font-size: 20px;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
  color: #312d36;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  word-break: keep-all;
}

.plan-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--pink-3);
  content: "✓";
  font-weight: 900;
}

.plan-template {
  margin: auto 0 0;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--pink-3);
  background: rgba(247, 42, 169, 0.1);
  font-size: 12px;
  text-align: center;
}

.plan-recommend {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 90% 0, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(160deg, #17101a 0%, #3b0b2a 44%, #ff347a 100%);
  box-shadow: 0 28px 64px rgba(244, 25, 146, 0.28);
  transform: translateY(-12px);
}

.plan-recommend::before {
  height: 9px;
  background: linear-gradient(90deg, #ff2fd9, #15dc74);
}

.plan-recommend .plan-badge {
  position: absolute;
  top: 18px;
  right: 16px;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--pink-3);
  background: var(--white);
  font-size: 11px;
}

.plan-recommend .plan-label,
.plan-recommend .plan-price,
.plan-recommend .plan-price span,
.plan-recommend .plan-sub,
.plan-recommend li {
  color: var(--white);
}

.plan-recommend .plan-price {
  border-color: rgba(255, 255, 255, 0.22);
}

.plan-recommend li::before {
  color: #39ff8c;
}

.plan-recommend .plan-template {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.template-note {
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 1180px;
  margin: 26px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(247, 42, 169, 0.18);
  border-radius: 999px;
  background: #fff7fb;
  box-shadow: 0 18px 40px rgba(17, 16, 23, 0.06);
}

.template-note b {
  color: var(--pink-3);
  font-weight: 900;
  white-space: nowrap;
}

.template-note span {
  color: #4f4a55;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.price {
  overflow: hidden;
}

.price-reason {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 74px;
}

.price-index {
  color: var(--pink-3);
}

.price-index span {
  display: block;
  margin-bottom: -8px;
  font-size: 18px;
  font-weight: 900;
}

.price-index b {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(116px, 13vw, 188px);
  font-weight: 400;
  line-height: 0.9;
}

.price-catch h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.55;
}

.price-catch mark,
.price-story span,
.price-story strong,
.company-row strong {
  padding: 0 0.1em;
  color: #050308;
  background: linear-gradient(transparent 58%, #fff100 58%);
  font-weight: 900;
}

.price-story {
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  line-height: 2.05;
}

.price-story p {
  margin: 0 0 12px;
}

.price-story a {
  display: inline-block;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 900;
}

.price-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  grid-template-areas:
    "title title"
    "saving image"
    "bars bars";
  gap: 28px clamp(28px, 4vw, 56px);
  max-width: 1280px;
  margin: 0 auto 82px;
  padding: clamp(26px, 4vw, 54px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 78% 18%, rgba(247, 42, 169, 0.12), transparent 30%),
    linear-gradient(180deg, #fff, #fff8fb);
  box-shadow: 0 24px 64px rgba(17, 16, 23, 0.08);
}

.price-visual-title {
  position: relative;
  z-index: 1;
  grid-area: title;
  text-align: center;
}

.price-visual-title span {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.price-visual-title b {
  display: block;
  margin-top: -4px;
  color: rgba(247, 42, 169, 0.1);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(68px, 10vw, 132px);
  font-weight: 400;
  line-height: 0.9;
}

.price-visual img {
  position: relative;
  z-index: 1;
  grid-area: image;
  width: 100%;
  align-self: center;
  border-radius: 32% 8% 28% 12% / 12% 34% 10% 30%;
  box-shadow: 0 36px 84px rgba(17, 16, 23, 0.13);
}

.saving-arrow {
  position: relative;
  z-index: 2;
  grid-area: saving;
  display: grid;
  width: 100%;
  max-width: 390px;
  min-height: 238px;
  align-self: center;
  justify-self: center;
  place-items: center;
  align-content: start;
  gap: 2px;
  padding: 34px 28px 88px;
  color: var(--white);
  background: linear-gradient(135deg, #ff2fd9, #ff382c);
  clip-path: polygon(0 0, 100% 0, 100% 68%, 63% 68%, 50% 100%, 37% 68%, 0 68%);
  text-align: center;
  filter: drop-shadow(0 24px 36px rgba(244, 25, 146, 0.24));
}

.saving-arrow span,
.saving-arrow small {
  font-weight: 900;
}

.saving-arrow small {
  position: absolute;
  bottom: 100px;
  left: 50%;
  font-size: 12px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.saving-arrow strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(74px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.82;
}

.saving-unit {
  margin-top: -2px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1;
}

.saving-kicker {
  font-size: 15px;
}

.price-bars {
  position: relative;
  z-index: 1;
  grid-area: bars;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  gap: clamp(18px, 4vw, 58px);
  align-items: end;
  min-height: 360px;
  padding: 22px 22px 54px;
  border-bottom: 3px solid rgba(247, 42, 169, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 243, 248, 0.5));
}

.bar {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: 310px;
  padding: 0 10px 18px;
  text-align: center;
}

.bar::before {
  position: absolute;
  right: 22%;
  bottom: 0;
  left: 22%;
  height: var(--bar-height, 150px);
  content: "";
  background: rgba(226, 0, 127, 0.22);
}

.bar-salon::before {
  height: 74px;
  background: linear-gradient(180deg, #ff2fd9, #ff3b73);
}

.bar-a::before {
  --bar-height: 132px;
}

.bar-b::before {
  --bar-height: 220px;
}

.bar-c::before {
  --bar-height: 292px;
}

.bar b,
.bar span {
  position: relative;
  z-index: 1;
  font-weight: 900;
}

.bar b {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(27px, 2.8vw, 40px);
  letter-spacing: 0.02em;
}

.bar span {
  margin-top: 10px;
}

.bar-salon b,
.bar-salon span {
  color: var(--pink-3);
}

.plan-flow {
  position: relative;
  display: flex;
  max-width: 1180px;
  margin: 0 auto 76px;
  padding: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff3f8, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(247, 42, 169, 0.14), 0 18px 50px rgba(17, 16, 23, 0.06);
}

.plan-flow::before {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--pink), #15dc74);
  transform: translateY(-50%);
}

.plan-flow span {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1;
  min-height: 86px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #3b3540;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.plan-flow b {
  color: var(--pink-3);
  font-family: "Anton", Impact, sans-serif;
  font-size: 25px;
  font-weight: 400;
}

.plan-compare,
.company-compare {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 58px;
}

.compare-word {
  position: absolute;
  top: -74px;
  right: -90px;
  z-index: 0;
  color: rgba(247, 42, 169, 0.08);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(96px, 18vw, 240px);
  pointer-events: none;
}

.compare-row,
.company-row {
  position: relative;
  z-index: 1;
  display: grid;
  border-right: 1px solid rgba(226, 0, 127, 0.13);
  border-bottom: 1px solid rgba(226, 0, 127, 0.13);
  border-left: 1px solid rgba(226, 0, 127, 0.13);
  background: rgba(255, 246, 250, 0.82);
}

.compare-row {
  grid-template-columns: 1.08fr repeat(4, minmax(0, 1fr));
}

.compare-row > div,
.company-row > div {
  padding: 20px 18px;
  border-right: 1px solid rgba(226, 0, 127, 0.13);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.compare-row > div:last-child,
.company-row > div:last-child {
  border-right: 0;
}

.compare-head,
.company-head {
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  color: var(--white);
  background: linear-gradient(90deg, #df75ad, var(--pink-3), #df75ad);
}

.compare-head > div,
.company-head > div {
  color: var(--white);
  font-size: 17px;
  text-align: center;
}

.compare-row strong {
  color: var(--pink-3);
  background: none;
  font-size: 20px;
}

.company-compare {
  padding-top: 118px;
}

.company-compare::before {
  position: absolute;
  top: 20px;
  left: -58px;
  width: 2px;
  height: 210px;
  content: "";
  background: var(--pink);
}

.company-compare::after {
  position: absolute;
  top: 26px;
  left: -66px;
  color: var(--pink-3);
  content: "COMPARE";
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.34em;
  text-orientation: upright;
  writing-mode: vertical-rl;
}

.company-compare-head {
  position: absolute;
  top: 0;
  left: 0;
}

.company-compare-head span {
  display: block;
  font-weight: 700;
}

.company-compare-head b {
  position: absolute;
  top: 0;
  left: 82px;
  color: rgba(247, 42, 169, 0.1);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(92px, 16vw, 210px);
  font-weight: 400;
  line-height: 0.8;
  pointer-events: none;
}

.company-compare-head p {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 94px 0 28px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
}

.company-row {
  grid-template-columns: 1.35fr 1.05fr 1.15fr 1.15fr;
}

.company-row > div:nth-child(2) {
  color: var(--pink-3);
  background: rgba(247, 42, 169, 0.06);
  text-align: center;
}

.company-row strong {
  color: var(--pink-3);
  background: none;
}

.compare-note {
  margin: 18px 0 0;
  color: #857f89;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
}

.flow-step {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.flow-step::after {
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 65, 200, 0.1);
}

.flow-step b {
  color: #ff41c8;
  font-family: "Anton", Impact, sans-serif;
  font-size: 52px;
  line-height: 1;
}

.flow-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-top: 22px;
  border: 1px solid rgba(255, 65, 200, 0.42);
  border-radius: 20px;
  background: rgba(255, 65, 200, 0.08);
  color: #ff41c8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.flow-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.4;
}

.flow-step-payment {
  border-color: rgba(21, 220, 116, 0.38);
  background:
    linear-gradient(150deg, rgba(21, 220, 116, 0.13), rgba(255, 65, 200, 0.06)),
    rgba(255, 255, 255, 0.07);
}

.flow-step-payment .flow-icon {
  border-color: rgba(21, 220, 116, 0.52);
  color: #15dc74;
  background: rgba(21, 220, 116, 0.1);
}

.flow-step h3 {
  margin: 18px 0 12px;
  font-size: 22px;
}

.flow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.9;
}

.flow-step p strong,
.flow-payment strong {
  color: #15dc74;
}

.flow-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1220px;
  margin: 26px auto 0;
  padding: 26px clamp(24px, 4vw, 40px);
  border: 1px solid rgba(21, 220, 116, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(21, 220, 116, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
}

.flow-payment b {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 900;
}

.flow-payment p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.9;
}

.flow-payment a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  color: #07110c;
  background: linear-gradient(90deg, #dfffea, #15dc74);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(21, 220, 116, 0.2);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  counter-reset: faq;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.faq .section-head {
  margin-bottom: 28px;
}

.faq .section-head p:last-child {
  max-width: 720px;
  color: #5a5560;
  font-weight: 800;
  line-height: 1.9;
}

.faq-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto 28px;
}

.faq-topics span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(226, 0, 127, 0.18);
  border-radius: 999px;
  color: #d72280;
  background: #fff7fb;
  font-size: 13px;
  font-weight: 900;
}

.faq-list details {
  counter-increment: faq;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 0, 127, 0.12);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(225, 24, 134, 0.08);
}

.faq-list details:first-child {
  grid-column: 1 / -1;
  background:
    linear-gradient(90deg, rgba(255, 47, 217, 0.07), rgba(255, 62, 121, 0.05)),
    var(--white);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 24px;
  color: var(--ink);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 900;
  line-height: 1.55;
}

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

.faq-list summary::before {
  display: inline-grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #ff2fd9, #ff3e79);
  content: "Q" counter(faq, decimal-leading-zero);
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(244, 25, 146, 0.2);
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: #d72280;
  content: "+";
  font-family: "Anton", Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 26px 26px 84px;
  color: #5a5560;
  font-weight: 700;
  line-height: 2;
}

.faq-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 26px clamp(24px, 4vw, 40px);
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(105deg, #1b141e 0%, #40142e 42%, #ff347a 100%);
  box-shadow: 0 24px 58px rgba(244, 25, 146, 0.18);
}

.faq-contact p {
  margin: 0;
  font-weight: 800;
  line-height: 1.8;
}

.faq-contact b {
  display: block;
  font-size: clamp(18px, 1.7vw, 24px);
}

.faq-contact a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  color: #ff2d8a;
  background: var(--white);
  font-weight: 900;
}

.home-news {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 47, 217, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}

.home-news-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.home-news-copy h2 {
  margin: 8px 0 16px;
  color: var(--ink);
  font-size: clamp(44px, 7vw, 106px);
  line-height: 0.95;
}

.home-news-copy p {
  max-width: 420px;
  margin: 0;
  color: #4d4650;
  font-size: 15px;
  font-weight: 800;
  line-height: 2;
}

.home-news-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #ff2fd9, #ff3e79);
  box-shadow: 0 18px 42px rgba(226, 0, 127, 0.18);
  font-weight: 900;
}

.home-news-list {
  display: grid;
  border-top: 1px solid rgba(226, 0, 127, 0.18);
}

.home-news-list article {
  position: relative;
  border-bottom: 1px solid rgba(226, 0, 127, 0.18);
}

.home-news-list article::before {
  position: absolute;
  top: 26px;
  right: 0;
  color: #ff2aa9;
  content: "→";
  font-size: 24px;
  font-weight: 900;
  transition: transform 0.22s ease;
}

.home-news-list article:hover::before {
  transform: translateX(8px);
}

.home-news-list a {
  display: grid;
  grid-template-columns: 118px 96px minmax(0, 1fr);
  gap: 16px 20px;
  align-items: start;
  padding: 25px 44px 25px 0;
  color: inherit;
}

.home-news-list time {
  color: #e22682;
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.home-news-list span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #e22682;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(226, 0, 127, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.home-news-list h3 {
  margin: 0;
  color: #120e16;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.45;
}

.home-news-list p {
  grid-column: 3;
  margin: -4px 0 0;
  color: #5b5360;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .home-news-inner {
    grid-template-columns: 1fr;
  }

  .home-news-copy p {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .home-news-list a {
    grid-template-columns: 1fr auto;
    gap: 10px 12px;
    padding: 22px 38px 22px 0;
  }

  .home-news-list time {
    font-size: 16px;
  }

  .home-news-list h3,
  .home-news-list p {
    grid-column: 1 / -1;
  }

  .home-news-list p {
    margin-top: 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.tel-link {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 3px 14px;
  width: min(100%, 520px);
  margin-top: 30px;
  padding: 18px 22px;
  border: 1px solid rgba(21, 220, 116, 0.48);
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 220, 116, 0.2), rgba(239, 48, 223, 0.14)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.26),
    0 0 0 6px rgba(21, 220, 116, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tel-link:hover {
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.34),
    0 0 0 9px rgba(21, 220, 116, 0.11);
  transform: translateY(-2px);
}

.tel-link::before {
  display: grid;
  grid-row: 1 / span 3;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #07110c;
  background: linear-gradient(135deg, #dfffea, #15dc74);
  content: "TEL";
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.tel-link span {
  color: #15dc74;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.tel-link strong {
  color: var(--white);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  white-space: nowrap;
}

.tel-link small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.contact-form label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.contact-form label span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 38px;
  margin-left: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--pink);
  font-size: 11px;
  line-height: 1;
}

.contact-form input,
.contact-form textarea {
  flex: 0 0 100%;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 14px 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 62px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, #ef30df, #ff3e79);
  font-weight: 900;
  cursor: pointer;
}

.contact-line-panel {
  position: relative;
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: clamp(30px, 4.2vw, 56px);
  border: 1px solid rgba(6, 199, 85, 0.32);
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(6, 199, 85, 0.28), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(255, 47, 217, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(13, 38, 29, 0.96), rgba(39, 18, 42, 0.96));
  box-shadow:
    0 30px 74px rgba(0, 0, 0, 0.34),
    0 0 0 8px rgba(6, 199, 85, 0.06);
}

.contact-line-panel::before {
  position: absolute;
  right: -0.2em;
  bottom: -0.33em;
  color: rgba(255, 255, 255, 0.035);
  content: "LINE";
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(120px, 14vw, 220px);
  line-height: 0.8;
  pointer-events: none;
}

.contact-line-eyebrow {
  position: relative;
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  color: #07110c;
  background: linear-gradient(135deg, #dfffea, #15dc74);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.04em;
}

.contact-line-panel h3 {
  position: relative;
  margin: 0;
  color: var(--white);
  font-family: "Anton", "Noto Sans JP", sans-serif;
  font-size: clamp(42px, 4.7vw, 74px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-line-panel p {
  position: relative;
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  line-height: 2;
}

.line-consult-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.line-consult-steps span {
  display: grid;
  gap: 6px;
  min-height: 100px;
  align-content: center;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.line-consult-steps b {
  color: #15dc74;
  font-family: "Anton", Impact, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.line-main-cta {
  position: relative;
  display: inline-flex;
  min-height: 68px;
  width: min(100%, 430px);
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: #06130c;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16)),
    linear-gradient(90deg, #00c95a, #20f083);
  box-shadow: 0 20px 44px rgba(6, 199, 85, 0.28);
  font-size: 18px;
  font-weight: 1000;
}

.line-main-cta span {
  font-size: 22px;
}

.contact-line-panel small {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.7;
}

.terms {
  padding: 38px 20px;
  color: #5d5861;
  background: #f8f5f7;
}

.terms > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.terms a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(226, 0, 127, 0.18);
  border-radius: 999px;
  color: #d72280;
  background: var(--white);
  font-weight: 900;
}

.line-widget {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 40;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 18px;
  background: #cfe4f5;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.line-widget.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.line-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.line-head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  color: var(--white);
  background: #06c755;
}

.line-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #06c755;
  font-family: "Anton", Impact, sans-serif;
}

.line-head small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.line-body {
  display: grid;
  max-height: 420px;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
}

.line-message {
  width: fit-content;
  max-width: 86%;
  padding: 11px 13px;
  border-radius: 14px;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
}

.line-bot {
  border-top-left-radius: 4px;
  background: var(--white);
}

.line-user {
  justify-self: end;
  border-top-right-radius: 4px;
  color: var(--white);
  background: #06c755;
}

.line-options {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.line-options button,
.line-options a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: #26bf2a;
  box-shadow: 0 10px 22px rgba(6, 199, 85, 0.2);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.line-typing {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #5a5560;
  font-size: 12px;
  font-weight: 900;
}

.line-bubble {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 41;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: var(--white);
  background: #06c755;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.footer {
  padding: 34px 20px;
  color: rgba(255, 255, 255, 0.72);
  background: #08060b;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 18px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.floating {
  animation: float 5.5s ease-in-out infinite;
}

.floating-slow {
  animation: float 7s ease-in-out infinite;
}

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

@keyframes phonePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 5px rgba(20, 199, 85, 0.16),
      0 16px 34px rgba(20, 199, 85, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      0 0 0 9px rgba(20, 199, 85, 0.09),
      0 20px 40px rgba(20, 199, 85, 0.46),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
  }
}

@media (max-width: 1120px) {
  .global-nav {
    position: fixed;
    top: 74px;
    right: 18px;
    display: none;
    width: min(360px, calc(100vw - 36px));
    padding: 20px;
    border-radius: 22px;
    background: rgba(8, 6, 12, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 10px 4px;
  }

  .global-nav .nav-phone,
  .global-nav .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    color: var(--white);
    text-align: center;
  }

  .global-nav .nav-phone {
    gap: 10px;
    width: 100%;
    min-height: 64px;
    font-size: 18px;
  }

  .global-nav .nav-phone span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    color: var(--white);
    line-height: 1;
  }

  .global-nav .nav-phone strong {
    color: var(--white);
    font-size: 20px;
    line-height: 1;
  }

  .global-nav .nav-cta {
    width: 100%;
    min-height: 64px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
  }

  .nav-toggle {
    display: block;
  }

  .header-phone-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-left: auto;
    padding: 0 18px;
    border: 2px solid rgba(255, 255, 255, 0.62);
    border-radius: 999px;
    color: var(--white);
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
      linear-gradient(90deg, #00c95a, #15dc74);
    box-shadow:
      0 0 0 5px rgba(20, 199, 85, 0.14),
      0 14px 30px rgba(20, 199, 85, 0.32);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-copy {
  max-width: 760px;
}

  .hero-visual {
    min-height: 520px;
  }

  .hero-device-art {
    top: -42px;
    right: -58px;
    width: min(960px, 102vw);
  }

  .device-laptop {
    width: min(820px, 88vw);
  }

  .hero-offer {
    width: min(620px, 78vw);
  }

  .price-reason {
    grid-template-columns: 180px 1fr;
  }

  .price-story {
    grid-column: 1 / -1;
  }

  .price-visual {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "saving"
      "image"
      "bars";
    min-height: auto;
  }

  .price-visual img {
    top: auto;
    right: auto;
    width: min(720px, 100%);
    justify-self: center;
  }

  .saving-arrow {
    top: auto;
    left: auto;
    width: min(420px, 100%);
  }

  .price-bars {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
  }

  .proof-strip,
  .reason-grid,
  .solution-grid,
  .operation-grid,
  .plan-grid,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-recommend {
    transform: none;
  }

  .template-note {
    align-items: flex-start;
    border-radius: 24px;
    flex-direction: column;
  }

  .template-note b {
    white-space: normal;
  }

  .cms-show-inner,
  .contact-grid,
  .pain-inner,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1390px) {
  .line-widget {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .brand-text span {
    font-size: 28px;
  }

  .brand-text small {
    font-size: 9px;
  }

  .header-phone-mobile {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 104px 18px 86px;
  }

  .hero-sub {
    margin-bottom: 36px;
  }

  .hero-price {
    gap: 8px;
  }

  .hero-price-kicker {
    padding: 7px 11px;
  }

  .hero-price-row {
    gap: 6px;
    font-size: 23px;
  }

  .hero-price-row b {
    font-size: clamp(68px, 20vw, 86px);
  }

  .hero-price-row small {
    padding-bottom: 3px;
    font-size: 23px;
  }

  .hero-tags span {
    min-width: 132px;
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.22;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    display: grid;
    min-height: 0;
    margin: 36px -18px 0;
    gap: 18px;
    overflow: visible;
    padding: 0 0 2px;
  }

  .hero-device-art {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% + 34px);
    margin: 0 -18px 0 0;
    filter:
      drop-shadow(0 20px 32px rgba(0, 0, 0, 0.42))
      drop-shadow(0 0 24px rgba(255, 47, 217, 0.16));
  }

  .device-laptop {
    top: 36px;
    width: 100%;
    border-width: 7px;
    border-radius: 18px;
  }

  .device-phone {
    right: 6px;
    bottom: 112px;
    width: 126px;
    border-width: 6px;
    border-radius: 24px;
  }

  .device-phone img {
    height: 220px;
  }

  .hero-offer {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -28px 18px 0;
    padding: 26px 18px;
    border-radius: 34px;
    box-shadow:
      0 22px 44px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .hero-offer a {
    min-height: 56px;
  }

  .proof-strip,
  .works-row,
  .reason-grid,
  .function-list,
  .solution-grid,
  .operation-grid,
  .price-main,
  .price-list,
  .plan-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .price-lead {
    padding: 32px 20px;
    border-radius: 28px;
  }

  .price-reason {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 46px;
  }

  .price-index b {
    font-size: 104px;
  }

  .price-catch h2 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.55;
  }

  .price-story {
    font-size: 14px;
  }

  .price-story a {
    font-size: 15px;
  }

  .price-visual {
    min-height: auto;
    margin-bottom: 48px;
    padding: 24px 16px;
    border-radius: 26px;
  }

  .price-visual img {
    top: auto;
    right: auto;
    width: 100%;
    max-width: none;
    opacity: 0.88;
  }

  .saving-arrow {
    top: auto;
    left: auto;
    width: 100%;
    min-height: 190px;
  }

  .saving-arrow strong {
    font-size: 44px;
  }

  .price-bars {
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 300px;
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(132px, 1fr));
    gap: 12px;
    padding: 8px 0 44px;
  }

  .bar b {
    font-size: 27px;
  }

  .plan-flow {
    display: grid;
    padding: 12px;
    border-radius: 28px;
  }

  .plan-flow::before {
    display: none;
  }

  .plan-flow span {
    min-height: 66px;
    border-radius: 18px;
  }

  .plan-compare,
  .company-table {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .compare-row {
    min-width: 980px;
  }

  .company-row {
    min-width: 760px;
  }

  .company-compare {
    padding-top: 92px;
  }

  .company-compare::before,
  .company-compare::after {
    display: none;
  }

  .company-compare-head b {
    left: 0;
    font-size: 86px;
  }

  .company-compare-head p {
    margin-top: 68px;
    font-size: 14px;
  }

  .price-main {
    margin: 26px 0;
  }

  .price-main div {
    padding: 20px;
    border-radius: 22px;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-card h3,
  .plan-sub {
    min-height: auto;
  }

  .proof-strip {
    margin-top: -36px;
  }

  .section-white,
  .section-dark {
    padding: 74px 18px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2 span {
    font-size: clamp(66px, 25vw, 108px);
  }

  .section-side-label {
    display: none;
  }

  .work-phone,
  .work-phone:nth-child(2),
  .work-phone:nth-child(3) {
    margin-top: 0;
    transform: none;
  }

  .work-phone img {
    height: 340px;
  }

  .reason-card img {
    height: 188px;
  }

  .flow-step {
    min-height: auto;
  }

  .flow-icon {
    width: 58px;
    height: 58px;
    margin-top: 18px;
    border-radius: 18px;
  }

  .flow-icon svg {
    width: 36px;
    height: 36px;
  }

  .flow-payment {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
    border-radius: 22px;
  }

  .flow-payment a {
    width: 100%;
  }

  .line-widget {
    right: 12px;
    bottom: 88px;
    width: calc(100vw - 24px);
  }
}

@media (max-width: 1390px) {
  .line-widget {
    display: block !important;
  }
}

.subpage {
  min-height: 100vh;
  background: #fff;
}

.subpage .site-header {
  background: rgba(8, 6, 12, 0.9);
  backdrop-filter: blur(16px);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(138px, 15vw, 190px) clamp(20px, 6vw, 82px) clamp(70px, 8vw, 112px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 6%, rgba(21, 220, 116, 0.2), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(255, 47, 217, 0.22), transparent 28%),
    linear-gradient(145deg, #111018 0%, #08060b 78%);
}

.subpage-hero::after {
  position: absolute;
  right: -4vw;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.045);
  content: "SALON CMS";
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(92px, 17vw, 248px);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.subpage-hero > * {
  position: relative;
  z-index: 1;
  max-width: 1020px;
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: 1.16;
  letter-spacing: 0;
}

.subpage-hero p:last-child {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 800;
  line-height: 2;
}

.subpage-section {
  padding: clamp(64px, 8vw, 118px) clamp(20px, 5vw, 72px);
}

.subpage-grid,
.subpage-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.subpage-grid article,
.subpage-plan-grid article,
.news-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 0, 127, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 247, 251, 0.82), rgba(255, 255, 255, 0.98)),
    var(--white);
  box-shadow: 0 18px 42px rgba(225, 24, 134, 0.08);
}

.subpage-grid article,
.subpage-plan-grid article {
  min-height: 250px;
  padding: 26px;
}

.subpage-grid b {
  color: #ff41c8;
  font-family: "Anton", Impact, sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.subpage-grid h2,
.subpage-plan-grid h2,
.news-list h2,
.terms-page h2 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.45;
}

.subpage-grid p,
.subpage-plan-grid p,
.news-list p,
.terms-page p {
  margin: 0;
  color: #5a5560;
  font-weight: 800;
  line-height: 1.9;
}

.subpage-plan-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.subpage-plan-grid article {
  min-height: 292px;
}

.subpage-plan-grid span,
.news-list span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #d72280;
  background: #fff0f8;
  font-size: 12px;
  font-weight: 900;
}

.subpage-plan-grid h2 {
  color: #e3007f;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
}

.subpage-payment,
.terms-page {
  max-width: 980px;
  margin: 34px auto 0;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
  background: #fff7fb;
  box-shadow: 0 18px 44px rgba(225, 24, 134, 0.08);
}

.subpage-payment h2 {
  margin: 0 0 12px;
}

.subpage-payment p {
  margin: 0;
  color: #5a5560;
  font-weight: 800;
  line-height: 1.9;
}

.subpage-payment strong,
.terms-page strong {
  color: #d72280;
}

.subpage-faq-list {
  max-width: 1120px;
}

.news-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.news-list article {
  padding: 28px;
}

.news-list time {
  display: inline-block;
  margin-right: 10px;
  color: #e3007f;
  font-family: "Anton", Impact, sans-serif;
  font-size: 22px;
}

.terms-page {
  display: grid;
  gap: 22px;
}

.terms-page h2 {
  margin: 0 0 8px;
}

.subpage-cta {
  margin: 0 clamp(20px, 5vw, 72px) clamp(72px, 9vw, 120px);
  padding: clamp(34px, 5vw, 58px);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(105deg, #1b141e 0%, #40142e 42%, #ff347a 100%);
  box-shadow: 0 24px 58px rgba(244, 25, 146, 0.18);
}

.subpage-cta h2 {
  margin: 0;
}

.subpage-cta p {
  max-width: 720px;
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1.9;
}

.subpage-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  color: #ff2d8a;
  background: var(--white);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .subpage-grid,
  .subpage-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .subpage-hero {
    padding-top: 118px;
  }

  .subpage-grid,
  .subpage-plan-grid {
    grid-template-columns: 1fr;
  }

  .subpage-grid article,
  .subpage-plan-grid article {
    min-height: auto;
  }

  .subpage-cta {
    margin-right: 18px;
    margin-left: 18px;
    border-radius: 24px;
  }
}

.price-visual {
  display: block;
  max-width: 1220px;
  margin: 0 auto 86px;
  padding: 0 clamp(8px, 2vw, 22px);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.price-visual-heading {
  position: relative;
  z-index: 1;
  margin-bottom: -18px;
  text-align: center;
}

.price-visual-heading p {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.35;
}

.price-visual-heading h3 {
  margin: 0;
  color: transparent;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(34px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  background: linear-gradient(135deg, #ff3c2f 0%, #ff2aa9 58%, #d92480 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.price-visual .price-compare-image {
  position: static;
  z-index: auto;
  display: block;
  width: min(100%, 1120px);
  max-width: none;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

.price-compare-scroll {
  overflow: visible;
}

.cost-reason {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 72px;
  padding: clamp(32px, 4vw, 54px);
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(21, 220, 116, 0.2), transparent 32%),
    linear-gradient(135deg, #0b0810 0%, #1b101d 46%, #301021 100%);
  box-shadow: 0 30px 82px rgba(8, 6, 12, 0.22);
}

.cost-index {
  color: #ff3ab2;
}

.cost-index span {
  display: block;
  margin-bottom: -8px;
  font-size: 16px;
  font-weight: 900;
}

.cost-index b {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(110px, 12vw, 176px);
  font-weight: 400;
  line-height: 0.9;
}

.cost-copy h2 {
  margin: 0;
  font-size: clamp(31px, 3.6vw, 56px);
  line-height: 1.35;
}

.cost-copy mark {
  padding: 0 0.08em;
  color: #08060b;
  background: linear-gradient(transparent 56%, #fff100 56%);
}

.cost-copy p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 2;
}

.cost-board {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cost-board-head,
.cost-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cost-board-head > *,
.cost-row > * {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 900;
  line-height: 1.6;
}

.cost-board-head span {
  color: rgba(255, 255, 255, 0.58);
}

.cost-board-head b,
.cost-row strong {
  color: #15dc74;
}

.cost-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.cost-row strong {
  background: rgba(21, 220, 116, 0.08);
  font-size: 14px;
}

.cost-summary {
  padding: 20px 22px 22px;
  background: linear-gradient(90deg, rgba(255, 47, 217, 0.18), rgba(21, 220, 116, 0.12));
}

.cost-summary small {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 900;
}

.cost-summary b {
  display: block;
  margin: 2px 0 6px;
  color: #fff;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.cost-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.value-compare {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.84fr) minmax(480px, 1.16fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 76px;
  padding: clamp(34px, 5vw, 68px);
  overflow: hidden;
  border-radius: 44px;
  isolation: isolate;
}

.value-compare::before {
  position: absolute;
  inset: auto -0.14em -0.24em auto;
  z-index: -1;
  color: rgba(226, 0, 127, 0.055);
  content: "VALUE";
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(118px, 18vw, 282px);
  line-height: 1;
}

.value-compare-system {
  color: #120d16;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 45, 143, 0.18), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fff5fa 52%, #fff 100%);
  box-shadow: 0 26px 76px rgba(226, 0, 127, 0.12);
}

.value-compare-automation {
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(21, 220, 116, 0.2), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(255, 45, 143, 0.22), transparent 36%),
    linear-gradient(135deg, #07050a 0%, #170d1b 48%, #321021 100%);
  box-shadow: 0 30px 82px rgba(8, 6, 12, 0.24);
}

.automation-image-section {
  grid-template-columns: minmax(320px, 0.68fr) minmax(620px, 1.32fr);
  gap: clamp(18px, 3vw, 44px);
  padding-top: clamp(34px, 4.2vw, 58px);
  padding-right: clamp(18px, 3vw, 42px);
  padding-bottom: clamp(32px, 4vw, 54px);
}

.automation-image-section::before {
  content: "AUTOMATION";
}

.automation-visual {
  position: relative;
  z-index: 1;
  margin: -18px -42px -22px 0;
}

.automation-visual::before {
  position: absolute;
  inset: 12% 2% 10% 13%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 47, 217, 0.2), transparent 62%),
    radial-gradient(circle at 18% 72%, rgba(21, 220, 116, 0.12), transparent 45%);
  filter: blur(10px);
  content: "";
}

.automation-visual img {
  display: block;
  width: min(100%, 860px);
  height: auto;
  margin-left: auto;
  filter:
    drop-shadow(0 28px 46px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 28px rgba(255, 47, 217, 0.18));
}

.value-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.28;
}

.value-copy mark {
  padding: 0 0.08em;
  color: inherit;
  background: linear-gradient(transparent 58%, #fff100 58%);
}

.value-copy p:last-child {
  margin: 22px 0 0;
  color: rgba(18, 13, 22, 0.72);
  font-size: 15px;
  font-weight: 900;
  line-height: 2;
}

.value-compare-automation .value-copy p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.value-chart {
  display: grid;
  gap: 18px;
}

.value-bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 20px);
  align-items: end;
  min-height: 304px;
  padding: 22px 14px 0;
  border-bottom: 3px solid rgba(226, 0, 127, 0.18);
}

.value-bars::before {
  position: absolute;
  top: 86px;
  right: 0;
  left: 0;
  border-top: 2px dotted rgba(226, 0, 127, 0.15);
  content: "";
}

.value-bar {
  position: relative;
  display: grid;
  min-height: 270px;
  align-items: end;
  justify-items: center;
  padding-bottom: 16px;
  text-align: center;
}

.value-bar::before {
  position: absolute;
  right: 14%;
  bottom: 0;
  left: 14%;
  height: var(--bar);
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #f1bfd9 0%, #ebb4d2 100%);
  content: "";
}

.value-bar.value-bar-salon::before {
  background: linear-gradient(180deg, #ff2fd9 0%, #ff3e79 100%);
  box-shadow: 0 18px 38px rgba(226, 0, 127, 0.18);
}

.value-bar b,
.value-bar span {
  position: relative;
  z-index: 1;
}

.value-bar b {
  margin-bottom: 8px;
  color: #07050a;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.value-bar.value-bar-salon b {
  color: #d72280;
}

.value-bar span {
  min-height: 44px;
  color: #0d0a10;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.value-saving {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(90deg, #ff342e 0%, #ff2fd9 100%);
  box-shadow: 0 16px 34px rgba(226, 0, 127, 0.18);
}

.value-saving small {
  grid-row: span 2;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  writing-mode: vertical-rl;
}

.value-saving strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 0.95;
}

.value-saving p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.75;
}

.automation-meter {
  display: grid;
  gap: 18px;
}

.automation-punch {
  position: relative;
  display: grid;
  gap: 6px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, #ff342e 0%, #ff2fd9 62%, #b1166b 100%);
  box-shadow: 0 24px 58px rgba(226, 0, 127, 0.26);
}

.automation-punch::after {
  position: absolute;
  right: -0.18em;
  bottom: -0.24em;
  color: rgba(255, 255, 255, 0.13);
  content: "5.4M";
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(98px, 13vw, 190px);
  line-height: 1;
}

.automation-punch span,
.automation-punch strong,
.automation-punch small {
  position: relative;
  z-index: 1;
}

.automation-punch span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 900;
}

.automation-punch strong {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(58px, 6.6vw, 104px);
  font-weight: 400;
  line-height: 0.92;
}

.automation-punch small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.automation-bars {
  display: grid;
  gap: 14px;
  padding: 6px 0;
}

.automation-bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(118px, 0.32fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.automation-bar::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--w);
  border-radius: inherit;
  content: "";
}

.automation-bar-human::before {
  background: linear-gradient(90deg, rgba(255, 47, 217, 0.92), rgba(255, 52, 46, 0.78));
}

.automation-bar-salon::before {
  background: linear-gradient(90deg, rgba(21, 220, 116, 0.98), rgba(125, 255, 181, 0.86));
}

.automation-bar span,
.automation-bar b {
  position: relative;
  z-index: 1;
}

.automation-bar span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.automation-bar b {
  color: #fff;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(27px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1;
  text-align: right;
  text-shadow: 0 2px 0 rgba(8, 6, 12, 0.24);
}

.automation-bar-salon b {
  color: #04180c;
  text-shadow: none;
}

.automation-monthly {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(21, 220, 116, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.06);
}

.automation-monthly span {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.automation-monthly small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 900;
}

.automation-monthly b {
  color: #fff;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(24px, 2.7vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.automation-monthly i {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #06140b;
  background: #15dc74;
  font-style: normal;
  font-weight: 900;
}

.automation-meter p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.9;
}

.price-page-value {
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 110px);
  background: #fff;
}

@media (max-width: 760px) {
  .faq-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-list details:first-child {
    grid-column: auto;
  }

  .faq-list summary {
    gap: 10px;
    padding: 18px 46px 18px 18px;
  }

  .faq-list summary::before {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .faq-list summary::after {
    right: 18px;
    font-size: 26px;
  }

  .faq-list p {
    padding: 0 18px 20px 66px;
    line-height: 1.85;
  }

  .faq-contact {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
    border-radius: 22px;
  }

  .faq-contact a {
    width: 100%;
  }

  .price-visual {
    margin-bottom: 54px;
    padding: 0;
  }

  .price-visual-heading {
    margin-bottom: -6px;
  }

  .price-visual-heading p {
    font-size: 16px;
  }

  .price-visual-heading h3 {
    font-size: clamp(33px, 8.6vw, 48px);
  }

  .price-visual .price-compare-image {
    width: 860px;
    max-width: none;
  }

  .price-compare-scroll {
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
  }

  .cost-reason {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
    padding: 28px 22px;
    border-radius: 30px;
  }

  .cost-index b {
    font-size: 104px;
  }

  .cost-board-head,
  .cost-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .tel-link {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 2px 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .tel-link::before {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

  .tel-link strong {
    font-size: clamp(31px, 9.5vw, 42px);
  }

  .tel-link small {
    font-size: 11px;
  }

  .contact-form label {
    font-size: 13px;
  }
}

/* Fixed page polish: Ultra Create inspired price/features/footer */
.line-avatar {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.line-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
}

.line-head {
  padding: 14px 16px;
}

.line-head b {
  display: block;
  font-size: 16px;
}

.line-head small {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 94px) clamp(20px, 6vw, 82px) 28px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 47, 217, 0.13), transparent 28%),
    radial-gradient(circle at 12% 24%, rgba(21, 220, 116, 0.08), transparent 24%),
    #030205;
  text-align: left;
}

.footer::before {
  position: absolute;
  top: -0.24em;
  right: -0.1em;
  color: rgba(255, 255, 255, 0.035);
  content: "SALON CMS";
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(96px, 18vw, 260px);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 7vw, 108px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto 42px;
}

.footer-logo {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  color: #fff;
}

.footer-logo .brand-mark {
  width: 52px;
  height: 52px;
}

.footer-brand p {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.9;
  text-align: left;
}

.footer-meta {
  display: grid;
  max-width: 470px;
  gap: 10px;
  margin: 24px 0 0;
}

.footer-meta div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-meta dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
}

.footer-meta dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.footer-meta a {
  color: #fff;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 28px;
  justify-content: start;
  margin: 0;
}

.footer-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 900;
}

.footer-nav a::after {
  margin-left: auto;
  color: #ff2aa9;
  content: "→";
}

.footer-copy {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 900;
  text-align: left;
}

.vertical-label {
  position: absolute;
  top: clamp(120px, 12vw, 168px);
  left: clamp(20px, 5vw, 82px);
  display: grid;
  gap: 6px;
  color: #e22682;
  font-family: "Anton", Impact, sans-serif;
  font-size: 16px;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
  z-index: 2;
}

.vertical-label::before {
  display: block;
  width: 1px;
  height: 82px;
  margin: 0 auto 8px;
  background: #e22682;
  content: "";
}

.price-page-hero,
.feature-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(144px, 15vw, 198px) clamp(20px, 6vw, 82px) clamp(72px, 8vw, 116px) clamp(76px, 12vw, 190px);
}

.price-page-hero {
  background: #fff;
}

.price-page-hero::after,
.feature-gallery-section::before,
.price-page-table-section::before {
  position: absolute;
  right: -0.05em;
  top: 0.05em;
  color: rgba(226, 0, 127, 0.07);
  content: "PRICE";
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(100px, 20vw, 310px);
  line-height: 0.9;
  pointer-events: none;
}

.price-page-hero > *:not(.vertical-label),
.price-page-intro,
.price-page-table-section > *,
.feature-page-hero > * {
  position: relative;
  z-index: 1;
}

.price-page-hero h1,
.feature-page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 8vw, 118px);
  line-height: 1;
}

.price-page-hero p:last-child,
.feature-page-copy p:last-child {
  max-width: 840px;
  margin: 22px 0 0;
  color: #37313b;
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 800;
  line-height: 2;
}

.price-page-intro {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.price-page-number span {
  color: #d72280;
  font-weight: 900;
}

.price-page-number b {
  display: block;
  color: #d72280;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(120px, 14vw, 210px);
  font-weight: 400;
  line-height: 0.85;
}

.price-page-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.price-page-copy h2 {
  margin: 0;
  color: #050308;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.45;
}

.price-page-copy h2 strong {
  background: linear-gradient(transparent 58%, #fff100 58%);
  font-size: 1.08em;
}

.price-page-copy p {
  margin: 0;
  color: #403943;
  font-size: 16px;
  font-weight: 800;
  line-height: 2.05;
}

.price-media-section,
.price-ops-appeal {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto clamp(62px, 8vw, 108px);
  padding: 0 clamp(20px, 5vw, 44px);
}

.price-media-section {
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
}

.price-media-copy h2,
.price-ops-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.22;
}

.price-media-copy p:last-child,
.price-ops-copy p:last-child {
  margin: 20px 0 0;
  color: #49414d;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
}

.price-media-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 0%, rgba(21, 220, 116, 0.2), transparent 28%),
    linear-gradient(135deg, #09070d 0%, #241020 58%, #3f1432 100%);
  box-shadow: 0 28px 74px rgba(12, 8, 16, 0.18);
}

.media-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.media-panel-head span {
  color: #ff8bd2;
  font-size: 14px;
  font-weight: 900;
}

.media-panel-head b {
  color: rgba(255, 255, 255, 0.12);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.8;
}

.media-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.media-logo-card {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.media-logo-card small {
  color: #15dc74;
  font-size: 12px;
  font-weight: 900;
}

.media-logo-card strong {
  display: block;
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.35;
}

.media-logo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.media-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.media-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #07110c;
  background: #15dc74;
  font-size: 13px;
  font-weight: 900;
}

.media-flow i {
  color: #ff3ab2;
  font-style: normal;
  font-weight: 900;
}

.price-ops-appeal {
  grid-template-columns: minmax(360px, 0.72fr) minmax(480px, 1.28fr);
  padding-top: clamp(18px, 3vw, 36px);
}

.price-ops-ladder {
  position: relative;
  display: grid;
  gap: 14px;
}

.price-ops-ladder::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 34px;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, #ff2fd9, #15dc74);
}

.price-ops-ladder > div {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(120px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 18px 22px 18px 0;
  border-bottom: 1px solid rgba(226, 0, 127, 0.12);
}

.price-ops-ladder span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ff2fd9, #ff3b73);
  font-family: "Anton", Impact, sans-serif;
  font-size: 32px;
  font-weight: 400;
  box-shadow: 0 14px 30px rgba(226, 0, 127, 0.18);
}

.price-ops-ladder b {
  color: #141018;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 900;
  line-height: 1.45;
}

.price-ops-ladder p {
  margin: 0;
  color: #5a5360;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.85;
}

.price-page-table-section {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}

.price-page-table-section::before {
  content: "PRICE";
  top: 24px;
}

.price-table-headline {
  max-width: 1180px;
  margin: 0 auto 24px;
  text-align: center;
}

.price-table-headline span,
.feature-gallery-head span,
.price-page-payment span,
.price-page-performance-inner span {
  color: #e22682;
  font-size: 14px;
  font-weight: 900;
}

.price-table-headline h2,
.feature-gallery-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.08;
}

.price-table-scroll {
  max-width: min(1500px, calc(100vw - 56px));
  margin: 0 auto;
  overflow-x: auto;
  padding: 28px 0 16px;
}

.price-plan-table {
  width: 100%;
  min-width: 1180px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(226, 0, 127, 0.14);
}

.price-table-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.95fr) repeat(6, minmax(126px, 1fr));
}

.price-table-row > div {
  display: grid;
  min-height: 74px;
  align-items: center;
  justify-items: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(226, 0, 127, 0.13);
  border-bottom: 1px solid rgba(226, 0, 127, 0.13);
  color: #241f28;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.price-table-row > div:first-child {
  justify-items: start;
  padding-left: 24px;
  color: #0d0a10;
}

.price-table-row > div:nth-child(6) {
  background: rgba(255, 45, 143, 0.075);
}

.price-table-top > div {
  min-height: 118px;
  color: #fff;
  background: #d72583;
}

.price-table-top > div:first-child,
.price-table-top > div:nth-child(2),
.price-table-top > div:nth-child(3),
.price-table-top > div:nth-child(4),
.price-table-top > div:nth-child(5),
.price-table-top > div:nth-child(7) {
  background: #df74ad;
}

.price-table-row small {
  display: block;
  margin-top: 4px;
  color: #8a526f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
}

.price-table-media-row strong {
  color: #d72280;
  font-size: 13px;
  line-height: 1.55;
}

.price-table-top small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.price-table-top b {
  display: block;
  margin-top: 4px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(24px, 2.15vw, 38px);
  font-weight: 400;
  line-height: 1;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.price-table-price strong {
  color: #e22682;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(28px, 2.3vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.price-table-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #ff2fd9, #ff3e79);
  box-shadow: 0 12px 24px rgba(226, 0, 127, 0.16);
  font-size: 13px;
  font-weight: 900;
}

.price-page-performance {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background: #fff;
}

.price-page-performance-inner {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.price-page-performance-inner img {
  display: block;
  width: 100%;
}

.price-page-performance-inner h2 {
  margin: 10px 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.3;
}

.price-page-performance-inner p,
.price-page-payment p {
  margin: 0;
  color: #49414d;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
}

.price-page-payment {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto clamp(70px, 8vw, 116px);
  padding: clamp(28px, 4vw, 46px) clamp(26px, 5vw, 64px);
  border-radius: 999px;
  background: linear-gradient(90deg, #fff0f8, #fff);
  box-shadow: inset 0 0 0 1px rgba(226, 0, 127, 0.12);
}

.price-page-payment h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 44px);
}

.price-page-payment strong {
  color: #d72280;
}

.feature-page-hero {
  display: block;
  min-height: clamp(720px, 88vh, 940px);
  padding: clamp(146px, 12vw, 190px) clamp(22px, 6vw, 92px) clamp(68px, 7vw, 108px);
  color: #171219;
  background:
    linear-gradient(180deg, #fff 0%, #fff7fb 56%, #fff 100%);
}

.feature-page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 28%, rgba(255, 255, 255, 0.26) 47%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(255, 247, 251, 0.58) 0%, rgba(255, 247, 251, 0.05) 38%, rgba(255, 255, 255, 0.62) 100%);
  content: "";
  pointer-events: none;
}

.feature-page-hero::after {
  position: absolute;
  right: -0.02em;
  bottom: -0.08em;
  z-index: 2;
  color: rgba(226, 0, 127, 0.045);
  content: "FEATURE";
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(106px, 18vw, 280px);
  line-height: 1;
  pointer-events: none;
}

.feature-page-hero > .vertical-label {
  position: absolute;
  top: clamp(148px, 12vw, 188px);
  left: clamp(18px, 4vw, 76px);
  z-index: 4;
}

.feature-page-copy {
  position: relative;
  z-index: 4;
  max-width: min(620px, 42vw);
  margin-left: clamp(28px, 5vw, 86px);
}

.feature-page-hero h1 {
  max-width: 620px;
  color: #141018;
  font-size: clamp(42px, 4.7vw, 82px);
  line-height: 1.05;
  text-shadow: 0 10px 28px rgba(226, 0, 127, 0.08);
}

.feature-page-copy p:last-child {
  max-width: 580px;
  color: #4d424c;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 2.05;
}

.feature-page-copy .kicker {
  color: #ef2a93;
}

.feature-page-visual {
  position: absolute;
  inset: clamp(80px, 5.6vw, 96px) 0 0 0;
  z-index: 0;
  overflow: hidden;
}

.feature-page-visual::before {
  display: none;
}

.feature-page-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
}

.feature-gallery-section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
  background: #fff;
}

.feature-gallery-section::before {
  content: "FEATURE";
  top: 28px;
}

.feature-gallery-head {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto clamp(32px, 5vw, 64px);
}

.feature-gallery-head p {
  max-width: 840px;
  margin: 18px 0 0;
  color: #4c4550;
  font-weight: 800;
  line-height: 1.9;
}

.feature-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: 1220px;
  margin: 0 auto;
}

.uc-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #f1f1f3 0%, #fff7f6 100%);
  box-shadow: 0 18px 42px rgba(27, 18, 30, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.uc-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(226, 0, 127, 0.18);
}

.uc-feature-image {
  position: relative;
  display: grid;
  height: 170px;
  overflow: hidden;
  place-items: center;
  background: #ededf0;
}

.uc-feature-image::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 22%, rgba(255, 47, 217, 0.18), transparent 26%);
  content: "";
}

.uc-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.uc-feature-card:nth-child(1) .uc-feature-image img {
  object-position: center 14%;
}

.uc-feature-card:nth-child(1) .uc-feature-image {
  background: #f7f5f6;
}

.uc-feature-card:nth-child(1) .uc-feature-image img {
  transform: scale(1.03);
}

.uc-feature-card:nth-child(-n + 3) .uc-feature-image {
  height: 170px;
  aspect-ratio: auto;
}

.uc-feature-card:nth-child(-n + 3) .uc-feature-image img {
  object-position: center center;
}

.uc-feature-card:nth-child(2) .uc-feature-image img,
.uc-feature-card:nth-child(7) .uc-feature-image img {
  object-position: center 14%;
}

.uc-feature-card:nth-child(2) .uc-feature-image img {
  transform: scale(1.03);
}

.uc-feature-card:nth-child(3) .uc-feature-image img,
.uc-feature-card:nth-child(8) .uc-feature-image img {
  object-position: center 14%;
}

.uc-feature-card:nth-child(3) .uc-feature-image img {
  transform: scale(1.04);
}

.uc-feature-card:nth-child(4) .uc-feature-image img {
  object-position: center 22%;
  transform: scale(1.03);
}

.uc-feature-image.is-design-edit::after,
.uc-feature-image.is-room-schedule::after,
.uc-feature-image.is-pickup-new::after,
.uc-feature-image.is-label-manage::after,
.uc-feature-image.is-media-link::after,
.uc-feature-image.is-page-banner::after,
.uc-feature-image.is-shop-info::after,
.uc-feature-image.is-price-manage::after {
  display: none;
}

.uc-feature-card:nth-child(5) .uc-feature-image img,
.uc-feature-card:nth-child(6) .uc-feature-image img,
.uc-feature-card:nth-child(7) .uc-feature-image img,
.uc-feature-card:nth-child(8) .uc-feature-image img {
  object-position: center center;
  transform: scale(1.02);
}

.uc-feature-card h2 {
  margin: 16px 16px 7px;
  color: #0f0b13;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.35;
}

.uc-feature-card p {
  margin: 0 16px 18px;
  color: #423b45;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.uc-feature-card-media-copy {
  background: #fff;
}

.uc-feature-card-media-copy .uc-feature-image {
  height: clamp(252px, 18.5vw, 312px);
  background: #f8f6f7;
}

.uc-feature-card-media-copy .uc-feature-image::after {
  display: none;
}

.uc-feature-card-media-copy .uc-feature-image img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}

.uc-feature-card-media-copy h2,
.uc-feature-card-media-copy p {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.feature-cursor,
.feature-arrow {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  min-width: 54px;
  height: 36px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #ff2fd9, #ff3e79);
  box-shadow: 0 12px 22px rgba(226, 0, 127, 0.24);
  font-size: 11px;
  font-weight: 900;
}

.feature-arrow {
  right: 50%;
  bottom: 50%;
  width: 58px;
  min-width: 58px;
  height: 58px;
  font-size: 32px;
  transform: translate(50%, 50%);
}

.feature-mini-phone {
  position: absolute;
  top: 12px;
  left: 24px;
  z-index: 2;
  width: 64px;
  height: 126px;
  border: 6px solid #19151d;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 47, 217, 0.1)),
    url("../img/salon-work-pink.png") center / cover no-repeat;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.is-label span,
.is-price span,
.is-social i,
.is-map span {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  color: #fff;
  background: #e22682;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(226, 0, 127, 0.2);
}

.is-label span:nth-of-type(1) { left: 18px; bottom: 42px; }
.is-label span:nth-of-type(2) { left: 100px; bottom: 42px; }
.is-label span:nth-of-type(3) { right: 18px; bottom: 42px; }
.is-price span:nth-of-type(1) { left: 28px; top: 28px; background: #ff9ad0; }
.is-price span:nth-of-type(2) { left: 28px; top: 62px; }
.is-price span:nth-of-type(3) { left: 28px; top: 96px; background: #f5b8d8; color: #4c253c; }

.is-social i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: #06c755;
  font-size: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.is-social i:nth-of-type(1) { left: 22px; bottom: 24px; }
.is-social i:nth-of-type(2) { right: 22px; top: 20px; color: #000; }
.is-social i:nth-of-type(3) { right: 22px; bottom: 24px; color: #1d8fff; }
.is-social i:nth-of-type(4) { left: 22px; top: 20px; color: #e22682; }

.is-map span {
  width: 12px;
  min-height: 12px;
  padding: 0;
  border-radius: 50%;
}

.is-map span:nth-of-type(1) { top: 46px; left: 48%; }
.is-map span:nth-of-type(2) { top: 82px; left: 58%; }
.is-map span:nth-of-type(3) { top: 116px; left: 42%; }

.feature-ops-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(78px, 9vw, 132px) clamp(20px, 6vw, 82px) clamp(92px, 10vw, 152px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 47, 217, 0.18), transparent 30%),
    linear-gradient(145deg, #151018 0%, #050407 100%);
}

.feature-ops-section + .subpage-cta {
  margin-top: clamp(58px, 7vw, 108px);
}

.feature-ops-copy {
  max-width: 680px;
}

.feature-ops-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 68px);
  line-height: 1.22;
}

.feature-ops-copy p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 2;
}

.feature-ops-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-ops-list span {
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
}

.feature-ops-list span::before {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-right: 12px;
  border-radius: 50%;
  background: #e22682;
  content: "✓";
  font-size: 13px;
}

@media (max-width: 1180px) {
  .feature-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-page-performance-inner,
  .feature-page-hero,
  .feature-ops-section,
  .price-media-section,
  .price-ops-appeal,
  .value-compare,
  .price-page-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .vertical-label {
    display: none;
  }

  .price-page-hero,
  .feature-page-hero {
    padding: 128px 20px 70px;
  }

  .feature-page-hero {
    min-height: 760px;
    padding-top: 118px;
    background: linear-gradient(180deg, #fff7fb 0%, #fff 100%);
  }

  .feature-page-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 34%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0.9) 100%);
  }

  .feature-page-copy {
    max-width: 100%;
    margin-left: 0;
  }

  .feature-page-hero h1 {
    max-width: 420px;
    font-size: clamp(42px, 12vw, 66px);
    line-height: 1.02;
  }

  .feature-page-copy p:last-child {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.85;
  }

  .feature-page-visual {
    inset: 300px -170px 0 -120px;
  }

  .feature-page-visual img {
    object-position: 54% center;
  }

  .price-page-intro {
    grid-template-columns: 1fr;
    padding-right: 20px;
    padding-left: 20px;
  }

  .price-media-section,
  .price-ops-appeal {
    padding-right: 18px;
    padding-left: 18px;
  }

  .value-compare {
    margin-right: 18px;
    margin-left: 18px;
    padding: 28px 20px;
    border-radius: 30px;
  }

  .automation-image-section {
    padding-right: 14px;
  }

  .automation-visual {
    margin: 0 -12px -12px;
  }

  .value-copy h2 {
    font-size: clamp(28px, 8.6vw, 42px);
  }

  .value-chart {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .value-bars {
    min-width: 620px;
  }

  .value-saving {
    min-width: 620px;
  }

  .automation-bar,
  .automation-monthly {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .automation-bar b {
    text-align: left;
  }

  .automation-monthly i {
    transform: rotate(90deg);
  }

  .price-media-panel {
    border-radius: 30px;
  }

  .media-logo-grid {
    grid-template-columns: 1fr;
  }

  .media-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-ops-ladder > div {
    grid-template-columns: 62px 1fr;
    gap: 14px;
    padding-right: 0;
  }

  .price-ops-ladder p {
    grid-column: 2;
  }

  .price-ops-ladder span {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }

  .price-page-number b {
    font-size: 110px;
  }

  .price-page-performance-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .price-page-performance-inner img {
    min-width: 680px;
  }

  .price-page-performance-inner {
    overflow-x: auto;
  }

  .price-page-payment {
    grid-template-columns: 1fr;
    margin-right: 18px;
    margin-left: 18px;
    border-radius: 28px;
  }

  .feature-gallery {
    grid-template-columns: 1fr;
  }

  .uc-feature-image {
    height: 190px;
  }

  .feature-ops-list {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 56px 20px 26px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-copy {
    text-align: center;
  }
}

/* Final mobile polish: make the LP feel designed for phones, not only stacked. */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .page {
    overflow: hidden;
  }

  .site-header {
    min-height: 72px;
    padding: 12px 14px;
    background: rgba(9, 7, 12, 0.9);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 22px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.11);
  }

  .brand-text span {
    font-size: clamp(25px, 8.2vw, 34px);
    line-height: 0.9;
  }

  .brand-text small {
    margin-top: 4px;
    font-size: 8px;
  }

  .header-phone-mobile {
    min-height: 40px;
    padding: 0 16px;
    border-width: 2px;
    box-shadow:
      0 0 0 5px rgba(20, 199, 85, 0.14),
      0 16px 34px rgba(20, 199, 85, 0.34);
  }

  .nav-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .global-nav {
    top: 78px;
    right: 12px;
    left: 12px;
    width: auto;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
      radial-gradient(circle at 88% 100%, rgba(255, 47, 217, 0.2), transparent 34%),
      rgba(8, 6, 12, 0.94);
  }

  .global-nav .nav-phone,
  .global-nav .nav-cta {
    min-height: 56px;
    border-radius: 999px;
  }

  .hero {
    min-height: auto;
    overflow: hidden;
  }

  .hero-bg {
    inset: -20px;
    background-position: 62% center;
  }

  .hero::after {
    right: -62vw;
    bottom: -16px;
    width: 132vw;
    height: 160px;
    opacity: 0.88;
  }

  .hero-inner {
    display: block;
    padding: 102px 16px 60px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-price {
    display: grid;
    gap: 9px;
    margin-bottom: 6px;
  }

  .hero-price-kicker {
    padding: 7px 13px;
    font-size: 13px;
  }

  .hero-price-row {
    align-items: flex-end;
    gap: 7px;
    font-size: clamp(22px, 6vw, 28px);
    line-height: 0.95;
  }

  .hero-price-row b {
    font-size: clamp(86px, 25vw, 118px);
    text-shadow: 0 0 24px rgba(255, 47, 217, 0.36);
  }

  .hero-price-row small {
    padding-bottom: 7px;
    font-size: clamp(22px, 5.7vw, 30px);
  }

  .hero-sub {
    margin: 0 0 28px;
    font-size: 13px;
  }

  .hero-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-tags span {
    min-width: 0;
    padding: 10px 8px;
    font-size: 15px;
    line-height: 1.25;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(42px, 12.2vw, 58px);
    line-height: 1.08;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 18px;
    font-size: 14px;
    line-height: 2;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 62px;
    font-size: 15px;
  }

  .hero-actions .btn-ghost {
    color: #fff;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
      rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  }

  .hero-visual {
    display: grid;
    gap: 12px;
    min-height: 0;
    margin: 34px -16px 0;
    padding: 0 0 4px;
    overflow: visible;
  }

  .hero-device-art {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    width: calc(100% + 28px);
    margin: 0 -14px 0 0;
    animation: none;
    filter:
      drop-shadow(0 20px 34px rgba(0, 0, 0, 0.45))
      drop-shadow(0 0 24px rgba(255, 47, 217, 0.16));
    transform: none;
  }

  .hero-device-art img {
    width: 100%;
  }

  .hero-offer {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: auto;
    margin: 0 16px;
    padding: 22px 18px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 65, 68, 0.95), rgba(236, 48, 211, 0.95));
    box-shadow:
      0 20px 44px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  }

  .hero-offer p {
    margin-bottom: 15px;
    font-size: clamp(20px, 6.3vw, 25px);
    line-height: 1.5;
  }

  .hero-offer a {
    min-height: 56px;
    font-size: 15px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100% - 28px);
    margin: -22px auto 0;
    padding: 0;
  }

  .proof-pill {
    justify-content: flex-start;
    min-height: 58px;
    padding: 12px 18px;
    border-color: rgba(255, 47, 174, 0.34);
    text-align: left;
    box-shadow: 0 16px 32px rgba(226, 0, 127, 0.13);
  }

  .proof-pill b {
    min-width: 74px;
    margin-right: 9px;
    font-size: 1.14em;
  }

  .section-white,
  .section-dark {
    padding: 82px 18px;
  }

  .section-word {
    top: 38px;
    left: auto;
    right: -0.12em;
    font-size: 94px;
    opacity: 1;
    transform: none;
  }

  .intro-inner {
    text-align: left;
  }

  .kicker {
    margin-bottom: 12px;
    font-size: 16px;
  }

  h2 {
    font-size: clamp(34px, 9.4vw, 46px);
    line-height: 1.25;
  }

  .intro p:not(.kicker),
  .section-head p,
  .split-copy p,
  .cms-copy p,
  .contact-copy p {
    font-size: 14px;
    line-height: 2;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2 span {
    font-size: clamp(56px, 19vw, 86px);
    line-height: 0.92;
  }

  .works-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .work-phone {
    border-width: 7px;
    border-radius: 24px;
  }

  .work-phone img {
    height: 258px;
  }

  .work-phone span {
    min-height: 34px;
    font-size: 11px;
  }

  .reason-grid,
  .solution-grid,
  .operation-grid,
  .flow-grid {
    gap: 14px;
  }

  .reason-card,
  .solution-card,
  .operation-card,
  .flow-step {
    min-height: auto;
    border-radius: 22px;
  }

  .reason-card img {
    height: 172px;
  }

  .reason-card > div,
  .solution-card,
  .operation-card,
  .flow-step {
    padding: 22px;
  }

  .reason-card h3,
  .solution-card h3,
  .operation-card h3,
  .flow-step h3 {
    font-size: 21px;
    line-height: 1.45;
  }

  .split,
  .pain-inner,
  .cms-show-inner,
  .contact-grid,
  .home-news-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .function-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .function-list div {
    min-height: 62px;
    padding: 12px 14px;
    border-radius: 999px;
  }

  .function-list b {
    min-width: 38px;
    font-size: 25px;
  }

  .pain-visual {
    margin: 0 -6px;
    border-radius: 26px;
  }

  .pain-visual img {
    min-height: 280px;
  }

  .price-reason {
    gap: 12px;
    margin-bottom: 44px;
  }

  .price-index span,
  .cost-index span {
    margin-bottom: -6px;
    font-size: 14px;
  }

  .price-index b,
  .cost-index b {
    font-size: 104px;
  }

  .price-catch h2,
  .cost-copy h2 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.45;
  }

  .price-story,
  .cost-copy p {
    font-size: 14px;
    line-height: 2;
  }

  .price-visual {
    margin: 0 -2px 52px;
    padding: 0;
    background: transparent;
  }

  .price-visual::before,
  .price-visual::after {
    display: none;
  }

  .price-visual-heading {
    margin-bottom: 10px;
    text-align: center;
  }

  .price-visual-heading h3 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.95;
  }

  .price-compare-scroll {
    margin: 0 -18px;
    padding: 2px 18px 10px;
  }

  .price-visual .price-compare-image {
    width: 820px;
  }

  .value-compare,
  .cost-reason {
    margin-right: 0;
    margin-left: 0;
    padding: 26px 20px;
    border-radius: 28px;
  }

  .automation-image-section {
    gap: 20px;
    padding: 28px 14px 14px;
  }

  .automation-visual {
    margin: 0;
  }

  .automation-visual img {
    width: 100%;
    border-radius: 18px;
  }

  .plan-flow {
    gap: 9px;
    margin: 0 0 34px;
    padding: 0;
    background: transparent;
  }

  .plan-flow span {
    min-height: 58px;
    border-radius: 999px;
  }

  .plan-compare,
  .company-table,
  .price-table-scroll {
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 10px;
    overflow-x: auto;
  }

  .compare-row {
    min-width: 880px;
  }

  .company-row {
    min-width: 720px;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 8px 16px;
    align-items: center;
  }

  .flow-step b {
    grid-row: 1 / span 3;
    font-size: 48px;
  }

  .flow-icon {
    width: 54px;
    height: 54px;
    margin-top: 0;
  }

  .flow-step h3 {
    margin: 0;
  }

  .flow-step p {
    grid-column: 2;
    line-height: 1.75;
  }

  .flow-payment {
    margin-top: 20px;
  }

  .faq-topics {
    gap: 8px;
  }

  .faq-topics span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-list details {
    border-radius: 18px;
  }

  .faq-list summary {
    min-height: 68px;
    padding: 17px 48px 17px 16px;
    font-size: 14px;
    line-height: 1.6;
  }

  .faq-list p {
    padding: 0 16px 20px 64px;
    font-size: 13px;
  }

  .home-news-copy h2 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .home-news-list a {
    padding: 22px 36px 22px 0;
  }

  .contact-grid {
    gap: 26px;
  }

  .tel-link {
    width: 100%;
    margin-top: 22px;
  }

  .contact-form {
    gap: 13px;
    padding: 22px 16px;
    border-radius: 24px;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 12px;
    padding: 13px 14px;
  }

  .contact-form textarea {
    min-height: 156px;
  }

  .contact-line-panel {
    gap: 18px;
    padding: 26px 18px;
    border-radius: 26px;
  }

  .contact-line-panel h3 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.05;
  }

  .contact-line-panel p {
    line-height: 1.85;
  }

  .line-consult-steps {
    grid-template-columns: 1fr;
  }

  .line-consult-steps span {
    min-height: 74px;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .line-main-cta {
    width: 100%;
    min-height: 62px;
  }

  .footer {
    padding: 64px 20px 30px;
  }

  .footer::before {
    left: -0.1em;
    font-size: 132px;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.95;
  }

  .footer-meta {
    max-width: none;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-nav a {
    min-height: 46px;
  }

  .line-widget {
    right: 10px;
    bottom: 82px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 116px);
  }

  .line-body {
    max-height: min(420px, calc(100vh - 230px));
  }

  .line-bubble {
    right: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 420px) {
  .brand-text span {
    font-size: 25px;
  }

  .header-phone-mobile {
    min-width: 82px;
    padding: 0 13px;
  }

  .hero-inner {
    padding-top: 98px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(40px, 12.5vw, 52px);
  }

  .hero-price-row b {
    font-size: clamp(82px, 25.5vw, 108px);
  }

  .works-row {
    gap: 10px;
  }

  .work-phone img {
    height: 230px;
  }

  .proof-pill {
    font-size: 13px;
  }

  .proof-pill b {
    min-width: 68px;
  }

  .section-word {
    font-size: 78px;
  }
}

/* Emergency readability pass: prevent heading/background color collision. */
.section-dark h2,
.section-dark h3,
.section-dark .operation-card h3,
.section-dark .flow-step h3,
.section-dark .contact-copy h2,
.value-compare-automation h2,
.cost-reason h2 {
  color: #fff;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
}

.section-dark p,
.section-dark .operation-card p,
.section-dark .section-head p,
.value-compare-automation p,
.cost-reason p {
  color: rgba(255, 255, 255, 0.84);
}

.section-dark mark,
.value-compare-automation mark,
.cost-reason mark,
.price-catch mark,
.value-compare-system mark {
  display: inline;
  padding: 0.02em 0.12em 0.05em;
  border-radius: 0.08em;
  color: #050308 !important;
  background: #fff100 !important;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-shadow: none;
}

.section-word {
  pointer-events: none;
}

@media (max-width: 760px) {
  .section-white,
  .section-dark {
    isolation: isolate;
  }

  .section-word {
    z-index: 0;
    color: rgba(226, 0, 127, 0.045);
    opacity: 1;
    mix-blend-mode: normal;
  }

  .section-white > *:not(.section-word),
  .section-dark > *:not(.section-word),
  .split,
  .pain-inner,
  .section-head,
  .price-reason,
  .value-compare,
  .cost-reason,
  .contact-grid,
  .home-news-inner {
    position: relative;
    z-index: 2;
  }

  .split-copy h2,
  .pain-copy h2,
  .operation .section-head h2,
  .price-catch h2,
  .value-copy h2,
  .cost-copy h2,
  .home-news-copy h2,
  .contact-copy h2 {
    color: #111017;
    text-shadow: none;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .section-dark .section-head h2,
  .section-dark .operation-card h3,
  .section-dark .flow-step h3,
  .value-compare-automation .value-copy h2,
  .cost-reason .cost-copy h2,
  .contact-copy h2 {
    color: #fff;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
  }

  .split-copy h2 {
    font-size: clamp(34px, 8.6vw, 44px);
    line-height: 1.26;
  }

  .pain-copy h2 {
    font-size: clamp(34px, 8.5vw, 44px);
    line-height: 1.28;
  }

  .operation .section-head h2 {
    max-width: 100%;
    font-size: clamp(31px, 8.2vw, 42px);
    line-height: 1.34;
  }

  .price-catch h2,
  .value-copy h2,
  .cost-copy h2 {
    max-width: 100%;
    font-size: clamp(29px, 7.7vw, 38px);
    line-height: 1.44;
  }

  .contact-copy h2 {
    max-width: 100%;
    font-size: clamp(38px, 9.4vw, 48px);
    line-height: 1.2;
  }

  .function-list div,
  .faq-list details,
  .home-news-list article,
  .solution-card,
  .operation-card,
  .flow-step {
    position: relative;
    z-index: 2;
  }

  .function-list span,
  .faq-list summary,
  .home-news-list h3,
  .operation-card p,
  .solution-card p,
  .flow-step p {
    color: inherit;
  }

  .section-dark .operation-card,
  .section-dark .flow-step,
  .value-compare-automation,
  .cost-reason {
    border-color: rgba(255, 255, 255, 0.18);
    background-blend-mode: normal;
  }
}

/* Final desktop balance: keep big Ultra-style type, but give it breathing room. */
@media (min-width: 761px) {
  .section-white .kicker,
  .price .kicker,
  .home-news .kicker,
  .price-page-value .kicker {
    color: #e22682;
  }

  .section-head-light .kicker,
  .contact .kicker,
  .cost-copy .kicker,
  .value-compare-automation .kicker {
    color: #ff2fb1;
  }

  .split {
    max-width: 1320px;
    grid-template-columns: minmax(520px, 0.92fr) minmax(620px, 1.08fr);
    gap: clamp(46px, 5vw, 84px);
    align-items: center;
  }

  .split-copy h2 {
    max-width: 660px;
    font-size: clamp(44px, 4.1vw, 66px);
    line-height: 1.23;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .split-copy p:not(.kicker) {
    max-width: 660px;
    color: #37313b;
  }

  .function-list {
    gap: 14px;
  }

  .function-list div {
    min-height: 74px;
    padding: 14px 18px;
  }

  .function-list span {
    line-height: 1.45;
  }

  .pain-inner {
    max-width: 1360px;
    grid-template-columns: minmax(560px, 0.95fr) minmax(560px, 1.05fr);
    gap: clamp(52px, 6vw, 92px);
    align-items: center;
  }

  .pain-copy h2 {
    max-width: 670px;
    font-size: clamp(48px, 4.2vw, 70px);
    line-height: 1.24;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .pain-copy p:not(.kicker) {
    max-width: 650px;
    color: #37313b;
  }

  .pain-visual {
    align-self: center;
  }

  .pain-visual img {
    min-height: 390px;
  }

  .operation .section-head {
    max-width: 1180px;
    text-align: left;
  }

  .operation .section-head h2 {
    max-width: 1120px;
    font-size: clamp(44px, 4vw, 66px);
    line-height: 1.24;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .operation .section-head p {
    max-width: 980px;
  }

  .operation-card h3 {
    line-height: 1.38;
  }

  .price-reason {
    max-width: 1360px;
    grid-template-columns: minmax(170px, 0.28fr) minmax(520px, 0.9fr) minmax(400px, 0.82fr);
    gap: clamp(42px, 5vw, 78px);
    align-items: center;
  }

  .price-catch h2 {
    max-width: 660px;
    font-size: clamp(42px, 3.9vw, 62px);
    line-height: 1.42;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .price-story {
    max-width: 480px;
    color: #2b2630;
  }

  .price-catch mark,
  .price-story span,
  .price-story strong,
  .company-row strong,
  .cost-copy mark,
  .value-copy mark {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .value-compare {
    max-width: 1360px;
    grid-template-columns: minmax(500px, 0.9fr) minmax(560px, 1.1fr);
    gap: clamp(44px, 5vw, 78px);
  }

  .value-copy h2 {
    max-width: 640px;
    font-size: clamp(38px, 3.15vw, 54px);
    line-height: 1.3;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .value-copy p:last-child {
    max-width: 610px;
  }

  .value-compare-system .value-copy h2 {
    max-width: 620px;
    font-size: clamp(36px, 2.9vw, 52px);
    line-height: 1.34;
  }

  .value-compare-system .value-copy mark {
    color: #050308;
  }

  .cost-reason {
    max-width: 1360px;
    grid-template-columns: minmax(140px, 0.23fr) minmax(500px, 0.88fr) minmax(470px, 0.89fr);
    gap: clamp(38px, 4.8vw, 72px);
    padding: clamp(44px, 5vw, 74px);
  }

  .cost-copy h2 {
    max-width: 600px;
    font-size: clamp(38px, 3.4vw, 56px);
    line-height: 1.34;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .cost-copy mark,
  .value-compare-automation .value-copy mark {
    color: #050308;
    background: linear-gradient(transparent 52%, #fff100 52%);
  }

  .cost-board {
    max-width: 520px;
    justify-self: end;
  }

  .automation-image-section {
    grid-template-columns: minmax(500px, 0.84fr) minmax(610px, 1.16fr);
    gap: clamp(34px, 4vw, 62px);
    align-items: center;
    padding-left: clamp(46px, 5vw, 78px);
  }

  .automation-image-section .value-copy h2 {
    max-width: 570px;
    font-size: clamp(36px, 2.9vw, 52px);
    line-height: 1.34;
  }

  .automation-visual {
    margin-top: -8px;
  }

  .contact-grid {
    max-width: 1280px;
    grid-template-columns: minmax(560px, 0.92fr) minmax(560px, 1.08fr);
    gap: clamp(52px, 6vw, 84px);
    align-items: center;
  }

  .contact-copy h2 {
    max-width: 640px;
    font-size: clamp(48px, 4vw, 66px);
    line-height: 1.22;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .contact-copy p:not(.kicker) {
    max-width: 620px;
  }

  .home-news-inner {
    max-width: 1280px;
    grid-template-columns: minmax(360px, 0.72fr) minmax(640px, 1.28fr);
    gap: clamp(54px, 7vw, 96px);
  }

  .home-news-copy h2 {
    font-size: clamp(56px, 6vw, 96px);
    line-height: 0.98;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .split,
  .pain-inner,
  .contact-grid,
  .home-news-inner,
  .value-compare {
    grid-template-columns: 1fr;
    max-width: 860px;
  }

  .price-reason,
  .cost-reason {
    grid-template-columns: 1fr;
    max-width: 920px;
  }

  .price-index,
  .cost-index {
    display: flex;
    gap: 18px;
    align-items: flex-end;
  }

  .price-index b,
  .cost-index b {
    font-size: 112px;
  }

  .cost-board,
  .automation-visual {
    justify-self: stretch;
  }
}

.phrase-keep {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .section-white .kicker,
  .price .kicker,
  .home-news .kicker,
  .price-page-value .kicker,
  .section-head-light .kicker,
  .contact .kicker,
  .cost-copy .kicker,
  .value-compare-automation .kicker {
    color: #e22682;
  }

  .price-catch h2 {
    font-size: clamp(29px, 7.5vw, 38px);
    line-height: 1.5;
  }

  .price-catch mark,
  .cost-copy mark,
  .value-copy mark {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .value-copy h2,
  .cost-copy h2 {
    font-size: clamp(29px, 8vw, 38px);
    line-height: 1.38;
  }

  .value-compare-automation .value-copy mark {
    white-space: nowrap;
  }

  .operation .section-head h2 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.28;
  }

  .contact-copy h2 {
    max-width: 100%;
    font-size: clamp(40px, 10vw, 52px);
    line-height: 1.18;
  }
}

/* Final contrast lock. This must stay last. */
.section-word {
  color: rgba(226, 0, 127, 0.04) !important;
  mix-blend-mode: normal !important;
}

.section-dark .section-word,
.value-compare-automation::before,
.cost-reason::before {
  color: rgba(255, 255, 255, 0.035) !important;
}

.section-dark h2,
.section-dark h3,
.section-dark .section-head h2,
.section-dark .operation-card h3,
.section-dark .flow-step h3,
.contact .contact-copy h2,
.cost-reason .cost-copy h2,
.value-compare-automation .value-copy h2 {
  color: #fff !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
}

.section-dark p,
.section-dark .section-head p,
.section-dark .operation-card p,
.section-dark .flow-step p,
.contact .contact-copy p,
.cost-reason .cost-copy p,
.value-compare-automation .value-copy p {
  color: rgba(255, 255, 255, 0.86) !important;
}

.section-dark mark,
.cost-reason mark,
.value-compare-automation mark,
.price-catch mark,
.value-compare-system mark {
  display: inline !important;
  padding: 0.02em 0.14em 0.06em !important;
  border-radius: 0.08em !important;
  color: #050308 !important;
  background: #fff100 !important;
  box-decoration-break: clone !important;
  -webkit-box-decoration-break: clone !important;
  text-shadow: none !important;
}

@media (min-width: 761px) {
  .split-copy h2,
  .pain-copy h2,
  .operation .section-head h2,
  .price-catch h2,
  .value-copy h2,
  .cost-copy h2,
  .contact-copy h2 {
    letter-spacing: 0;
  }
}

@media (max-width: 760px) {
  .section-word {
    top: 38px !important;
    right: -0.14em !important;
    bottom: auto !important;
    font-size: clamp(68px, 22vw, 116px) !important;
    opacity: 1 !important;
  }

  .section-white > *:not(.section-word),
  .section-dark > *:not(.section-word),
  .split,
  .pain-inner,
  .section-head,
  .price-reason,
  .value-compare,
  .cost-reason,
  .contact-grid,
  .home-news-inner {
    position: relative;
    z-index: 2;
  }

  .split-copy h2,
  .pain-copy h2,
  .operation .section-head h2,
  .price-catch h2,
  .value-copy h2,
  .cost-copy h2,
  .contact-copy h2 {
    max-width: 100% !important;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: normal;
  }

  .split-copy h2,
  .pain-copy h2 {
    font-size: clamp(33px, 8.4vw, 43px) !important;
    line-height: 1.3 !important;
  }

  .operation .section-head h2,
  .price-catch h2,
  .value-copy h2,
  .cost-copy h2 {
    font-size: clamp(29px, 7.65vw, 38px) !important;
    line-height: 1.46 !important;
  }

  .contact-copy h2 {
    font-size: clamp(38px, 9.2vw, 48px) !important;
    line-height: 1.2 !important;
  }

  .function-list span,
  .operation-card h3,
  .operation-card p,
  .solution-card h3,
  .solution-card p,
  .flow-step h3,
  .flow-step p,
  .faq-list summary,
  .home-news-list h3,
  .home-news-list p {
    text-shadow: none;
  }

  .section-dark .operation-card,
  .section-dark .flow-step,
  .cost-reason,
  .value-compare-automation {
    box-shadow:
      0 22px 54px rgba(0, 0, 0, 0.28),
      inset 0 0 0 1px rgba(255, 255, 255, 0.11);
  }
}

/* Emergency visual lock: keep headings readable and uncluttered on narrow screens. */
@media (max-width: 900px) {
  .section-word,
  .value-compare::before,
  .cost-reason::before,
  .automation-image-section::before,
  .home-news .section-word,
  .price-page-value .section-word {
    display: none !important;
    content: none !important;
  }

  .section-white,
  .section-dark {
    padding-right: clamp(18px, 4vw, 30px) !important;
    padding-left: clamp(18px, 4vw, 30px) !important;
  }

  .split,
  .pain-inner,
  .price-reason,
  .value-compare,
  .cost-reason,
  .contact-grid,
  .home-news-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    max-width: 760px !important;
  }

  .split-copy,
  .pain-copy,
  .price-catch,
  .value-copy,
  .cost-copy,
  .contact-copy,
  .home-news-copy {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .split-copy h2,
  .pain-copy h2,
  .operation .section-head h2,
  .price-catch h2,
  .value-copy h2,
  .cost-copy h2,
  .contact-copy h2,
  .home-news-copy h2 {
    max-width: 100% !important;
    color: #111017;
    font-size: clamp(30px, 5vw, 36px) !important;
    line-height: 1.42 !important;
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
    text-shadow: none !important;
  }

  .section-dark .section-head h2,
  .section-dark h2,
  .cost-reason .cost-copy h2,
  .value-compare-automation .value-copy h2,
  .contact .contact-copy h2 {
    color: #fff !important;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.32) !important;
  }

  .price-catch mark,
  .value-copy mark,
  .cost-copy mark,
  .section-dark mark {
    display: inline !important;
    padding: 0 0.1em 0.04em !important;
    color: #050308 !important;
    background: #fff100 !important;
    white-space: normal !important;
    box-decoration-break: clone !important;
    -webkit-box-decoration-break: clone !important;
    text-shadow: none !important;
  }

  .value-compare,
  .cost-reason {
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 30px 20px !important;
    border-radius: 28px !important;
  }

  .automation-image-section {
    padding: 30px 18px 24px !important;
  }

  .automation-visual {
    width: 100% !important;
    margin: 2px auto 0 !important;
  }

  .automation-visual img {
    width: 100% !important;
    max-width: 680px !important;
    margin: 0 auto !important;
  }

  .price-catch .phrase-keep {
    white-space: normal !important;
  }
}

/* Desktop heading balance lock: prevent large headings from entering neighboring columns. */
@media (min-width: 901px) {
  section[id] {
    scroll-margin-top: 118px;
  }

  .price-reason {
    grid-template-columns: 190px minmax(0, 1fr) minmax(360px, 0.82fr) !important;
    gap: clamp(34px, 4vw, 56px) !important;
    align-items: center !important;
    max-width: 1260px !important;
  }

  .price-catch {
    min-width: 0 !important;
  }

  .price-catch h2 {
    max-width: 620px !important;
    font-size: clamp(38px, 3.1vw, 54px) !important;
    line-height: 1.38 !important;
    color: #050308 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .price-catch .phrase-keep {
    display: inline-block !important;
    white-space: nowrap !important;
  }

  .price-story {
    max-width: 390px !important;
    justify-self: end !important;
  }

  .price-visual {
    margin-top: 8px !important;
  }

  .price-visual-heading h3 {
    font-size: clamp(76px, 6.5vw, 118px) !important;
    line-height: 0.9 !important;
  }

  .value-compare {
    grid-template-columns: minmax(500px, 0.86fr) minmax(600px, 1.14fr) !important;
    gap: clamp(44px, 5vw, 72px) !important;
    max-width: 1280px !important;
    overflow: hidden !important;
  }

  .value-copy {
    min-width: 0 !important;
  }

  .value-copy h2 {
    max-width: 560px !important;
    font-size: clamp(36px, 2.55vw, 48px) !important;
    line-height: 1.44 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .value-compare-system .value-copy h2 {
    color: #111017 !important;
    text-shadow: none !important;
  }

  .value-chart {
    min-width: 0 !important;
  }

  .cost-reason {
    grid-template-columns: 150px minmax(500px, 0.94fr) minmax(470px, 1.06fr) !important;
    gap: clamp(34px, 4vw, 56px) !important;
    align-items: center !important;
    max-width: 1260px !important;
    padding: clamp(40px, 4vw, 56px) !important;
  }

  .cost-index b {
    font-size: clamp(120px, 9vw, 156px) !important;
  }

  .cost-copy {
    min-width: 0 !important;
  }

  .cost-copy h2 {
    max-width: 540px !important;
    font-size: clamp(36px, 2.65vw, 50px) !important;
    line-height: 1.42 !important;
    color: #fff !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .cost-board {
    min-width: 0 !important;
  }

  .automation-image-section {
    grid-template-columns: minmax(540px, 0.88fr) minmax(620px, 1.12fr) !important;
    gap: clamp(28px, 3.4vw, 50px) !important;
    max-width: 1320px !important;
    padding-left: clamp(42px, 4vw, 68px) !important;
  }

  .automation-image-section .value-copy h2 {
    max-width: 580px !important;
    font-size: clamp(36px, 2.55vw, 48px) !important;
    line-height: 1.4 !important;
    color: #fff !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .automation-image-section .value-copy p:last-child {
    max-width: 560px !important;
  }

  .automation-visual {
    margin: -10px -24px -18px 0 !important;
  }

  .automation-visual img {
    width: min(100%, 720px) !important;
  }

  .value-copy mark,
  .cost-copy mark,
  .price-catch mark {
    display: inline-block !important;
    padding: 0.02em 0.14em 0.08em !important;
    line-height: 1.02 !important;
    color: #050308 !important;
    background: #fff100 !important;
    white-space: normal !important;
    text-shadow: none !important;
  }
}

/* PC heading composition final pass: keep major headlines readable, compact, and clear of graphics. */
@media (min-width: 901px) {
  .price-reason {
    grid-template-columns: 180px minmax(520px, 0.9fr) minmax(390px, 0.8fr) !important;
    column-gap: clamp(44px, 4.2vw, 68px) !important;
  }

  .price-catch h2 {
    max-width: 580px !important;
    font-size: clamp(38px, 2.75vw, 50px) !important;
    line-height: 1.42 !important;
    color: #050308 !important;
  }

  .price-story {
    max-width: 390px !important;
    color: #17131c !important;
  }

  .price-story mark {
    color: #050308 !important;
  }

  .price-visual-heading p {
    color: #111017 !important;
  }

  .price-visual-heading h3 {
    color: #f7258f !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: #f7258f !important;
    text-shadow: 0 10px 30px rgba(247, 37, 143, 0.18) !important;
  }

  .value-compare-system {
    grid-template-columns: minmax(470px, 0.78fr) minmax(640px, 1.22fr) !important;
    gap: clamp(72px, 5.8vw, 96px) !important;
    max-width: 1300px !important;
  }

  .value-compare-system .value-copy h2 {
    max-width: 470px !important;
    font-size: clamp(34px, 2.25vw, 43px) !important;
    line-height: 1.38 !important;
    color: #050308 !important;
    text-shadow: none !important;
  }

  .value-compare-system .value-copy p {
    max-width: 430px !important;
    color: #2d2832 !important;
  }

  .value-compare-system .value-chart {
    justify-self: end !important;
    width: min(100%, 660px) !important;
  }

  .cost-reason {
    grid-template-columns: 136px minmax(430px, 0.82fr) minmax(520px, 1.18fr) !important;
    gap: clamp(38px, 4vw, 60px) !important;
    max-width: 1260px !important;
  }

  .cost-copy h2 {
    max-width: 460px !important;
    font-size: clamp(34px, 2.35vw, 44px) !important;
    line-height: 1.42 !important;
    color: #fff !important;
  }

  .cost-copy p {
    max-width: 480px !important;
  }

  .cost-board {
    justify-self: end !important;
    width: min(100%, 540px) !important;
  }

  .automation-image-section {
    grid-template-columns: minmax(500px, 0.82fr) minmax(660px, 1.18fr) !important;
    gap: clamp(46px, 4.5vw, 70px) !important;
    max-width: 1320px !important;
  }

  .automation-image-section .value-copy h2 {
    max-width: 510px !important;
    font-size: clamp(34px, 2.35vw, 44px) !important;
    line-height: 1.42 !important;
    color: #fff !important;
  }

  .automation-image-section .value-copy p {
    max-width: 500px !important;
  }

  .automation-visual {
    justify-self: end !important;
    width: min(100%, 720px) !important;
  }

  .value-copy mark,
  .cost-copy mark,
  .price-catch mark {
    display: inline !important;
    padding: 0 0.12em 0.05em !important;
    color: #050308 !important;
    background: #fff100 !important;
    box-decoration-break: clone !important;
    -webkit-box-decoration-break: clone !important;
  }
}

/* PC heading final correction: fix long-line headings, contrast, and column balance. */
@media (min-width: 901px) {
  .intro-inner,
  .split,
  .pain-inner,
  .section-head,
  .cms-show-inner,
  .price-reason,
  .value-compare,
  .cost-reason,
  .contact-grid,
  .home-news-inner {
    position: relative !important;
    z-index: 3 !important;
  }

  .intro-inner h2,
  .split-copy h2,
  .pain-copy h2,
  .price-catch h2,
  .value-compare-system .value-copy h2,
  .home-news-copy h2 {
    color: #09070e !important;
    text-shadow: none !important;
  }

  .section-dark .section-head h2,
  .section-dark .cms-copy h2,
  .section-dark .cost-copy h2,
  .value-compare-automation .value-copy h2,
  .contact .contact-copy h2 {
    color: #fff !important;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28) !important;
  }

  .intro-inner h2,
  .split-copy h2,
  .pain-copy h2,
  .operation .section-head h2,
  .cms-copy h2,
  .price-catch h2,
  .value-copy h2,
  .cost-copy h2,
  .contact-copy h2,
  .home-news-copy h2 {
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-wrap: balance;
  }

  .intro-inner {
    max-width: 760px !important;
  }

  .intro-inner h2 {
    max-width: 640px !important;
    margin: 0 auto !important;
    font-size: clamp(40px, 3.35vw, 56px) !important;
    line-height: 1.34 !important;
  }

  .split {
    max-width: 1280px !important;
    grid-template-columns: minmax(450px, 0.84fr) minmax(620px, 1.16fr) !important;
    gap: clamp(56px, 5.2vw, 86px) !important;
  }

  .split-copy h2 {
    max-width: 500px !important;
    font-size: clamp(40px, 2.95vw, 54px) !important;
    line-height: 1.34 !important;
  }

  .split-copy p:not(.kicker) {
    max-width: 560px !important;
  }

  .pain-inner {
    max-width: 1280px !important;
    grid-template-columns: minmax(470px, 0.86fr) minmax(610px, 1.14fr) !important;
    gap: clamp(58px, 5.4vw, 88px) !important;
  }

  .pain-copy h2 {
    max-width: 540px !important;
    font-size: clamp(40px, 3vw, 56px) !important;
    line-height: 1.34 !important;
  }

  .pain-copy p:not(.kicker) {
    max-width: 570px !important;
  }

  .operation .section-head {
    max-width: 1120px !important;
  }

  .operation .section-head h2 {
    max-width: 1040px !important;
    font-size: clamp(42px, 3.15vw, 58px) !important;
    line-height: 1.32 !important;
  }

  .cms-show-inner {
    max-width: 1240px !important;
    grid-template-columns: minmax(680px, 1.18fr) minmax(360px, 0.82fr) !important;
    gap: clamp(48px, 5vw, 78px) !important;
  }

  .cms-copy h2 {
    max-width: 430px !important;
    font-size: clamp(34px, 2.65vw, 48px) !important;
    line-height: 1.36 !important;
  }

  .price-reason {
    max-width: 1230px !important;
    grid-template-columns: 160px minmax(440px, 0.78fr) minmax(400px, 0.86fr) !important;
    column-gap: clamp(46px, 4.8vw, 72px) !important;
  }

  .price-catch h2 {
    max-width: 510px !important;
    font-size: clamp(36px, 2.55vw, 48px) !important;
    line-height: 1.44 !important;
  }

  .price-story {
    max-width: 410px !important;
  }

  .price-visual-heading h3 {
    font-size: clamp(70px, 6vw, 108px) !important;
    line-height: 0.9 !important;
  }

  .value-compare-system {
    max-width: 1240px !important;
    grid-template-columns: minmax(420px, 0.76fr) minmax(620px, 1.24fr) !important;
    gap: clamp(70px, 5.4vw, 94px) !important;
  }

  .value-compare-system .value-copy h2 {
    max-width: 430px !important;
    font-size: clamp(32px, 2.15vw, 42px) !important;
    line-height: 1.42 !important;
  }

  .value-compare-system .value-chart {
    max-width: 660px !important;
  }

  .cost-reason {
    max-width: 1240px !important;
    grid-template-columns: 128px minmax(400px, 0.8fr) minmax(520px, 1.2fr) !important;
    gap: clamp(38px, 4.2vw, 62px) !important;
  }

  .cost-copy h2 {
    max-width: 430px !important;
    font-size: clamp(32px, 2.25vw, 42px) !important;
    line-height: 1.44 !important;
  }

  .cost-copy p {
    max-width: 470px !important;
  }

  .automation-image-section {
    max-width: 1280px !important;
    grid-template-columns: minmax(460px, 0.78fr) minmax(650px, 1.22fr) !important;
    gap: clamp(48px, 4.6vw, 74px) !important;
  }

  .automation-image-section .value-copy h2 {
    max-width: 470px !important;
    font-size: clamp(32px, 2.25vw, 42px) !important;
    line-height: 1.44 !important;
  }

  .automation-image-section .value-copy p {
    max-width: 470px !important;
  }

  .contact-grid {
    max-width: 1240px !important;
    grid-template-columns: minmax(470px, 0.86fr) minmax(560px, 1.14fr) !important;
    gap: clamp(58px, 5.6vw, 88px) !important;
  }

  .contact-copy h2 {
    max-width: 480px !important;
    font-size: clamp(44px, 3.25vw, 58px) !important;
    line-height: 1.24 !important;
  }

  .contact-copy p:not(.kicker) {
    max-width: 520px !important;
  }

  .home-news-copy h2 {
    max-width: 360px !important;
    font-size: clamp(50px, 4.4vw, 74px) !important;
    line-height: 1.08 !important;
  }

  .price-catch mark,
  .value-copy mark,
  .cost-copy mark {
    display: inline !important;
    color: #050308 !important;
    background: #fff100 !important;
    padding: 0 0.13em 0.06em !important;
    box-decoration-break: clone !important;
    -webkit-box-decoration-break: clone !important;
    text-shadow: none !important;
  }
}

/* PC heading balance lock: final typography pass for desktop visual QA. */
@media (min-width: 901px) {
  .pc-nowrap {
    white-space: nowrap !important;
  }

  .section-white h2,
  .section-white .section-head h2,
  .section-white .split-copy h2,
  .section-white .pain-copy h2,
  .section-white .price-catch h2,
  .section-white .value-copy h2,
  .section-white .home-news-copy h2 {
    color: #0b0910 !important;
    text-shadow: none !important;
  }

  .section-dark h2,
  .section-dark .section-head h2,
  .section-dark .cms-copy h2,
  .section-dark .cost-copy h2,
  .value-compare-automation .value-copy h2,
  .contact .contact-copy h2 {
    color: #fff !important;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.32) !important;
  }

  .split-copy h2,
  .pain-copy h2,
  .operation .section-head h2,
  .cms-copy h2,
  .price-catch h2,
  .value-copy h2,
  .cost-copy h2,
  .contact-copy h2,
  .home-news-copy h2 {
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: manual !important;
  }

  .split {
    grid-template-columns: minmax(520px, 0.92fr) minmax(600px, 1.08fr) !important;
    max-width: 1260px !important;
    gap: clamp(52px, 4.8vw, 78px) !important;
  }

  .split-copy h2 {
    max-width: 580px !important;
    font-size: clamp(42px, 2.85vw, 54px) !important;
    line-height: 1.32 !important;
  }

  .pain-inner {
    grid-template-columns: minmax(590px, 0.95fr) minmax(560px, 1.05fr) !important;
    max-width: 1280px !important;
    gap: clamp(48px, 4.8vw, 78px) !important;
  }

  .pain-copy h2 {
    max-width: 700px !important;
    font-size: clamp(40px, 2.45vw, 46px) !important;
    line-height: 1.34 !important;
  }

  .pain-copy p:not(.kicker) {
    max-width: 560px !important;
  }

  .operation .section-head {
    max-width: 1040px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .operation .section-head h2 {
    max-width: 980px !important;
    font-size: clamp(42px, 2.65vw, 50px) !important;
    line-height: 1.3 !important;
  }

  .operation .section-head h2 .pc-nowrap {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .price-reason {
    grid-template-columns: 170px minmax(500px, 0.86fr) minmax(420px, 0.86fr) !important;
    max-width: 1220px !important;
    column-gap: clamp(48px, 4.6vw, 70px) !important;
  }

  .price-catch h2 {
    max-width: 520px !important;
    font-size: clamp(38px, 2.55vw, 48px) !important;
    line-height: 1.38 !important;
  }

  .value-compare-system {
    grid-template-columns: minmax(460px, 0.78fr) minmax(640px, 1.22fr) !important;
    max-width: 1280px !important;
  }

  .value-compare-system .value-copy h2 {
    max-width: 470px !important;
    font-size: clamp(34px, 2.2vw, 42px) !important;
    line-height: 1.4 !important;
  }

  .cost-reason {
    grid-template-columns: 132px minmax(470px, 0.92fr) minmax(500px, 1.08fr) !important;
    max-width: 1240px !important;
  }

  .cost-copy h2 {
    max-width: 490px !important;
    font-size: clamp(34px, 2.3vw, 43px) !important;
    line-height: 1.4 !important;
  }

  .automation-image-section {
    grid-template-columns: minmax(500px, 0.82fr) minmax(660px, 1.18fr) !important;
    max-width: 1320px !important;
    align-items: center !important;
  }

  .automation-image-section .value-copy h2 {
    max-width: 510px !important;
    font-size: clamp(34px, 2.25vw, 43px) !important;
    line-height: 1.38 !important;
  }

  .home-news-inner {
    grid-template-columns: minmax(330px, 0.42fr) minmax(720px, 1fr) !important;
    max-width: 1240px !important;
  }

  .home-news-copy h2 {
    max-width: 360px !important;
    font-size: clamp(52px, 4.1vw, 72px) !important;
    line-height: 1.08 !important;
  }

  .contact-grid {
    grid-template-columns: minmax(520px, 0.9fr) minmax(560px, 1.1fr) !important;
    max-width: 1240px !important;
  }

  .contact-copy h2 {
    max-width: 660px !important;
    font-size: clamp(46px, 3.1vw, 56px) !important;
    line-height: 1.16 !important;
  }
}

@media (max-width: 900px) {
  html,
  body,
  .page {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .pc-nowrap {
    white-space: normal !important;
  }

  .operation .section-head {
    max-width: 100% !important;
    padding-inline: 0 !important;
  }

  .operation .section-head h2 {
    max-width: 100% !important;
    font-size: clamp(29px, 7.9vw, 35px) !important;
    line-height: 1.24 !important;
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
  }

  .operation .section-head h2 .pc-nowrap {
    display: inline !important;
    font-size: inherit !important;
    line-height: inherit !important;
    white-space: normal !important;
  }

  .operation-break-wrap {
    display: block !important;
    max-width: 100% !important;
  }

  .operation-break-wrap span {
    display: block !important;
    max-width: 100% !important;
    white-space: normal !important;
  }

  .operation-break-wrap span + span::before {
    content: "" !important;
  }

  .operation .section-head p {
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.85 !important;
  }
}
