/* Ai Blog SEO LP — 統一スタイルシート（インライン・重複 :root を集約） */
:root {
  --brand: #d71c7e;
  --text: #333;
  --text-secondary: #444;
  --text-inverse: #fff;
  --bg: #fff;
  --bg-muted: #f2f0ee;
  --bg-muted-alt: #f2eff0;
  --grad: linear-gradient(90deg, #f80759 0%, #bc4e9c 100%);
  --grad-63: linear-gradient(63deg, #d71c7e 6.73%, #af2f89 91.51%);
  --grad-67: linear-gradient(67deg, #f80759 0.01%, #bc4e9c 99.63%);
  --grad-58: linear-gradient(58deg, #f80759 5.04%, #bc4e9c 99.18%);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-section: 220px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 80px;
  --space-3xl: 120px;
  --container: min(1440px, 100% - 2rem);
  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Josefin Sans", sans-serif;
  --font-price: "Roboto", sans-serif;
  --font-num: "Oswald", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

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

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

a:hover {
  text-decoration: underline;
}

.lp-inner {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* --- 共通ラベル・見出し --- */
.lp-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: 3px 33px;
}

.lp-eyebrow__text {
  color: var(--brand);
  text-align: center;
  font-family: var(--font-en);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: 0.48px;
}

.lp-eyebrow__line {
  width: 120px;
  height: 2px;
  background: var(--brand);
}

.lp-eyebrow--on-dark .lp-eyebrow__text {
  color: var(--text-inverse);
}

.lp-eyebrow--on-dark .lp-eyebrow__line {
  background: var(--text-inverse);
}

.lp-title-sub {
  text-align: center;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 0;
}

.lp-title-hero {
  text-align: center;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.25;
}

.lp-title-hero--grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-lead {
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.4px;
  color: var(--text);
  margin: 0;
  max-width: 56em;
}

.lp-text-dark {
  color: var(--text);
  -webkit-text-fill-color: var(--text);
}

/* --- FV --- */
.lp-fv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  padding-bottom: var(--space-3xl);
  background: url("images/fv-bg.png")
    lightgray 50% / cover no-repeat;
  color: var(--text-inverse);
  position: relative;
}

.lp-fv__header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--space-sm) 10px var(--space-md);
}

.lp-fv__header-inner {
  display: flex;
  width: min(1700px, 100%);
  max-width: 1700px;
  padding: 20px 20px 20px clamp(20px, 4vw, 50px);
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.lp-fv__logo {
  width: min(270px, 55vw);
  height: auto;
}

.lp-fv__nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.lp-fv__nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 48px);
}

.lp-fv__nav-links a {
  color: var(--text-inverse);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 800;
  letter-spacing: 0.4px;
}

.lp-fv__nav-links a:hover {
  text-decoration: underline;
}

.lp-btn-white {
  display: inline-flex;
  padding: 12px 17px 12px 33px;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 800;
}

.lp-btn-white span {
  background: var(--grad-63);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-fv__main {
  width: min(1600px, 100%);
  padding-inline: 1rem;
}

.lp-fv__catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(32px, 6vw, 80px);
}

.lp-fv__h1 {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin: 0;
  color: var(--text-inverse);
}

.lp-fv__h1 strong {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
}

.lp-fv__badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 100%;
}

.lp-fv__badge {
  display: inline-flex;
  padding: 4px 18px 6px 12px;
  background: #fff;
  width: fit-content;
  max-width: 100%;
}

.lp-fv__badge span {
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 700;
  background: var(--grad-63);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-fv__desc {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.48px;
  color: var(--text-inverse);
  max-width: 36em;
}

.lp-fv__cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  width: 100%;
}

.lp-fv__cta-caption {
  color: var(--text-inverse);
  text-align: center;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
}

.lp-btn-cta-lg {
  display: inline-flex;
  padding: var(--space-md) var(--space-lg) var(--space-md) 64px;
  align-items: center;
  gap: 30px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700;
}

.lp-btn-cta-lg span {
  background: var(--grad-63);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- ABOUT --- */
.lp-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(48px, 8vw, 120px) 1rem clamp(64px, 10vw, 160px);
  background: var(--bg-muted-alt);
}

.lp-about__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.lp-about__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  width: min(1440px, 100%);
}

.lp-about-card {
  display: flex;
  width: min(310px, 100%);
  padding: var(--space-xl) var(--space-md);
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.lp-about-card img {
  width: 158px;
  height: auto;
}

.lp-about-card h3 {
  margin: 0;
  color: var(--brand);
  text-align: center;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* --- REASONS --- */
.lp-reasons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(48px, 8vw, 120px) 1rem;
  border-radius: var(--radius-section) 0 0 0;
  background: #fff;
}

.lp-reasons__list {
  width: min(1440px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 120px);
}

.lp-reason-row {
  display: flex;
  flex-wrap: wrap;
  padding: var(--space-md);
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}

.lp-reason-row__text {
  flex: 1 1 320px;
  max-width: 887px;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.lp-reason__num {
  font-family: var(--font-num);
  font-size: clamp(72px, 18vw, 180px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: 0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-reason-row h3 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-reason-row p {
  margin: 0;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.4px;
}

.lp-reason-row__img {
  flex: 0 1 auto;
  max-width: min(100%, 450px);
}

.lp-reason-row--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .lp-reason-row,
  .lp-reason-row--reverse {
    flex-direction: column;
  }
}

/* --- FEATURES (04+05) --- */
.lp-features-wrap {
  background: #fff;
  padding-bottom: var(--space-2xl);
}

.lp-features-wrap .lp-features-heading {
  padding: var(--space-3xl) 1rem var(--space-lg);
}

.features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(24px, 4vw, 80px) 1rem;
  max-width: 1500px;
  margin: 0 auto;
}

.features-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  width: 100%;
  overflow: hidden;
}

.features-block.reverse {
  flex-direction: row-reverse;
}

.features-image {
  flex: 0 0 auto;
  width: 100%;
  max-width: 780px;
  height: auto;
  object-fit: cover;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
  min-width: 0;
}

.features-block-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border-radius: var(--radius);
}

.icon-wrapper {
  display: flex;
  width: 100px;
  height: 100px;
  padding: var(--space-sm);
  justify-content: center;
  align-items: center;
}

.icon-wrapper svg {
  width: 70px;
  height: 68px;
}

.features-title {
  color: var(--brand);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  margin: 0;
}

.features-label {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.features-label-icon svg {
  width: 28px;
  height: 28px;
}

.features-label-text {
  color: var(--brand);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.44px;
}

.features-description {
  color: var(--text);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.36px;
  margin: 0;
}

@media (max-width: 1024px) {
  .features-block,
  .features-block.reverse {
    flex-direction: column;
  }

  .features-image {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .icon-wrapper svg {
    width: 56px;
    height: 54px;
  }
}

/* --- FUNCTION --- */
.section-function {
  display: flex;
  padding: clamp(48px, 8vw, 120px) clamp(16px, 3vw, 32px);
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 10vw, 120px);
  width: 100%;
  border-radius: 0 0 var(--radius-section) 0;
  background: var(--grad-67);
}

.section-function .function-heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
  max-width: 1200px;
}

.section-function .label-group .label,
.section-function .lp-eyebrow__text {
  color: var(--text-inverse);
}

.section-function .divider,
.section-function .lp-eyebrow__line {
  background: var(--text-inverse);
}

.section-function .header-title h2 {
  color: var(--text-inverse);
  text-align: center;
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

.function-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  width: 100%;
  max-width: 1500px;
}

..function-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  width: 100%;
  padding: 40px;
}

.function-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius);
  background: var(--text-inverse);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.function-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.function-card .icon-container {
  display: flex;
  width: 100px;
  height: 100px;
  padding: var(--space-sm);
  justify-content: center;
  align-items: center;
}

.function-card .icon-container svg {
  width: 100%;
  height: 100%;
}

.function-icon-fallback {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--grad);
  flex-shrink: 0;
}

.function-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.function-title {
  color: var(--brand);
  text-align: center;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0;
}

.function-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: var(--space-xs);
  margin: 0;
  padding: 0;
  list-style: none;
}

.function-list .bullet-item {
  position: relative;
  padding-left: 1.35rem;
  width: 100%;
}

.function-list .bullet-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.bullet-text {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-function {
    border-radius: 0 0 100px 0;
  }
}

@media (max-width: 480px) {
  .section-function {
    border-radius: 0 0 60px 0;
  }

  .function-card .icon-container {
    width: 80px;
    height: 80px;
  }
}

/* --- SEARCH STRATEGY --- */
.lp-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(48px, 8vw, 120px) 1rem;
}

.lp-search__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  width: min(1440px, 100%);
}

.lp-search-card {
  display: flex;
  width: min(420px, 100%);
  padding: var(--space-lg) var(--space-lg) 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
}

.lp-search-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: var(--space-sm);
}

.lp-search-card__label {
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.lp-search-card h3 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lp-search-card p {
  margin: 0;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.4px;
}

/* --- IMAGE STYLES --- */
.section-image-styles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(48px, 8vw, 120px) clamp(16px, 3vw, 32px);
  max-width: 1920px;
  margin: 0 auto;
}

.image-styles-heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
}

.is-label-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: 3px 33px;
}

.is-label {
  color: var(--brand);
  text-align: center;
  font-family: var(--font-en);
  font-size: clamp(16px, 5vw, 24px);
  font-weight: 700;
  letter-spacing: 0.48px;
}

.is-divider {
  width: 120px;
  height: 2px;
  background: var(--brand);
}

.is-header-title {
  text-align: center;
  font-size: clamp(36px, 10vw, 72px);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

.is-gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.is-normal-text {
  color: var(--text);
}

.is-description {
  text-align: center;
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.4px;
  color: var(--text);
  max-width: 900px;
  margin: 0;
}

.image-styles-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1440px;
}

.style-selector {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-sm);
  flex-wrap: wrap;
  width: 100%;
}

.style-btn {
  display: flex;
  height: 40px;
  padding: 4px var(--space-sm);
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: var(--grad);
  box-shadow: var(--shadow-card);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.style-btn:hover {
  transform: scale(1.05);
}

.style-btn-text {
  color: #fff;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 700;
  letter-spacing: 0.36px;
}

.image-styles-preview {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.image-styles-preview-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 68px 0;
  width: 100%;
  overflow: hidden;
}

.image-styles-preview-track {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.image-styles-preview-item {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  width: 100%;
  min-height: 300px;
  animation: lp-slide 30s linear infinite;
}

.preview-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  min-height: 300px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  object-fit: cover;
}

@keyframes lp-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

.arrow-svg {
  width: 45px;
  height: 45px;
}

@media (max-width: 768px) {
  .preview-img {
    max-width: 100%;
  }

  .arrow-svg {
    width: 36px;
    height: 36px;
  }
}

/* --- FLOW --- */
.section-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  background: var(--bg-muted);
  padding: clamp(48px, 8vw, 120px) clamp(24px, 5vw, 80px);
}

.flow-heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
}

.flow-label-group {
  display: flex;
  padding: 3px 33px;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.flow-label {
  color: var(--brand);
  text-align: center;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.flow-divider {
  width: 120px;
  height: 2px;
  background: var(--brand);
}

.flow-title-sub {
  color: var(--text);
  text-align: center;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.flow-header-title {
  text-align: center;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  width: 100%;
  max-width: 1440px;
  justify-items: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  padding: 40px var(--space-lg);
  border-radius: var(--radius-lg);
  background: #fff;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.flow-card:hover {
  transform: translateY(-4px);
}

.flow-card-icon {
  width: 110px;
  height: 110px;
}

.flow-card-title {
  color: var(--brand);
  text-align: center;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}

.flow-card-description {
  color: var(--text);
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.4px;
  margin: 0;
}

.flow-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 100px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .flow-arrow {
    display: none;
  }
}

/* --- STRENGTH --- */
.lp-strength {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(48px, 8vw, 120px) 1rem;
  border-radius: 0 0 0 var(--radius-section);
  background: var(--grad-58);
}

.lp-strength .lp-title-hero {
  color: var(--text-inverse);
  -webkit-text-fill-color: #fff;
  background: none;
}

.lp-strength__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  width: min(1440px, 100%);
}

.lp-strength-card {
  display: flex;
  width: min(650px, 100%);
  padding: var(--space-md);
  align-items: flex-start;
  gap: var(--space-lg);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.lp-strength-card svg {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}

.lp-strength-card h3 {
  margin: 0 0 var(--space-sm);
  color: var(--brand);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lp-strength-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
}

/* --- PRICING --- */
.lp-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 1rem var(--space-3xl);
  background: var(--bg);
}

.lp-pricing__content {
  width: min(1200px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.lp-price-row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.lp-price-row__head {
  flex: 0 0 min(280px, 100%);
  display: flex;
  padding: var(--space-md) 0;
  justify-content: center;
  align-items: center;
  background: var(--grad);
  color: #fff;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lp-price-row__body {
  flex: 1 1 320px;
  display: flex;
  padding: var(--space-lg) var(--space-md);
  justify-content: center;
  align-items: center;
  background: #fff;
}

.lp-price-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
}

.lp-price-amount {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  color: var(--brand);
}

.lp-price-amount .num {
  font-family: var(--font-price);
  font-size: clamp(40px, 8vw, 56px);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.lp-price-amount .yen {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
}

.lp-price-note {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.lp-pricing-features {
  width: 100%;
  padding: var(--space-sm);
  border-radius: var(--radius-lg);
  background: #f7f3f0;
}

.lp-pricing-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px var(--space-md);
}

.lp-pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  color: var(--text);
}

.lp-pricing-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.lp-pricing-note {
  text-align: center;
  margin-top: var(--space-md);
}

.lp-pricing-note h3 {
  margin: 0 0 var(--space-xs);
  color: var(--brand);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
}

.lp-pricing-note p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}

.lp-pricing-caption {
  margin-top: var(--space-xs);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

.lp-price-initial .num {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--text);
}

.lp-price-initial .yen {
  color: var(--text);
}

.lp-pricing-badge {
  margin-top: var(--space-lg);
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius);
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  max-width: 320px;
}

/* --- CTA --- */
.lp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(48px, 8vw, 120px) 1rem;
  background: #fff;
}

.lp-cta__grid {
  display: flex;
  flex-wrap: wrap;
  width: min(1440px, 100%);
  gap: var(--space-xl);
  align-items: flex-end;
  justify-content: center;
}

.lp-cta__media {
  flex: 1 1 320px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: var(--space-xl);
}

.lp-cta__bubbles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-cta__bubble {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-cta__bubble-text {
  padding: var(--space-md) clamp(24px, 5vw, 64px);
  border-radius: 999px;
  background: var(--bg-muted);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  line-height: 2;
  color: var(--text);
}

.lp-cta__quote {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-cta__content {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-md);
  padding: 0 var(--space-sm) var(--space-sm);
}

.lp-cta__content p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  color: var(--text);
}

.lp-btn-grad {
  display: inline-flex;
  padding: var(--space-md) var(--space-lg) var(--space-md) 64px;
  align-items: center;
  gap: 30px;
  border-radius: 999px;
  background: var(--grad);
  box-shadow: var(--shadow-card);
  color: #fff;
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700;
  align-self: center;
  text-decoration: none;
}

.lp-btn-grad:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.lp-cta__caption {
  text-align: center;
  color: var(--brand);
  font-size: 22px;
  font-weight: 700;
}

/* --- FAQ --- */
.lp-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(48px, 8vw, 120px) 1rem;
  background: var(--bg-muted);
}

.lp-faq__list {
  width: min(1000px, 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.lp-faq__item {
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.lp-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  color: var(--brand);
  font-size: clamp(16px, 2vw, 22px);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

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

.lp-faq__item .lp-faq__a {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  margin: 0;
}

/* --- FOOTER --- */
.lp-footer {
  padding: clamp(48px, 8vw, 120px) 1rem var(--space-lg);
  background: #fff;
}

.lp-footer__cta-wrap {
  margin-bottom: clamp(48px, 8vw, 80px);
}

.lp-footer__cta {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--space-lg);
  border-radius: 19px;
  background: linear-gradient(86deg, #f80759 0.56%, #bc4e9c 99.22%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.lp-footer__cta .lp-title-sub {
  color: #fff;
}

.lp-footer__cta .lp-title-hero {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.lp-footer__cta-btn {
  display: inline-flex;
  padding: var(--space-md) var(--space-lg) var(--space-md) 64px;
  align-items: center;
  gap: 30px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-card);
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 700;
}

.lp-footer__cta-btn span {
  background: var(--grad-63);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  justify-content: space-between;
  align-items: flex-start;
  width: min(1200px, 100%);
  margin: 0 auto var(--space-xl);
}

.lp-footer__brand {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: flex-start;
  max-width: 520px;
}

.lp-footer__brand img {
  width: 139px;
  height: auto;
}

.lp-footer__company .tagline {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 var(--space-xs);
}

.lp-footer__company .name {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin: 0 0 var(--space-md);
  letter-spacing: 0.05em;
}

.lp-footer__addr p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}

.lp-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-end;
}

.lp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: flex-end;
}

.lp-footer__nav a {
  font-size: 20px;
  font-weight: 800;
}

.lp-footer__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.lp-footer__btns a {
  display: inline-flex;
  padding: var(--space-xs) var(--space-lg);
  border: 1.5px solid var(--brand);
  font-size: 20px;
  font-weight: 600;
  color: var(--brand);
}

.lp-footer__btns a:hover {
  background: rgba(215, 28, 126, 0.06);
  text-decoration: none;
}

.lp-footer__copy {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}


/* =====================================================
   migrated inline style 1
===================================================== */
body { margin: 0; background: #ffffff; }

/* =====================================================
   DATA INSIGHT セクション専用スタイル（接頭辞 .di-, .section-data-insight）
   既存LPのスタイルと競合しないように prefix を付けています
===================================================== */
.section-data-insight {
    background: #F2F0EE;
    padding: 120px 0 120px;
    overflow: hidden;
}
.section-data-insight .header-title2 .span3 {
    color: transparent;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.di-container {
    max-width: 1440px;
    margin: 80px auto 0;
    padding: 0 40px;
}
.di-card {
    background: #fff;
    border: 1px solid #F2EEF3;
    border-radius: 20px;
    padding: 64px 40px;
    box-shadow: 0 10px 40px rgba(31,26,44,0.06);
    margin-bottom: 80px;
}
.di-card-title {
    text-align: center;
    font-size: 48px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #D71C7E;
    letter-spacing: 0.96px;
    margin: 0 0 24px;
    line-height: 1.4;
}
.di-legend {
    display: flex;
    gap: 24px;
    padding-left: 8px;
    margin-bottom: 16px;
}
.di-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.di-legend-mark {
    display: inline-block;
    width: 22px;
    height: 3px;
    border-radius: 2px;
    flex-shrink: 0;
}
.di-legend-mark--pink {
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
}
.di-legend-mark--gray {
    height: 0;
    border-top: 2px dashed #9A8E94;
}
.di-legend-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}
.di-legend-label--muted { color: #6b6b6b; }

.di-chart-wrap {
    width: 100%;
    aspect-ratio: 1358 / 505;
    position: relative;
    margin-bottom: 64px;
}
.di-chart-wrap canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Stats cards */
.di-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 16px;
}
.di-stat {
    padding: 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.di-stat--pink   { background: #FDE8F1; }
.di-stat--gray   { background: #F2F0EE; }
.di-stat--accent { background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%); color: #fff; }

.di-stat-eyebrow {
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
}
.di-stat--pink   .di-stat-eyebrow { color: #D71C7E; }
.di-stat--gray   .di-stat-eyebrow { color: #333; }
.di-stat--accent .di-stat-eyebrow { color: #FFD0E3; }

.di-stat-label {
    margin: 0 0 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.48px;
}
.di-stat--pink   .di-stat-label { color: #D71C7E; }
.di-stat--gray   .di-stat-label { color: #333; }
.di-stat--accent .di-stat-label { color: #fff; }

.di-stat-num {
    margin: 0;
    display: inline-flex;
    align-items: flex-end;
    gap: 4px;
    line-height: 1;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}
.di-stat-num-main {
    font-size: 96px;
    letter-spacing: 1.92px;
    line-height: 1;
}
.di-stat-num-unit, .di-stat-num-sub {
    font-size: 48px;
    line-height: 1;
}
.di-stat--pink .di-stat-num-main, .di-stat--pink .di-stat-num-unit {
    color: transparent;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.di-stat--gray .di-stat-num-main, .di-stat--gray .di-stat-num-unit { color: #333; }
.di-stat--accent .di-stat-num-main, .di-stat--accent .di-stat-num-sub { color: #fff; }

.di-source {
    margin: 16px 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #C92E74;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
.di-source svg { color: #C92E74; flex-shrink: 0; }

/* Sub heading */
.di-sub-heading {
    text-align: center;
    margin: 64px 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.96px;
    line-height: 1.5;
}
.di-sub-heading-accent {
    color: transparent;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Points */
.di-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.di-point {
    position: relative;
    background: #fff;
    border: 1px solid #F2EEF3;
    border-radius: 16px;
    padding: 32px 28px 40px;
    overflow: hidden;
}
.di-point-num {
    margin: 0 0 16px;
    color: transparent;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: 'DIN 2014','DIN Next','DIN','DM Sans',sans-serif;
    font-size: 96px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 1.92px;
    text-align: left !important;
}
.di-point-icon {
    position: absolute;
    top: 25px;
    right: 28px;
    color: #FFB8D6;
    line-height: 0;
}
.section-data-insight svg,
.di-point-icon svg,
.di-source svg {
    fill: none !important;
    stroke: currentColor !important;
}
.di-point-title {
    margin: 0 0 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.12px;
    color: #D71C7E;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.di-point-desc {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.4px;
    color: #333;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .di-card { padding: 40px 28px; }
    .di-card-title { font-size: 32px; }
    .di-sub-heading { font-size: 32px; }
    .di-stats, .di-points { grid-template-columns: 1fr; gap: 20px; }
    .di-point-icon svg { width: 96px; height: 96px; }
    .di-point-num { font-size: 72px; }
    .di-point-title { font-size: 22px; }
    .di-point-desc { font-size: 16px; line-height: 1.85; }
    .di-stat-num-main { font-size: 80px; }
    .di-stat-num-unit, .di-stat-num-sub { font-size: 40px; }
}
@media (max-width: 600px) {
    .section-data-insight { padding: 80px 0; }
    .di-container { padding: 0 20px; margin-top: 48px; }
    .di-card { padding: 24px 20px; border-radius: 16px; }
    .di-card-title { font-size: 22px; line-height: 1.5; }
    .di-sub-heading { font-size: 22px; margin: 48px 0; }
    .di-source { justify-content: center; text-align: center; }
    .di-stat-num-main { font-size: 64px; }
    .di-stat-num-unit, .di-stat-num-sub { font-size: 32px; }
}

/* ===== 白背景版オーバーライド ===== */
.section-data-insight {
    background: #FFFFFF !important;
}

/* DATA INSIGHT：白背景を画面幅いっぱいに広げる */
.section-data-insight {
    position: relative !important;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    box-sizing: border-box !important;
}

/* 見出し中央寄せ */
.section-data-insight .about-heading-group {
    text-align: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.section-data-insight .about-heading-group .header-title {
    justify-content: center !important;
    text-align: center !important;
}
.section-data-insight .about-heading-group .header-title2 {
    text-align: center !important;
}
.section-data-insight .about-heading-group .description,
.section-data-insight .about-heading-group .speech-text {
    text-align: center !important;
}

/* グラフカード内：見出し→凡例→グラフ の余白を大きく */
.di-card-title {
    margin: 0 0 64px !important;
}
.di-legend {
    margin-bottom: 56px !important;
    padding-left: 8px;
}
.di-chart-wrap {
    margin-bottom: 96px !important;
}

/* 統計カード（Blog Updated / No Updated / Difference）を上のグラフカードと同じ仕様に */
.di-stat,
.di-stat--pink,
.di-stat--gray,
.di-stat--accent {
    background: #FFFFFF !important;
    border: 1px solid #F2EEF3 !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(31,26,44,0.06) !important;
}
/* アクセント（差）の文字色をグラデーションテキストに */
.di-stat--accent .di-stat-eyebrow { color: #D71C7E !important; }
.di-stat--accent .di-stat-label { color: #D71C7E !important; }
.di-stat--accent .di-stat-num-main,
.di-stat--accent .di-stat-num-sub {
    color: transparent !important;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* 01/02/03 ポイントカードも上のフレームと同じ仕様に */
.di-point {
    background: #FFFFFF !important;
    border: 1px solid #F2EEF3 !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(31,26,44,0.06) !important;
}

/* デフォルト：inner はラップに従う */
.di-chart-inner {
    width: 100%;
    height: 100%;
}

/* ===== モバイル調整 ===== */
@media (max-width: 768px) {
    /* グラフを横スクロール可能に */
    .di-chart-wrap {
        overflow-x: auto;
        overflow-y: hidden;
        aspect-ratio: unset !important;
        height: 360px !important;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 48px !important;
        padding-bottom: 8px;
    }
    .di-chart-inner {
        width: 720px;
        height: 100%;
    }
    .di-chart-wrap canvas {
        width: 720px !important;
        height: 100% !important;
    }
    /* スクロールバーのスタイル調整 */
    .di-chart-wrap::-webkit-scrollbar { height: 6px; }
    .di-chart-wrap::-webkit-scrollbar-track { background: #f5f5f5; border-radius: 3px; }
    .di-chart-wrap::-webkit-scrollbar-thumb { background: #d0d0d0; border-radius: 3px; }

    /* モバイルではタイトル&#x2194;凡例の間隔を少し詰める */
    .di-card-title {
        margin: 0 0 32px !important;
    }
    .di-legend {
        margin-bottom: 24px !important;
    }
}

        /* FV：ヘッダー直下に自然に見える位置へ */
        @media (min-width: 768px) {
            .fv-content {
                transform: translateY(30px) !important;
            }
        }




    

        /* ===== Header layout override: right-aligned white pill / flexible sizing ===== */
        .header.header--desktop {
            padding: 10px 0 0 !important;
        }
        .header.header--desktop .header-container {
            padding: 0 clamp(12px, 1.4vw, 24px) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            gap: clamp(16px, 2vw, 32px) !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }
        .header-logo-link {
            flex: 0 0 auto !important;
        }
        .header.header--desktop .header-logo-wrap img {
            height: clamp(30px, 2.1vw, 38px) !important;
            width: auto !important;
        }
        .header .navi {
            flex: 1 1 auto !important;
            width: auto !important;
            max-width: none !important;
            min-width: 0 !important;
            margin-left: auto !important;
            display: flex !important;
            justify-content: flex-end !important;
            align-items: center !important;
        }
        .navi-pill {
            width: min(100%, 1120px) !important;
            max-width: 1120px !important;
            margin-left: auto !important;
            display: flex !important;
            align-items: center !important;
            justify-content: flex-end !important;
            min-height: clamp(76px, 5vw, 94px) !important;
            padding: clamp(8px, 0.8vw, 14px) clamp(10px, 0.9vw, 16px) clamp(8px, 0.8vw, 14px) clamp(18px, 1.8vw, 30px) !important;
            gap: clamp(12px, 1.2vw, 24px) !important;
            border-radius: 999px !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
        .header .navi-intem-list {
            flex: 1 1 auto !important;
            min-width: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            gap: clamp(12px, 1.2vw, 24px) !important;
            margin: 0 auto 0 0 !important;
        }
        .header .navi-intem2 {
            font-size: clamp(14px, 1.05vw, 20px) !important;
            letter-spacing: 0.01em !important;
            white-space: nowrap !important;
        }
        .header-tel-cta {
            flex: 0 0 auto !important;
        }
        .header-tel-cta__number {
            font-size: clamp(24px, 2vw, 36px) !important;
            line-height: 1.05 !important;
            white-space: nowrap !important;
        }
        .header-tel-cta__hours {
            font-size: clamp(10px, 0.8vw, 14px) !important;
            line-height: 1.2 !important;
            white-space: nowrap !important;
        }
        .header .btn-primary {
            flex: 0 0 auto !important;
            min-height: clamp(48px, 3.8vw, 64px) !important;
            height: auto !important;
            padding: clamp(9px, 0.8vw, 14px) clamp(18px, 1.8vw, 34px) !important;
        }
        .header .btn-primary .div {
            font-size: clamp(14px, 1.02vw, 20px) !important;
            line-height: 1.2 !important;
            height: auto !important;
            white-space: nowrap !important;
        }

        @media (max-width: 1400px) {
            .navi-pill {
                width: min(100%, 1040px) !important;
                gap: 12px !important;
                padding-left: 16px !important;
            }
            .header .navi-intem-list {
                gap: 10px !important;
            }
            .header .navi-intem2 {
                font-size: 14px !important;
            }
            .header-tel-cta__number {
                font-size: 24px !important;
            }
            .header-tel-cta__hours {
                font-size: 10px !important;
            }
            .header .btn-primary .div {
                font-size: 14px !important;
            }
        }

        @media (max-width: 1200px) {
            .header.header--desktop .header-container {
                gap: 14px !important;
            }
            .navi-pill {
                width: min(100%, 960px) !important;
                min-height: 78px !important;
                padding: 8px 10px 8px 14px !important;
                gap: 10px !important;
            }
            .header .navi-intem-list {
                gap: 8px !important;
            }
            .header .navi-intem2 {
                font-size: 13px !important;
            }
            .header-tel-cta__number {
                font-size: 22px !important;
            }
            .header-tel-cta__hours {
                font-size: 9px !important;
            }
            .header .btn-primary {
                min-height: 46px !important;
                padding: 8px 16px !important;
            }
            .header .btn-primary .div {
                font-size: 13px !important;
            }
        }

    

        /* ===== Final header balance fix ===== */
        .header.header--desktop {
            padding-top: 8px !important;
        }
        .header.header--desktop .header-container {
            padding-left: 12px !important;
            padding-right: 12px !important;
            gap: 14px !important;
            align-items: center !important;
        }
        .header-logo-link {
            flex: 0 0 auto !important;
            margin-right: 0 !important;
        }
        .header.header--desktop .header-logo-wrap img {
            height: clamp(30px, 2vw, 38px) !important;
            width: auto !important;
        }

        /* 右側の白角丸枠は、残り幅いっぱいを使って右寄せ */
        .header .navi {
            flex: 1 1 auto !important;
            width: auto !important;
            max-width: none !important;
            min-width: 0 !important;
            margin-left: auto !important;
            display: flex !important;
            justify-content: flex-end !important;
            align-items: center !important;
        }
        .navi-pill {
            width: 100% !important;
            max-width: none !important;
            margin-left: auto !important;
            min-height: clamp(74px, 4.8vw, 94px) !important;
            padding: clamp(8px, 0.7vw, 12px) clamp(10px, 0.8vw, 16px) clamp(8px, 0.7vw, 12px) clamp(14px, 1.1vw, 20px) !important;
            gap: clamp(10px, 1vw, 18px) !important;
            border-radius: 999px !important;
            box-sizing: border-box !important;
            overflow: visible !important;
        }

        /* pill内の左余白を詰める */
        .header .navi-intem-list {
            flex: 1 1 auto !important;
            min-width: 0 !important;
            margin: 0 auto 0 0 !important;
            justify-content: flex-start !important;
            gap: clamp(10px, 1vw, 20px) !important;
        }
        .header .navi-intem2 {
            font-size: clamp(14px, 1vw, 20px) !important;
            letter-spacing: 0.01em !important;
            white-space: nowrap !important;
        }

        .header-tel-cta {
            flex: 0 0 auto !important;
            padding-inline: 0 clamp(2px, 0.4vw, 8px) !important;
        }
        .header-tel-cta__number {
            font-size: clamp(22px, 1.95vw, 36px) !important;
            line-height: 1.05 !important;
            white-space: nowrap !important;
        }
        .header-tel-cta__hours {
            font-size: clamp(9px, 0.75vw, 14px) !important;
            line-height: 1.2 !important;
            white-space: nowrap !important;
        }

        /* CTAの上下見切れ防止 */
        .header .btn-primary {
            flex: 0 0 auto !important;
            height: auto !important;
            min-height: clamp(46px, 3.6vw, 64px) !important;
            padding: clamp(8px, 0.65vw, 12px) clamp(16px, 1.4vw, 30px) !important;
            box-sizing: border-box !important;
        }
        .header .btn-primary .div {
            height: auto !important;
            line-height: 1.2 !important;
            font-size: clamp(14px, 1vw, 20px) !important;
            white-space: nowrap !important;
        }

        @media (max-width: 1400px) {
            .header.header--desktop .header-container {
                gap: 12px !important;
            }
            .navi-pill {
                padding-left: 14px !important;
                gap: 10px !important;
            }
            .header .navi-intem-list {
                gap: 8px !important;
            }
            .header .navi-intem2 {
                font-size: 13px !important;
            }
            .header-tel-cta__number {
                font-size: 22px !important;
            }
            .header-tel-cta__hours {
                font-size: 9px !important;
            }
            .header .btn-primary .div {
                font-size: 13px !important;
            }
        }

        @media (max-width: 1200px) {
            .navi-pill {
                min-height: 74px !important;
                padding: 8px 10px 8px 12px !important;
            }
            .header .navi-intem-list {
                gap: 6px !important;
            }
            .header .navi-intem2 {
                font-size: 12px !important;
            }
            .header-tel-cta__number {
                font-size: 20px !important;
            }
            .header-tel-cta__hours {
                font-size: 8px !important;
            }
            .header .btn-primary {
                min-height: 44px !important;
                padding: 8px 14px !important;
            }
            .header .btn-primary .div {
                font-size: 12px !important;
            }
        }


/* =====================================================
   migrated inline style 2
===================================================== */
/* ロゴをリンク化（見た目はそのまま） */
        .header-logo-link {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            transition: opacity .2s ease;
        }
        .header-logo-link:hover { opacity: .8; }

        /* ヘッダー本体：FV上では透明で重ねる */
        .header.header--desktop {
            transform: translateY(0) !important;
            top: 0 !important;
            height: auto !important;
            min-height: 136px !important;
            padding: 12px 0 0 !important;
            background: transparent !important;
            box-shadow: none !important;
            backdrop-filter: none !important;
        }
        .header.header--desktop .header-container {
            padding: 0 clamp(12px, 1.8vw, 28px) !important;
            max-width: none !important;
            width: 100% !important;
            margin: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            gap: clamp(16px, 2vw, 40px) !important;
            box-sizing: border-box !important;
        }
        .header.header--desktop .header-logo-img--color { display: none !important; }
        .header.header--desktop .logo-ai-blog-seo-whitelogo-ai-icon {
            display: block !important;
            opacity: 1 !important;
        }
        .header.header--desktop .header-logo-wrap img {
            height: clamp(30px, 2.2vw, 38px);
            width: auto;
        }

        /* ナビ全体 */
        .header .navi {
            display: flex !important;
            align-items: center !important;
            justify-content: flex-end !important;
            gap: 0 !important;
            flex: 0 1 min(72vw, 1320px) !important;
            width: min(72vw, 1320px) !important;
            max-width: calc(100% - clamp(190px, 20vw, 340px)) !important;
            min-width: 0 !important;
            margin-left: auto !important;
        }

        /* 白いピル：ナビ + 電話 + デモボタン */
        .navi-pill {
            display: inline-flex;
            overflow: hidden;
            align-items: center;
            justify-content: flex-end;
            width: 100%;
            margin-left: auto;
            min-height: clamp(76px, 5vw, 94px);
            background: #fff;
            border-radius: 999px;
            padding: clamp(8px, 0.8vw, 14px) clamp(10px, 0.9vw, 16px) clamp(8px, 0.8vw, 14px) clamp(20px, 2vw, 42px);
            gap: clamp(14px, 1.4vw, 36px);
            box-shadow: 0 6px 24px rgba(180,40,120,0.18);
            box-sizing: border-box;
        }
        .header .navi-intem-list {
            display: flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            flex: 1 1 auto !important;
            min-width: 0 !important;
            gap: clamp(14px, 1.4vw, 32px) !important;
            margin: 0 auto 0 0 !important;
        }
        .header .navi-intem {
            list-style: none !important;
            display: inline-flex !important;
        }
        .header .navi-intem2 {
            color: #D71C7E !important;
            font-size: clamp(14px, 1.15vw, 20px) !important;
            font-weight: 700 !important;
            font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
            text-decoration: none !important;
            white-space: nowrap !important;
            letter-spacing: 0.02em !important;
            transition: opacity .2s ease !important;
        }
        .header .navi-intem2:hover { opacity: 0.7 !important; }

        /* 電話CTA */
        .header-tel-cta {
            display: inline-flex;
            flex: 0 0 auto;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            text-decoration: none;
            line-height: 1;
            transition: opacity .2s ease;
        }
        .header-tel-cta:hover { opacity: .7; }
        .header-tel-cta__body {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .header-tel-cta__number {
            font-size: clamp(24px, 2.1vw, 36px);
            font-weight: 700;
            letter-spacing: 0.02em;
            font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
            color: #D71C7E;
            line-height: 1.05;
            white-space: nowrap;
        }
        .header-tel-cta__hours {
            font-size: clamp(10px, 0.82vw, 14px);
            font-weight: 700;
            color: #D71C7E;
            font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
            letter-spacing: 0.01em;
            white-space: nowrap;
            margin-top: 4px;
        }

        /* ヘッダーCTA：グラデーション＋ホバーで光が左→右に流れる */
        .header .btn-primary {
            align-self: center !important;
            position: relative !important;
            overflow: hidden !important;
            isolation: isolate !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 15.56px !important;
            min-height: clamp(50px, 3.8vw, 64px) !important;
            padding: clamp(10px, 0.8vw, 14px) clamp(18px, 1.8vw, 34px) !important;
            border-radius: 999px !important;
            background: linear-gradient(90deg, #F80759 0%, #BC4E9C 100%) !important;
            color: #fff !important;
            font-weight: 700 !important;
            font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
            text-decoration: none !important;
            box-shadow: 0 2.07px 12.44px rgba(0,0,0,0.08) !important;
            transition: transform .2s ease, box-shadow .2s ease !important;
            box-sizing: border-box !important;
            flex: 0 0 auto !important;
        }
        .header .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background: linear-gradient(90deg, rgba(255,255,255,.26) 0%, rgba(255,255,255,.08) 100%);
            transform: translateX(-101%);
            transition: transform 0.4s ease;
        }
        .header .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(180,40,120,0.25) !important;
        }
        .header .btn-primary:hover::before { transform: translateX(0); }
        .header.header--desktop .navi .btn-primary,
        .header.header--desktop .navi .btn-primary .div,
        .header.header--desktop .navi .btn-primary span {
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
            -webkit-background-clip: initial !important;
            background-clip: initial !important;
        }
        .header .btn-primary .div {
            position: relative;
            z-index: 1;
            display: inline-flex !important;
            align-items: center !important;
            font-size: clamp(16px, 1.05vw, 20px) !important;
            font-weight: 700 !important;
            line-height: 1.2 !important;
            letter-spacing: 0.02em !important;
            white-space: nowrap;
            background: none !important;
            background-image: none !important;
            box-shadow: none !important;
            -webkit-background-clip: initial !important;
            background-clip: initial !important;
        }
        .header .btn-primary .btn-arrow { display: none !important; }
        .header .btn-primary .div,
        .header .btn-primary .div::before,
        .header .btn-primary .div::after {
            background: none !important;
            background-image: none !important;
            box-shadow: none !important;
        }

        /* FV CTA：白ボタン → ホバーでグラデーションが左から入る */
        .btn-primary-main {
            position: relative !important;
            overflow: hidden !important;
            isolation: isolate !important;
            background: #fff !important;
        }
        .btn-primary-main::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background: linear-gradient(90deg, #F80759 0%, #BC4E9C 100%);
            transform: translateX(-101%);
            transition: transform 0.4s ease;
        }
        .btn-primary-main:hover::before { transform: translateX(0); }
        .btn-primary-main .b2,
        .btn-primary-main strong,
        .btn-primary-main .btn-arrow {
            position: relative;
            z-index: 1;
        }
        .btn-primary-main .b2,
        .btn-primary-main strong {
            transition: color .15s ease, -webkit-text-fill-color .15s ease;
        }
        .btn-primary-main:hover .b2,
        .btn-primary-main:hover strong {
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
            background: none !important;
            -webkit-background-clip: initial !important;
            background-clip: initial !important;
        }
        .btn-primary-main .btn-arrow-img { transition: filter .2s ease; }
        .btn-primary-main:hover .btn-arrow-img { filter: brightness(0) invert(1); }

        /* SPヘッダー：ロゴ＋電話＋メニュー */
        .header-sp__bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            position: relative;
            z-index: 2;
        }
        .header-sp__overlay[aria-hidden="true"] { display: none !important; }
        .header-sp__logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            transition: opacity .2s ease;
        }
        .header-sp__logo:hover { opacity: .75; }
        .header-sp__logo-img {
            height: 28px;
            width: auto;
            display: block;
        }
        .header-sp__logo-img--color { display: none; }
        .header-sp__actions {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .header-sp__tel {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
            color: #fff;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(215,28,126,0.25);
            transition: transform .2s ease;
        }
        .header-sp__tel:hover { transform: translateY(-1px); }
        .header-sp__tel svg { fill: none !important; stroke: currentColor !important; }

        @media (max-width: 1280px) {
            .header .navi {
                width: min(76vw, 1180px) !important;
                max-width: calc(100% - clamp(170px, 18vw, 300px)) !important;
            }
            .navi-pill {
                padding-left: 22px;
                gap: 12px;
            }
            .header .navi-intem-list { gap: 12px !important; }
            .header .navi-intem2 { font-size: 14px !important; }
            .header-tel-cta__number { font-size: 24px; }
            .header-tel-cta__hours { font-size: 10px; }
            .header .btn-primary .div { font-size: 15px !important; }
        }

        @media (max-width: 1100px) {
            .header .navi {
                width: min(78vw, 980px) !important;
                max-width: calc(100% - 150px) !important;
            }
            .navi-pill {
                min-height: 78px;
                padding: 8px 10px 8px 18px;
                gap: 10px;
            }
            .header .navi-intem-list { gap: 10px !important; }
            .header .navi-intem2 { font-size: 13px !important; }
            .header-tel-cta__number { font-size: 22px; }
            .header-tel-cta__hours { font-size: 9px; }
            .header .btn-primary {
                min-height: 46px !important;
                padding: 8px 16px !important;
            }
            .header .btn-primary .div {
                font-size: 13px !important;
                line-height: 1.2 !important;
            }
        }


/* =====================================================
   migrated inline style 3
===================================================== */
/* ===== FINAL FIX: FAQ と電話番号の間を詰める ===== */
.header.header--desktop .header-container {
    align-items: center !important;
}

.header.header--desktop .navi {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: auto !important;
}

.header.header--desktop .navi-pill {
    width: auto !important;
    min-width: min(68vw, 1080px) !important;
    max-width: calc(100vw - 220px) !important;
    margin-left: auto !important;
    display: inline-flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 8px 14px 8px 18px !important;
    min-height: 76px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

/* ここが主犯：メニュー群が伸びすぎないようにする */
.header.header--desktop .navi .navi-intem-list {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    justify-content: flex-start !important;
    gap: 18px !important;
}

.header.header--desktop .navi .navi-intem {
    flex: 0 0 auto !important;
}

.header.header--desktop .header-tel-cta {
    flex: 0 0 auto !important;
    margin-left: 4px !important;
    margin-right: 0 !important;
    padding-inline: 0 !important;
}

.header.header--desktop .btn-primary {
    flex: 0 0 auto !important;
    margin-left: 4px !important;
}

.header.header--desktop .navi-intem2 {
    font-size: 14px !important;
    white-space: nowrap !important;
}
.header.header--desktop .header-tel-cta__number {
    font-size: 22px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
}
.header.header--desktop .header-tel-cta__hours {
    font-size: 9px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}
.header.header--desktop .btn-primary .div {
    font-size: 13px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

@media (min-width: 1440px) {
    .header.header--desktop .navi-pill {
        min-width: 1120px !important;
        gap: 16px !important;
        padding-left: 20px !important;
    }
    .header.header--desktop .navi .navi-intem-list {
        gap: 20px !important;
    }
    .header.header--desktop .header-tel-cta__number {
        font-size: 24px !important;
    }
    .header.header--desktop .header-tel-cta__hours {
        font-size: 10px !important;
    }
    .header.header--desktop .btn-primary .div {
        font-size: 14px !important;
    }
}


/* =====================================================
   migrated inline style 4
===================================================== */
/* ===== DESKTOP HEADER FINAL CLEAN OVERRIDE ===== */
@media (min-width: 768px) {
  .header.header--desktop {
    padding: 10px 0 0 !important;
    min-height: auto !important;
  }

  .header.header--desktop .header-container {
    width: 100% !important;
    padding: 0 20px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    box-sizing: border-box !important;
  }

  .header.header--desktop .header-logo-wrap img {
    height: 38px !important;
    width: auto !important;
  }

  .header.header--desktop .navi {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: calc(100vw - 340px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  /* 白枠は「残り幅いっぱい」ではなく、内容に合わせて縮めて右寄せ */
  .header.header--desktop .navi-pill {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 10px 14px 10px 22px !important;
    gap: 18px !important;
    min-height: 78px !important;
    border-radius: 999px !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    background: #fff !important;
  }

  /* メニュー群を伸ばさない＝左の変な空白を消す */
  .header.header--desktop .navi .navi-intem-list {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 24px !important;
  }

  .header.header--desktop .navi .navi-intem {
    display: inline-flex !important;
    flex: 0 0 auto !important;
  }

  /* フォントサイズは元に戻す */
  .header.header--desktop .navi .navi-intem2 {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.40px !important;
    white-space: nowrap !important;
  }

  /* FAQ と電話番号を近づける */
  .header.header--desktop .header-tel-cta {
    flex: 0 0 auto !important;
    margin-left: 6px !important;
    margin-right: 0 !important;
    padding: 0 !important;
  }

  .header.header--desktop .header-tel-cta__number {
    font-size: 36px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.72px !important;
    white-space: nowrap !important;
  }

  .header.header--desktop .header-tel-cta__hours {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.28px !important;
    white-space: nowrap !important;
    margin-top: 4px !important;
  }

  .header.header--desktop .btn-primary {
    flex: 0 0 auto !important;
    align-self: center !important;
    height: 64px !important;
    min-height: 64px !important;
    padding: 0 34px !important;
    margin-left: 6px !important;
    border-radius: 999px !important;
  }

  .header.header--desktop .btn-primary .div {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.40px !important;
    white-space: nowrap !important;
    height: auto !important;
  }
}

/* 少し狭いPCだけ自然に縮める */
@media (min-width: 768px) and (max-width: 1440px) {
  .header.header--desktop .navi {
    max-width: calc(100vw - 300px) !important;
  }
  .header.header--desktop .navi-pill {
    padding: 8px 12px 8px 18px !important;
    gap: 14px !important;
    min-height: 72px !important;
  }
  .header.header--desktop .navi .navi-intem-list {
    gap: 18px !important;
  }
  .header.header--desktop .navi .navi-intem2 {
    font-size: 16px !important;
  }
  .header.header--desktop .header-tel-cta__number {
    font-size: 28px !important;
    letter-spacing: 0.02em !important;
  }
  .header.header--desktop .header-tel-cta__hours {
    font-size: 12px !important;
  }
  .header.header--desktop .btn-primary {
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 24px !important;
  }
  .header.header--desktop .btn-primary .div {
    font-size: 16px !important;
    letter-spacing: 0.02em !important;
  }
}


/* =====================================================
   migrated inline style 5
===================================================== */
/* ===== micro tweak: nav group breathing room ===== */
@media (min-width: 768px) {
  .header.header--desktop .navi-pill {
    padding-left: 30px !important;
  }
  .header.header--desktop .navi .navi-intem-list {
    margin-right: 10px !important;
  }
}

@media (min-width: 768px) and (max-width: 1440px) {
  .header.header--desktop .navi-pill {
    padding-left: 24px !important;
  }
  .header.header--desktop .navi .navi-intem-list {
    margin-right: 8px !important;
  }
}


/* =====================================================
   migrated inline style 6
===================================================== */
/* ===== FINAL: FVとヘッダーの左右ガイド合わせ ===== */
@media (min-width: 768px) {
  :root {
    --fv-guide-left: 60px;
    --fv-guide-right: 64px;
  }

  /* ヘッダー：ロゴ左端と白枠右端をガイドに合わせる */
  .header.header--desktop .header-container {
    padding-left: var(--fv-guide-left) !important;
    padding-right: var(--fv-guide-right) !important;
    box-sizing: border-box !important;
  }

  .header.header--desktop .header-logo-link {
    margin-left: 0 !important;
    flex: 0 0 auto !important;
  }

  .header.header--desktop .navi {
    margin-left: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    width: auto !important;
    max-width: none !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  .header.header--desktop .navi-pill {
    margin-left: auto !important;
    margin-right: 0 !important;
    width: auto !important;
    max-width: 100% !important;
  }

  /* FV左コンテンツ：ヘッダーロゴと同じ左ガイド */
  .section-fv .fv-container {
    padding-left: var(--fv-guide-left) !important;
    padding-right: var(--fv-guide-right) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: none !important;
  }

  .section-fv .fv-content,
  .section-fv .fv-copy-group {
    margin-left: 0 !important;
  }

  /* FV画像：サイズは変えず、位置だけ右ガイドに合わせる */
  .section-fv .fv-image-group {
    right: var(--fv-guide-right) !important;
    left: auto !important;
  }

  /* T8バナーは触らない */
}

@media (min-width: 768px) and (max-width: 1440px) {
  :root {
    --fv-guide-left: 56px;
    --fv-guide-right: 56px;
  }
}


/* =====================================================
   migrated inline style 7
===================================================== */
/* ===== v18: FVのPC/SP画像だけ右マージン0で確認 ===== */
@media (min-width: 768px) {
  .section-fv .fv-image-group {
    right: 0 !important;
    left: auto !important;
  }
}


/* =====================================================
   migrated inline style 8
===================================================== */
/* ===== Scroll header visibility ===== */
.header.header--desktop,
.header-sp {
  transition: transform 0.4s ease, opacity 0.4s ease !important;
  will-change: transform, opacity;
}

.header.header--desktop.is-header-hidden,
.header-sp.is-header-hidden {
  transform: translateY(-120%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.header.header--desktop.is-header-visible,
.header-sp.is-header-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}


/* =====================================================
   migrated inline style 9
===================================================== */
/* ===== SP: ハンバーガーをFVロゴと同じ高さの右側へ ===== */
@media (max-width: 767px) {
  .header-sp {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 0 !important;
    z-index: 1000 !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  .header-sp__bar {
    height: 0 !important;
    padding: clamp(32px, 9vw, 44px) clamp(28px, 7vw, 36px) 0 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    background: transparent !important;
    pointer-events: none !important;
    box-sizing: border-box !important;
  }

  .header-sp__logo,
  .header-sp__tel {
    display: none !important;
  }

  .header-sp__actions {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    pointer-events: auto !important;
  }

  .header-sp__menu-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: auto !important;
  }

  .header-sp__burger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 32px !important;
    height: 22px !important;
  }

  .header-sp__burger span {
    display: block !important;
    width: 32px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  /* ドロワーは開閉できるように残す */
  .header-sp__overlay,
  .sp-drawer-panel,
  .sp-drawer {
    pointer-events: auto !important;
  }
}


/* =====================================================
   migrated inline style 10
===================================================== */
/* ===== SP drawer: 実体のある閉じるボタン ===== */
.sp-drawer-close {
  display: none;
}

@media (max-width: 767px) {
  .sp-drawer {
    position: relative !important;
  }

  .sp-drawer-close {
    display: block !important;
    position: absolute !important;
    top: 28px !important;
    right: 22px !important;
    z-index: 9999 !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer !important;
    pointer-events: auto !important;
  }

  .sp-drawer-close span {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    display: block !important;
    width: 32px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #E82B8E !important;
    transform-origin: center !important;
  }

  .sp-drawer-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg) !important;
  }

  .sp-drawer-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
  }
}


/* =====================================================
   migrated inline style 20
===================================================== */
/* ===== SP drawer telephone CTA ===== */
.sp-drawer-tel-cta {
  display: none;
}

@media (max-width: 767px) {
  .sp-drawer-tel-cta {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 28px auto 34px !important;
    text-align: center !important;
    text-decoration: none !important;
    color: #D71C7E !important;
    line-height: 1.1 !important;
    width: fit-content !important;
    max-width: 100% !important;
  }

  .sp-drawer-tel-cta__number {
    display: block !important;
    color: #D71C7E !important;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
    font-size: clamp(38px, 10vw, 56px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  .sp-drawer-tel-cta__hours {
    display: block !important;
    margin-top: 8px !important;
    color: #D71C7E !important;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
    font-size: clamp(15px, 4vw, 22px) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
  }
}

/* =====================================================
   FINAL ADJUSTMENTS
   HTMLを元CSSのクラス設計に合わせたうえで、SP崩れを防ぐ最終調整
===================================================== */

/* 共通：ボタン系のhover下線を消す */
.style-btn:hover,
.style-btn-01:hover,
.lp-btn-grad:hover,
.lp-footer__cta-btn:hover,
.lp-footer__btns a:hover {
  text-decoration: none;
}

/* IMAGE STYLES：JS切り替え型に固定 */
.section-image-styles .image-styles-container2 {
  width: 100%;
}

.section-image-styles .style-btn-01 {
  color: #fff;
}

.section-image-styles .style-btn-01.is-active {
  transform: scale(1.03);
}

.section-image-styles .image-styles-preview-container {
  padding: 68px 80px;
}

.section-image-styles .image-styles-preview-track,
.section-image-styles .image-styles-preview-item {
  animation: none !important;
  transform: none !important;
}

.section-image-styles .image-styles-preview-item {
  justify-content: center;
  min-height: 420px;
}

.section-image-styles .image-styles-preview-img {
  display: none;
  width: 100%;
  max-width: 900px;
  min-height: 0;
  object-fit: contain;
}

.section-image-styles .image-styles-preview-img.is-active {
  display: block;
}

/* CTA：イラストのサイズ安定 */
.lp-cta__illust {
  width: min(360px, 100%);
  height: auto;
  flex-shrink: 0;
}

.lp-btn-grad span {
  position: relative;
  z-index: 1;
}

.lp-btn-grad .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* フォームまわり */
.section-form {
  width: 100%;
  margin: 0 auto clamp(48px, 8vw, 96px);
}

.section-form .inner1000 {
  width: min(1000px, 100% - 32px);
  margin-inline: auto;
}

.section-form .txt_center {
  text-align: center;
}

/* FOOTER：リンク群の折り返し安定 */
.lp-footer__addr {
  font-style: normal;
}

.lp-footer__links {
  min-width: min(520px, 100%);
}

.lp-footer__btns a {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .lp-cta__grid {
    align-items: center;
  }

  .lp-cta__media,
  .lp-cta__content {
    flex-basis: 100%;
  }

  .lp-cta__content {
    align-items: center;
    text-align: center;
  }

  .lp-footer__main {
    gap: 48px;
  }

  .lp-footer__links {
    align-items: flex-start;
    min-width: 0;
  }

  .lp-footer__nav,
  .lp-footer__btns {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .section-image-styles {
    gap: 48px;
    padding: 80px 20px;
  }

  .section-image-styles .image-styles-container {
    gap: 32px;
  }

  .section-image-styles .style-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
  }

  .section-image-styles .style-btn {
    width: 100%;
    min-height: 42px;
    height: auto;
    padding: 8px 10px;
  }

  .section-image-styles .style-btn-text {
    font-size: 15px;
    line-height: 1.3;
  }

  .section-image-styles .image-styles-preview {
    border-radius: 16px;
  }

  .section-image-styles .image-styles-preview-container {
    padding: 24px 48px 32px;
  }

  .section-image-styles .image-styles-preview-item {
    min-height: 260px;
  }

  .section-image-styles .image-styles-preview-img {
    max-width: 100%;
    max-height: 260px;
  }

  .section-image-styles .arrow-left,
  .section-image-styles .image-styles-arrow-left-icon {
    left: 8px;
  }

  .section-image-styles .arrow-right,
  .section-image-styles .image-styles-arrow-right-icon {
    right: 8px;
  }

  .section-image-styles .arrow-svg,
  .section-image-styles .image-styles-arrow-left-icon img,
  .section-image-styles .image-styles-arrow-right-icon img {
    width: 36px;
    height: 36px;
  }

  .lp-cta {
    padding: 80px 20px;
    gap: 48px;
  }

  .lp-cta__grid {
    gap: 32px;
  }

  .lp-cta__media {
    flex-direction: column;
    gap: 24px;
  }

  .lp-cta__bubble {
    justify-content: center;
  }

  .lp-cta__bubble-text {
    padding: 14px 22px;
    line-height: 1.7;
  }

  .lp-cta__quote {
    font-size: 40px;
  }

  .lp-btn-grad {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    gap: 16px;
    text-align: center;
  }

  .lp-footer {
    padding: 80px 20px 32px;
  }

  .lp-footer__cta {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .lp-footer__cta-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 20px;
    gap: 16px;
    text-align: center;
  }

  .lp-footer__brand {
    flex-direction: column;
    gap: 24px;
  }

  .lp-footer__main {
    flex-direction: column;
    gap: 40px;
  }

  .lp-footer__nav,
  .lp-footer__btns {
    justify-content: flex-start;
    gap: 16px 24px;
  }

  .lp-footer__nav a,
  .lp-footer__btns a {
    font-size: 16px;
  }
}
/* =====================================================
   Ai Blog SEO LP — インラインスタイル追記分
   既存の style.css の末尾にこの内容を追記してください
   （ai-blog-seo-asset/style.css に append）
===================================================== */


/* ===== DATA INSIGHT セクション専用スタイル ===== */
body { margin: 0; background: #ffffff; }
.section-data-insight {
    background: #F2F0EE;
    padding: 120px 0 120px;
    overflow: hidden;
}
.section-data-insight .header-title2 .span3 {
    color: transparent;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.di-container {
    max-width: 1440px;
    margin: 80px auto 0;
    padding: 0 40px;
}
.di-card {
    background: #fff;
    border: 1px solid #F2EEF3;
    border-radius: 20px;
    padding: 64px 40px;
    box-shadow: 0 10px 40px rgba(31,26,44,0.06);
    margin-bottom: 80px;
}
.di-card-title {
    text-align: center;
    font-size: 48px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #D71C7E;
    letter-spacing: 0.96px;
    margin: 0 0 24px;
    line-height: 1.4;
}
.di-legend {
    display: flex;
    gap: 24px;
    padding-left: 8px;
    margin-bottom: 16px;
}
.di-legend-item { display: flex; align-items: center; gap: 8px; }
.di-legend-mark {
    display: inline-block;
    width: 22px; height: 3px;
    border-radius: 2px;
    flex-shrink: 0;
}
.di-legend-mark--pink { background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%); }
.di-legend-mark--gray { height: 0; border-top: 2px dashed #9A8E94; }
.di-legend-label { font-size: 14px; font-weight: 600; color: #333; font-family: 'Noto Sans JP', sans-serif; }
.di-legend-label--muted { color: #6b6b6b; }
.di-chart-wrap {
    width: 100%;
    aspect-ratio: 1358 / 505;
    position: relative;
    margin-bottom: 64px;
}
.di-chart-wrap canvas { width: 100% !important; height: 100% !important; }
.di-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 16px; }
.di-stat {
    padding: 32px; border-radius: 12px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center; gap: 16px;
}
.di-stat--pink   { background: #FDE8F1; }
.di-stat--gray   { background: #F2F0EE; }
.di-stat--accent { background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%); color: #fff; }
.di-stat-eyebrow { margin: 0; font-family: 'Josefin Sans', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.32px; }
.di-stat--pink   .di-stat-eyebrow { color: #D71C7E; }
.di-stat--gray   .di-stat-eyebrow { color: #333; }
.di-stat--accent .di-stat-eyebrow { color: #FFD0E3; }
.di-stat-label { margin: 0 0 8px; font-family: 'Noto Sans JP', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: 0.48px; }
.di-stat--pink   .di-stat-label { color: #D71C7E; }
.di-stat--gray   .di-stat-label { color: #333; }
.di-stat--accent .di-stat-label { color: #fff; }
.di-stat-num { margin: 0; display: inline-flex; align-items: flex-end; gap: 4px; line-height: 1; font-family: 'Noto Sans JP', sans-serif; font-weight: 700; }
.di-stat-num-main { font-size: 96px; letter-spacing: 1.92px; line-height: 1; }
.di-stat-num-unit, .di-stat-num-sub { font-size: 48px; line-height: 1; }
.di-stat--pink .di-stat-num-main, .di-stat--pink .di-stat-num-unit {
    color: transparent;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text; background-clip: text;
}
.di-stat--gray .di-stat-num-main, .di-stat--gray .di-stat-num-unit { color: #333; }
.di-stat--accent .di-stat-num-main, .di-stat--accent .di-stat-num-sub { color: #fff; }
.di-source {
    margin: 16px 0 0; display: flex; justify-content: flex-end;
    align-items: center; gap: 6px; font-size: 12px;
    color: #C92E74; font-family: 'Noto Sans JP', sans-serif; font-weight: 500;
}
.di-source svg { color: #C92E74; flex-shrink: 0; }
.di-sub-heading {
    text-align: center; margin: 64px 0;
    font-family: 'Noto Sans JP', sans-serif; font-size: 48px; font-weight: 700;
    color: #333; letter-spacing: 0.96px; line-height: 1.5;
}
.di-sub-heading-accent {
    color: transparent;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text; background-clip: text;
}
.di-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.di-point {
    position: relative; background: #fff;
    border: 1px solid #F2EEF3; border-radius: 16px;
    padding: 32px 28px 40px; overflow: hidden;
}
.di-point-num {
    margin: 0 0 16px;
    color: transparent;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text; background-clip: text;
    font-family: 'DIN 2014','DIN Next','DIN','DM Sans',sans-serif;
    font-size: 96px; font-weight: 600; line-height: 1.25;
    letter-spacing: 1.92px; text-align: left !important;
}
.di-point-icon { position: absolute; top: 25px; right: 28px; color: #FFB8D6; line-height: 0; }
.section-data-insight svg, .di-point-icon svg, .di-source svg {
    fill: none !important; stroke: currentColor !important;
}
.di-point-title {
    margin: 0 0 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px; font-weight: 700; line-height: 1.4;
    letter-spacing: 1.12px;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.di-point-desc {
    margin: 0; font-family: 'Noto Sans', sans-serif;
    font-size: 20px; font-weight: 600; line-height: 2;
    letter-spacing: 0.4px; color: #333;
}
@media (max-width: 1024px) {
    .di-card { padding: 40px 28px; }
    .di-card-title { font-size: 32px; }
    .di-sub-heading { font-size: 32px; }
    .di-stats, .di-points { grid-template-columns: 1fr; gap: 20px; }
    .di-point-icon svg { width: 96px; height: 96px; }
    .di-point-num { font-size: 72px; }
    .di-point-title { font-size: 22px; }
    .di-point-desc { font-size: 16px; line-height: 1.85; }
    .di-stat-num-main { font-size: 80px; }
    .di-stat-num-unit, .di-stat-num-sub { font-size: 40px; }
}
@media (max-width: 600px) {
    .section-data-insight { padding: 80px 0; }
    .di-container { padding: 0 20px; margin-top: 48px; }
    .di-card { padding: 24px 20px; border-radius: 16px; }
    .di-card-title { font-size: 22px; line-height: 1.5; }
    .di-sub-heading { font-size: 22px; margin: 48px 0; }
    .di-source { justify-content: center; text-align: center; }
    .di-stat-num-main { font-size: 64px; }
    .di-stat-num-unit, .di-stat-num-sub { font-size: 32px; }
}
/* 白背景オーバーライド */
.section-data-insight { background: #FFFFFF !important; }
.section-data-insight {
    position: relative !important; width: 100vw !important; max-width: none !important;
    margin-left: calc(50% - 50vw) !important; margin-right: calc(50% - 50vw) !important;
    box-sizing: border-box !important;
}
.section-data-insight .about-heading-group {
    text-align: center !important; align-items: center !important;
    width: 100% !important; margin-left: auto !important; margin-right: auto !important;
    box-sizing: border-box; padding-left: 20px !important; padding-right: 20px !important;
}
.section-data-insight .about-heading-group .header-title { justify-content: center !important; text-align: center !important; }
.section-data-insight .about-heading-group .header-title2 { text-align: center !important; }
.section-data-insight .about-heading-group .description,
.section-data-insight .about-heading-group .speech-text { text-align: center !important; }
.di-card-title { margin: 0 0 64px !important; }
.di-legend { margin-bottom: 56px !important; padding-left: 8px; }
.di-chart-wrap { margin-bottom: 96px !important; }
.di-stat, .di-stat--pink, .di-stat--gray, .di-stat--accent {
    background: #FFFFFF !important; border: 1px solid #F2EEF3 !important;
    border-radius: 20px !important; box-shadow: 0 10px 40px rgba(31,26,44,0.06) !important;
}
.di-stat--accent .di-stat-eyebrow { color: #D71C7E !important; }
.di-stat--accent .di-stat-label { color: #D71C7E !important; }
.di-stat--accent .di-stat-num-main, .di-stat--accent .di-stat-num-sub {
    color: transparent !important;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    -webkit-background-clip: text; background-clip: text;
}
.di-point {
    background: #FFFFFF !important; border: 1px solid #F2EEF3 !important;
    border-radius: 20px !important; box-shadow: 0 10px 40px rgba(31,26,44,0.06) !important;
}
.di-chart-inner { width: 100%; height: 100%; }
@media (max-width: 768px) {
    .di-chart-wrap {
        overflow-x: auto; overflow-y: hidden;
        aspect-ratio: unset !important; height: 360px !important;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 48px !important; padding-bottom: 8px;
    }
    .di-chart-inner { width: 720px; height: 100%; }
    .di-chart-wrap canvas { width: 720px !important; height: 100% !important; }
    .di-chart-wrap::-webkit-scrollbar { height: 6px; }
    .di-chart-wrap::-webkit-scrollbar-track { background: #f5f5f5; border-radius: 3px; }
    .di-chart-wrap::-webkit-scrollbar-thumb { background: #d0d0d0; border-radius: 3px; }
    .di-card-title { margin: 0 0 32px !important; }
    .di-legend { margin-bottom: 24px !important; }
}
@media (min-width: 768px) {
    .fv-content { transform: translateY(30px) !important; }
}


/* ===== ヘッダー / FV CTA ホバー調整 ===== */
.header-logo-link {
    display: inline-flex; align-items: center;
    text-decoration: none; transition: opacity .2s ease;
}
.header-logo-link:hover { opacity: .8; }
.header.header--desktop {
    transform: translateY(0) !important; top: 0 !important;
    height: auto !important; min-height: 136px !important;
    padding: 12px 0 0 !important;
    background: transparent !important; box-shadow: none !important; backdrop-filter: none !important;
}
.header.header--desktop .header-container {
    padding: 0 clamp(12px, 1.8vw, 28px) !important;
    max-width: none !important; width: 100% !important; margin: 0 !important;
    display: flex !important; align-items: center !important;
    justify-content: space-between !important;
    gap: clamp(16px, 2vw, 40px) !important; box-sizing: border-box !important;
}
.header.header--desktop .header-logo-img--color { display: none !important; }
.header.header--desktop .logo-ai-blog-seo-whitelogo-ai-icon { display: block !important; opacity: 1 !important; }
.header.header--desktop .header-logo-wrap img { height: clamp(30px, 2.2vw, 38px); width: auto; }
.header .navi {
    display: flex !important; align-items: center !important;
    justify-content: flex-end !important; gap: 0 !important;
    flex: 0 1 min(72vw, 1320px) !important;
    width: min(72vw, 1320px) !important;
    max-width: calc(100% - clamp(190px, 20vw, 340px)) !important;
    min-width: 0 !important; margin-left: auto !important;
}
.navi-pill {
    display: inline-flex; overflow: hidden;
    align-items: center; justify-content: flex-end;
    width: 100%; margin-left: auto;
    min-height: clamp(76px, 5vw, 94px);
    background: #fff; border-radius: 999px;
    padding: clamp(8px, 0.8vw, 14px) clamp(10px, 0.9vw, 16px) clamp(8px, 0.8vw, 14px) clamp(20px, 2vw, 42px);
    gap: clamp(14px, 1.4vw, 36px);
    box-shadow: 0 6px 24px rgba(180,40,120,0.18);
    box-sizing: border-box;
}
.header .navi-intem-list {
    display: flex !important; align-items: center !important;
    justify-content: flex-start !important;
    flex: 1 1 auto !important; min-width: 0 !important;
    gap: clamp(14px, 1.4vw, 32px) !important;
    margin: 0 auto 0 0 !important;
}
.header .navi-intem { list-style: none !important; display: inline-flex !important; }
.header .navi-intem2 {
    color: #D71C7E !important;
    font-size: clamp(14px, 1.15vw, 20px) !important;
    font-weight: 700 !important;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
    text-decoration: none !important; white-space: nowrap !important;
    letter-spacing: 0.02em !important; transition: opacity .2s ease !important;
}
.header .navi-intem2:hover { opacity: 0.7 !important; }
.header-tel-cta {
    display: inline-flex; flex: 0 0 auto;
    flex-direction: column; align-items: flex-start;
    justify-content: center; text-decoration: none;
    line-height: 1; transition: opacity .2s ease;
}
.header-tel-cta:hover { opacity: .7; }
.header-tel-cta__body { display: inline-flex; flex-direction: column; align-items: flex-start; }
.header-tel-cta__number {
    font-size: clamp(24px, 2.1vw, 36px); font-weight: 700;
    letter-spacing: 0.02em;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
    color: #D71C7E; line-height: 1.05; white-space: nowrap;
}
.header-tel-cta__hours {
    font-size: clamp(10px, 0.82vw, 14px); font-weight: 700;
    color: #D71C7E; font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
    letter-spacing: 0.01em; white-space: nowrap; margin-top: 4px;
}
.header .btn-primary {
    align-self: center !important; position: relative !important;
    overflow: hidden !important; isolation: isolate !important;
    display: inline-flex !important; align-items: center !important;
    justify-content: center !important; gap: 15.56px !important;
    min-height: clamp(50px, 3.8vw, 64px) !important;
    padding: clamp(10px, 0.8vw, 14px) clamp(18px, 1.8vw, 34px) !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #F80759 0%, #BC4E9C 100%) !important;
    color: #fff !important; font-weight: 700 !important;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
    text-decoration: none !important;
    box-shadow: 0 2.07px 12.44px rgba(0,0,0,0.08) !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
    box-sizing: border-box !important; flex: 0 0 auto !important;
}
.header .btn-primary::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.26) 0%, rgba(255,255,255,.08) 100%);
    transform: translateX(-101%); transition: transform 0.4s ease;
}
.header .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(180,40,120,0.25) !important;
}
.header .btn-primary:hover::before { transform: translateX(0); }
.header.header--desktop .navi .btn-primary,
.header.header--desktop .navi .btn-primary .div,
.header.header--desktop .navi .btn-primary span {
    color: #ffffff !important; -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: initial !important; background-clip: initial !important;
}
.header .btn-primary .div {
    position: relative; z-index: 1;
    display: inline-flex !important; align-items: center !important;
    font-size: clamp(16px, 1.05vw, 20px) !important; font-weight: 700 !important;
    line-height: 1.2 !important; letter-spacing: 0.02em !important; white-space: nowrap;
    background: none !important; background-image: none !important;
    box-shadow: none !important;
    -webkit-background-clip: initial !important; background-clip: initial !important;
}
.header .btn-primary .btn-arrow { display: none !important; }
.header .btn-primary .div,
.header .btn-primary .div::before,
.header .btn-primary .div::after {
    background: none !important; background-image: none !important; box-shadow: none !important;
}
.btn-primary-main {
    position: relative !important; overflow: hidden !important;
    isolation: isolate !important; background: #fff !important;
}
.btn-primary-main::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(90deg, #F80759 0%, #BC4E9C 100%);
    transform: translateX(-101%); transition: transform 0.4s ease;
}
.btn-primary-main:hover::before { transform: translateX(0); }
.btn-primary-main .b2, .btn-primary-main strong, .btn-primary-main .btn-arrow {
    position: relative; z-index: 1;
}
.btn-primary-main .b2, .btn-primary-main strong { transition: color .15s ease, -webkit-text-fill-color .15s ease; }
.btn-primary-main:hover .b2, .btn-primary-main:hover strong {
    color: #ffffff !important; -webkit-text-fill-color: #ffffff !important;
    background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important;
}
.btn-primary-main .btn-arrow-img { transition: filter .2s ease; }
.btn-primary-main:hover .btn-arrow-img { filter: brightness(0) invert(1); }
.header-sp__bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; position: relative; z-index: 2;
}
.header-sp__overlay[aria-hidden="true"] { display: none !important; }
.header-sp__logo {
    display: inline-flex; align-items: center;
    text-decoration: none; transition: opacity .2s ease;
}
.header-sp__logo:hover { opacity: .75; }
.header-sp__logo-img { height: 28px; width: auto; display: block; }
.header-sp__logo-img--color { display: none; }
.header-sp__actions { display: inline-flex; align-items: center; gap: 8px; }
.header-sp__tel {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(50deg, #F80759 0%, #BC4E9C 100%);
    color: #fff; text-decoration: none;
    box-shadow: 0 4px 12px rgba(215,28,126,0.25);
    transition: transform .2s ease;
}
.header-sp__tel:hover { transform: translateY(-1px); }
.header-sp__tel svg { fill: none !important; stroke: currentColor !important; }
@media (max-width: 1280px) {
    .header .navi { width: min(76vw, 1180px) !important; max-width: calc(100% - clamp(170px, 18vw, 300px)) !important; }
    .navi-pill { padding-left: 22px; gap: 12px; }
    .header .navi-intem-list { gap: 12px !important; }
    .header .navi-intem2 { font-size: 14px !important; }
    .header-tel-cta__number { font-size: 24px; }
    .header-tel-cta__hours { font-size: 10px; }
    .header .btn-primary .div { font-size: 15px !important; }
}
@media (max-width: 1100px) {
    .header .navi { width: min(78vw, 980px) !important; max-width: calc(100% - 150px) !important; }
    .navi-pill { min-height: 78px; padding: 8px 10px 8px 18px; gap: 10px; }
    .header .navi-intem-list { gap: 10px !important; }
    .header .navi-intem2 { font-size: 13px !important; }
    .header-tel-cta__number { font-size: 22px; }
    .header-tel-cta__hours { font-size: 9px; }
    .header .btn-primary { min-height: 46px !important; padding: 8px 16px !important; }
    .header .btn-primary .div { font-size: 13px !important; line-height: 1.2 !important; }
}


/* ===== ヘッダー最終調整 ===== */
.header.header--desktop .header-container { align-items: center !important; }
.header.header--desktop .navi {
    display: flex !important; justify-content: flex-end !important;
    align-items: center !important; flex: 1 1 auto !important;
    width: auto !important; max-width: none !important;
    min-width: 0 !important; margin-left: auto !important;
}
.header.header--desktop .navi-pill {
    width: auto !important; min-width: min(68vw, 1080px) !important;
    max-width: calc(100vw - 220px) !important; margin-left: auto !important;
    display: inline-flex !important; justify-content: flex-end !important;
    align-items: center !important; gap: 14px !important;
    padding: 8px 14px 8px 18px !important; min-height: 76px !important;
    box-sizing: border-box !important; overflow: visible !important;
}
.header.header--desktop .navi .navi-intem-list {
    flex: 0 0 auto !important; width: auto !important;
    min-width: 0 !important; margin: 0 !important;
    justify-content: flex-start !important; gap: 18px !important;
}
.header.header--desktop .navi .navi-intem { flex: 0 0 auto !important; }
.header.header--desktop .header-tel-cta {
    flex: 0 0 auto !important; margin-left: 4px !important;
    margin-right: 0 !important; padding-inline: 0 !important;
}
.header.header--desktop .btn-primary { flex: 0 0 auto !important; margin-left: 4px !important; }
.header.header--desktop .navi-intem2 { font-size: 14px !important; white-space: nowrap !important; }
.header.header--desktop .header-tel-cta__number { font-size: 22px !important; line-height: 1.05 !important; white-space: nowrap !important; }
.header.header--desktop .header-tel-cta__hours { font-size: 9px !important; line-height: 1.2 !important; white-space: nowrap !important; }
.header.header--desktop .btn-primary .div { font-size: 13px !important; line-height: 1.2 !important; white-space: nowrap !important; }
@media (min-width: 1440px) {
    .header.header--desktop .navi-pill { min-width: 1120px !important; gap: 16px !important; padding-left: 20px !important; }
    .header.header--desktop .navi .navi-intem-list { gap: 20px !important; }
    .header.header--desktop .header-tel-cta__number { font-size: 24px !important; }
    .header.header--desktop .header-tel-cta__hours { font-size: 10px !important; }
    .header.header--desktop .btn-primary .div { font-size: 14px !important; }
}


/* ===== DESKTOP HEADER FINAL CLEAN OVERRIDE ===== */
@media (min-width: 768px) {
  .header.header--desktop { padding: 10px 0 0 !important; min-height: auto !important; }
  .header.header--desktop .header-container {
    width: 100% !important; padding: 0 20px !important; margin: 0 !important;
    display: flex !important; align-items: center !important;
    justify-content: space-between !important; gap: 20px !important; box-sizing: border-box !important;
  }
  .header.header--desktop .header-logo-wrap img { height: 38px !important; width: auto !important; }
  .header.header--desktop .navi {
    flex: 0 0 auto !important; width: auto !important;
    max-width: calc(100vw - 340px) !important; min-width: 0 !important;
    margin-left: auto !important; display: flex !important;
    align-items: center !important; justify-content: flex-end !important;
  }
  .header.header--desktop .navi-pill {
    display: inline-flex !important; width: auto !important; max-width: 100% !important;
    min-width: 0 !important; margin-left: auto !important;
    align-items: center !important; justify-content: flex-end !important;
    padding: 10px 14px 10px 22px !important; gap: 18px !important;
    min-height: 78px !important; border-radius: 999px !important;
    overflow: visible !important; box-sizing: border-box !important; background: #fff !important;
  }
  .header.header--desktop .navi .navi-intem-list {
    flex: 0 0 auto !important; width: auto !important; min-width: 0 !important; margin: 0 !important;
    display: inline-flex !important; align-items: center !important;
    justify-content: flex-start !important; gap: 24px !important;
  }
  .header.header--desktop .navi .navi-intem { display: inline-flex !important; flex: 0 0 auto !important; }
  .header.header--desktop .navi .navi-intem2 {
    font-size: 20px !important; font-weight: 700 !important;
    line-height: 1.2 !important; letter-spacing: 0.40px !important; white-space: nowrap !important;
  }
  .header.header--desktop .header-tel-cta {
    flex: 0 0 auto !important; margin-left: 6px !important;
    margin-right: 0 !important; padding: 0 !important;
  }
  .header.header--desktop .header-tel-cta__number {
    font-size: 36px !important; font-weight: 700 !important;
    line-height: 1.1 !important; letter-spacing: 0.72px !important; white-space: nowrap !important;
  }
  .header.header--desktop .header-tel-cta__hours {
    font-size: 14px !important; font-weight: 700 !important;
    line-height: 1.2 !important; letter-spacing: 0.28px !important;
    white-space: nowrap !important; margin-top: 4px !important;
  }
  .header.header--desktop .btn-primary {
    flex: 0 0 auto !important; align-self: center !important;
    height: 64px !important; min-height: 64px !important;
    padding: 0 34px !important; margin-left: 6px !important; border-radius: 999px !important;
  }
  .header.header--desktop .btn-primary .div {
    font-size: 20px !important; font-weight: 700 !important;
    line-height: 1.2 !important; letter-spacing: 0.40px !important;
    white-space: nowrap !important; height: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .header.header--desktop .navi { max-width: calc(100vw - 300px) !important; }
  .header.header--desktop .navi-pill { padding: 8px 12px 8px 18px !important; gap: 14px !important; min-height: 72px !important; }
  .header.header--desktop .navi .navi-intem-list { gap: 18px !important; }
  .header.header--desktop .navi .navi-intem2 { font-size: 16px !important; }
  .header.header--desktop .header-tel-cta__number { font-size: 28px !important; letter-spacing: 0.02em !important; }
  .header.header--desktop .header-tel-cta__hours { font-size: 12px !important; }
  .header.header--desktop .btn-primary { height: 56px !important; min-height: 56px !important; padding: 0 24px !important; }
  .header.header--desktop .btn-primary .div { font-size: 16px !important; letter-spacing: 0.02em !important; }
}


/* ===== ナビ余白微調整 ===== */
@media (min-width: 768px) {
  .header.header--desktop .navi-pill { padding-left: 30px !important; }
  .header.header--desktop .navi .navi-intem-list { margin-right: 10px !important; }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .header.header--desktop .navi-pill { padding-left: 24px !important; }
  .header.header--desktop .navi .navi-intem-list { margin-right: 8px !important; }
}


/* ===== FV ヘッダー左右ガイド ===== */
@media (min-width: 768px) {
  :root { --fv-guide-left: 60px; --fv-guide-right: 64px; }
  .header.header--desktop .header-container {
    padding-left: var(--fv-guide-left) !important;
    padding-right: var(--fv-guide-right) !important; box-sizing: border-box !important;
  }
  .header.header--desktop .header-logo-link { margin-left: 0 !important; flex: 0 0 auto !important; }
  .header.header--desktop .navi {
    margin-left: auto !important; display: flex !important;
    justify-content: flex-end !important; width: auto !important;
    max-width: none !important; flex: 1 1 auto !important; min-width: 0 !important;
  }
  .header.header--desktop .navi-pill { margin-left: auto !important; margin-right: 0 !important; width: auto !important; max-width: 100% !important; }
  .section-fv .fv-container {
    padding-left: var(--fv-guide-left) !important;
    padding-right: var(--fv-guide-right) !important;
    box-sizing: border-box !important; width: 100% !important; max-width: none !important;
  }
  .section-fv .fv-content, .section-fv .fv-copy-group { margin-left: 0 !important; }
  .section-fv .fv-image-group { right: var(--fv-guide-right) !important; left: auto !important; }
}
@media (min-width: 768px) and (max-width: 1440px) {
  :root { --fv-guide-left: 56px; --fv-guide-right: 56px; }
}
@media (min-width: 768px) {
  .section-fv .fv-image-group { right: 0 !important; left: auto !important; }
}


/* ===== スクロールによるヘッダー表示/非表示 ===== */
.header.header--desktop, .header-sp {
  transition: transform 0.4s ease, opacity 0.4s ease !important;
  will-change: transform, opacity;
}
.header.header--desktop.is-header-hidden, .header-sp.is-header-hidden {
  transform: translateY(-120%) !important; opacity: 0 !important; pointer-events: none !important;
}
.header.header--desktop.is-header-visible, .header-sp.is-header-visible {
  transform: translateY(0) !important; opacity: 1 !important; pointer-events: auto !important;
}


/* ===== SP ハンバーガー位置 ===== */
@media (max-width: 767px) {
  .header-sp {
    position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important;
    width: 100% !important; height: 0 !important; z-index: 1000 !important;
    background: transparent !important; box-shadow: none !important; pointer-events: none !important;
  }
  .header-sp__bar {
    height: 0 !important;
    padding: clamp(32px, 9vw, 44px) clamp(28px, 7vw, 36px) 0 0 !important;
    display: flex !important; align-items: flex-start !important;
    justify-content: flex-end !important; background: transparent !important;
    pointer-events: none !important; box-sizing: border-box !important;
  }
  .header-sp__logo, .header-sp__tel { display: none !important; }
  .header-sp__actions {
    display: flex !important; justify-content: flex-end !important;
    align-items: center !important; pointer-events: auto !important;
  }
  .header-sp__menu-btn {
    display: inline-flex !important; align-items: center !important;
    justify-content: center !important; width: 44px !important; height: 44px !important;
    padding: 0 !important; border: 0 !important; background: transparent !important;
    box-shadow: none !important; pointer-events: auto !important;
  }
  .header-sp__burger {
    display: flex !important; flex-direction: column !important;
    justify-content: space-between !important; width: 32px !important; height: 22px !important;
  }
  .header-sp__burger span {
    display: block !important; width: 32px !important; height: 3px !important;
    border-radius: 999px !important; background: #fff !important;
  }
  .header-sp__overlay, .sp-drawer-panel, .sp-drawer { pointer-events: auto !important; }
}


/* ===== SP ドロワー 閉じるボタン ===== */
.sp-drawer-close { display: none; }
@media (max-width: 767px) {
  .sp-drawer { position: relative !important; }
  .sp-drawer-close {
    display: block !important; position: absolute !important;
    top: 28px !important; right: 22px !important; z-index: 9999 !important;
    width: 44px !important; height: 44px !important; padding: 0 !important;
    border: 0 !important; background: transparent !important;
    box-shadow: none !important; cursor: pointer !important; pointer-events: auto !important;
  }
  .sp-drawer-close span {
    position: absolute !important; top: 50% !important; left: 50% !important;
    display: block !important; width: 32px !important; height: 3px !important;
    border-radius: 999px !important; background: #E82B8E !important; transform-origin: center !important;
  }
  .sp-drawer-close span:first-child { transform: translate(-50%, -50%) rotate(45deg) !important; }
  .sp-drawer-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg) !important; }
}

/* =====================================================
   CLEAN FINAL BLOCK
   ここから下は追記の重複を整理した最終版
===================================================== */

/* 共通：リンク下線を消す */
a,
a:hover,
a:visited,
a:focus {
  text-decoration: none !important;
}

/* ===== 社名横アイコン ===== */
.company-name-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.company-name-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #333;
  text-decoration: none;
  flex: 0 0 24px;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}

.company-name-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.company-name-icon-link:hover {
  color: #E82B8E;
  transform: translateY(-1px);
}

/* ===== SP ドロワー 電話CTA ===== */
.sp-drawer-tel-cta {
  display: none;
}

@media (max-width: 767px) {
  .sp-drawer-tel-cta {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 28px auto 34px !important;
    text-align: center !important;
    text-decoration: none !important;
    color: #D71C7E !important;
    line-height: 1.1 !important;
    width: fit-content !important;
    max-width: 100% !important;
  }

  .sp-drawer-tel-cta__number {
    display: block !important;
    color: #D71C7E !important;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
    font-size: clamp(38px, 10vw, 56px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  .sp-drawer-tel-cta__hours {
    display: block !important;
    margin-top: 8px !important;
    color: #D71C7E !important;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
    font-size: clamp(15px, 4vw, 22px) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
  }
}

/* ===== プレビュー画像スライダー（最終版） ===== */
.section-image-styles .image-styles-container2 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 72px !important;
  width: 100% !important;
}

.section-image-styles .style-selector {
  margin-bottom: 0 !important;
}

.section-image-styles .image-styles-preview {
  position: relative !important;
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: visible !important;
}

.section-image-styles .image-styles-preview-container,
.section-image-styles .image-styles-preview-track,
.section-image-styles .image-styles-preview-item {
  position: relative !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  transform: none !important;
}

.section-image-styles .image-styles-preview-item {
  min-height: 780px !important;
  height: 780px !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.section-image-styles .image-styles-preview-img {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  display: none !important;
  width: auto !important;
  height: auto !important;
  max-width: min(1140px, calc(100vw - 360px)) !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 !important;
  clip-path: none !important;
}

.section-image-styles .image-styles-preview-img.is-active {
  display: block !important;
}

@media (min-width: 768px) {
  .section-image-styles .image-styles-arrow-left-icon,
  .section-image-styles .image-styles-arrow-right-icon {
    position: absolute !important;
    top: 50% !important;
    z-index: 10 !important;
  }

  .section-image-styles .image-styles-arrow-left-icon {
    left: calc(50% - 660px) !important;
    right: auto !important;
    transform: translateY(-50%) !important;
  }

  .section-image-styles .image-styles-arrow-right-icon {
    left: calc(50% + 660px) !important;
    right: auto !important;
    transform: translate(-100%, -50%) !important;
  }
}

@media (max-width: 767px) {
  .section-image-styles .image-styles-container2 {
    gap: 40px !important;
  }

  .section-image-styles .image-styles-preview-item {
    height: 420px !important;
    min-height: 420px !important;
  }

  .section-image-styles .image-styles-preview-img {
    max-width: calc(100vw - 88px) !important;
  }

  .section-image-styles .image-styles-arrow-left-icon {
    left: 8px !important;
    right: auto !important;
    transform: translateY(-50%) !important;
  }

  .section-image-styles .image-styles-arrow-right-icon {
    right: 8px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
  }
}


/* ===== SP 主な機能：2列カード復旧 ===== */
@media (max-width: 767px) {
  .section-function {
    padding: 64px 16px 72px !important;
    border-radius: 0 0 60px 0 !important;
    gap: 32px !important;
  }

  .section-function .about-heading-group {
    gap: 12px !important;
  }

  .function-container,
  .function-container2 {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
  }

  .function-card-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .function-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 150px !important;
    padding: 16px 10px 14px !important;
    border-radius: 8px !important;
    gap: 8px !important;
    box-shadow: none !important;
  }

  .function-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .function-card-icon-wrap {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }

  .function-card-icon {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain !important;
  }

  .function-content {
    gap: 6px !important;
  }

  .function-card .about-strength-card-title {
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: #D71C7E !important;
  }

  .function-list {
    gap: 2px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .function-label,
  .function-list .features-block-label-icon {
    display: flex !important;
    align-items: flex-start !important;
    gap: 3px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .function-label .txt_col02 {
    font-size: 10px !important;
    line-height: 1.6 !important;
    flex: 0 0 auto !important;
  }

  .function-list .bullet-text,
  .function-list .bullet-text25 {
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
    color: #333 !important;
  }
}

/* ===== FLOW：PCは横並び、矢印は小さめ ===== */
.flow-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  list-style: none !important;
}

.flow-card-01 {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: 380px !important;
}

.flow-list > picture {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 30px !important;
}

.flow-arrow-icon {
  width: 34px !important;
  height: auto !important;
  display: block !important;
  flex-shrink: 0 !important;
}

@media (max-width: 767px) {
  .flow-list {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .flow-card-01 {
    max-width: 100% !important;
    width: 100% !important;
  }

  .flow-list > picture {
    padding: 18px 0 !important;
  }
}

/* ===== フッター上部 CTA ===== */
.footer .footer-cta,
.footer .footer-cta-container {
  overflow: visible !important;
}

.footer .footer-cta .footer-cta-title {
  font-size: clamp(36px, 3.2vw, 52px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0.03em !important;
}

.footer .footer-cta .footer-cta-description {
  margin-top: 14px !important;
  font-size: clamp(16px, 1.4vw, 22px) !important;
  line-height: 1.55 !important;
}

.footer .footer-cta .btn-primary-main {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 767px) {
  .footer .footer-cta .footer-cta-title {
    font-size: clamp(30px, 7vw, 40px) !important;
  }

  .footer .footer-cta .footer-cta-description {
    font-size: clamp(16px, 4vw, 22px) !important;
  }

  .footer-cta-illustration-left-icon {
    bottom: 0 !important;
    left: 0 !important;
    top: auto !important;
    width: clamp(100px, 35vw, 160px) !important;
    height: auto !important;
  }
}

/* ===== フッター下部：1440px幅レイアウト ===== */
.footer .address-tel {
  display: none !important;
}

@media (min-width: 768px) {
  .footer-container.footer-container--cta-updated {
    width: min(1440px, 100%) !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 50px 140px 22px !important;
    box-sizing: border-box !important;

    display: grid !important;
    grid-template-columns: 640px minmax(0, 1fr) !important;
    grid-template-areas:
      "company contact"
      "legal   contact"
      "copy    copy" !important;
    column-gap: 60px !important;
    row-gap: 20px !important;
    align-items: start !important;
  }

  .footer-company {
    grid-area: company !important;
    display: grid !important;
    grid-template-columns: 120px minmax(0, 1fr) !important;
    column-gap: 24px !important;
    row-gap: 0 !important;
    align-items: start !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-company-brand {
    display: contents !important;
  }

  .company-logo-icon {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 120px !important;
    max-width: 120px !important;
    height: auto !important;
    align-self: start !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .company-heading {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
  }

  .company-tagline {
    margin: 0 0 8px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  .company-name-row {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
  }

  .company-name {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  .company-name-icon-link {
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    padding: 0 !important;
    align-self: center !important;
  }

  .company-name-icon-link svg {
    width: 20px !important;
    height: 20px !important;
  }

  .company-address {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
    font-style: normal !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.8 !important;
    letter-spacing: 0 !important;
  }

  .address-post,
  .address-address {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .address-post {
    margin-bottom: 6px !important;
  }

  .footer-legal-nav {
    grid-area: legal !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 24px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 0 0 144px !important;
    position: static !important;
    transform: none !important;
    text-align: left !important;
  }

  .footer-legal-nav a {
    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    color: #333 !important;
  }

  .footer-contact.footer-contact--cta-updated {
    grid-area: contact !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    gap: 70px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 6px 0 0 !important;
  }

  .footer-cta-actions {
    order: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-tel-cta {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 50px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    text-decoration: none !important;
    color: #D71C7E !important;
    white-space: nowrap !important;
    transition: opacity .2s ease !important;
  }

  .footer-tel-cta:hover {
    opacity: .72 !important;
  }

  .footer-tel-cta__number {
    display: block !important;
    width: 100% !important;
    color: #D71C7E !important;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.03em !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .footer-tel-cta__hours {
    display: block !important;
    width: 100% !important;
    margin-top: 4px !important;
    color: #D71C7E !important;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .footer-demo-cta {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 222px !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 28px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #F80759 0%, #BC4E9C 100%) !important;
    color: #fff !important;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 8px 24px rgba(180,40,120,0.18) !important;
    overflow: hidden !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
  }

  .footer-demo-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.08) 100%);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
  }

  .footer-demo-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 12px 28px rgba(180,40,120,0.24) !important;
  }

  .footer-demo-cta:hover::before {
    transform: translateX(0);
  }

  .footer-demo-cta span {
    position: relative;
    z-index: 1;
  }

  .footer-contact--cta-updated .navi-intem-list {
    order: 2 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 42px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-contact--cta-updated .navi-intem {
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-contact--cta-updated .navi-intem2 {
    font-size: 16px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    color: #D71C7E !important;
    white-space: nowrap !important;
  }

  .footer-copyright {
    grid-area: copy !important;
    justify-self: center !important;
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    color: #333 !important;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .footer-container.footer-container--cta-updated {
    padding-left: 80px !important;
    padding-right: 80px !important;
    grid-template-columns: 560px minmax(0, 1fr) !important;
    column-gap: 40px !important;
  }

  .footer-company {
    grid-template-columns: 110px minmax(0, 1fr) !important;
    column-gap: 22px !important;
  }

  .company-logo-icon {
    width: 110px !important;
    max-width: 110px !important;
  }

  .footer-legal-nav {
    padding-left: 132px !important;
  }

  .footer-cta-actions {
    gap: 14px !important;
  }

  .footer-tel-cta__number {
    font-size: 24px !important;
  }

  .footer-tel-cta__hours {
    font-size: 10px !important;
  }

  .footer-demo-cta {
    min-width: 200px !important;
    padding: 0 22px !important;
    font-size: 14px !important;
  }

  .footer-contact--cta-updated .navi-intem-list {
    gap: 28px !important;
  }

  .footer-contact--cta-updated .navi-intem2 {
    font-size: 14px !important;
  }
}

@media (max-width: 767px) {
  .footer-container.footer-container--cta-updated {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 42px 24px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 22px !important;
    box-sizing: border-box !important;
  }

  .footer-company {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    row-gap: 8px !important;
    align-items: start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-company-brand {
    display: contents !important;
  }

  .company-logo-icon {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    width: 92px !important;
    max-width: 92px !important;
    height: auto !important;
    align-self: start !important;
    margin: 0 !important;
  }

  .company-heading {
    grid-column: 2 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .company-tagline {
    margin: 0 0 4px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  .company-name-row {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 4px !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .company-name {
    font-size: clamp(18px, 5vw, 22px) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  .company-name-icon-link {
    display: inline-flex !important;
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
    margin-left: 2px !important;
    padding: 0 !important;
    align-self: center !important;
  }

  .company-name-icon-link svg {
    width: 17px !important;
    height: 17px !important;
  }

  .company-address {
    grid-column: 2 !important;
    grid-row: 2 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.75 !important;
    letter-spacing: 0 !important;
    font-style: normal !important;
  }

  .address-post,
  .address-post span {
    display: block !important;
    white-space: nowrap !important;
  }

  .address-address {
    display: block !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
    line-height: 1.7 !important;
  }

  .footer .address-tel,
  .address-tel {
    display: none !important;
  }

  .footer-contact.footer-contact--cta-updated {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 18px !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
  }

  .footer-cta-actions {
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-tel-cta {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    text-decoration: none !important;
    color: #D71C7E !important;
  }

  .footer-tel-cta__number {
    display: block !important;
    width: 100% !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: 0.02em !important;
    color: #D71C7E !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .footer-tel-cta__hours {
    display: block !important;
    width: 100% !important;
    margin-top: 6px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #D71C7E !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .footer-demo-cta {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(100%, 320px) !important;
    min-height: 52px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #F80759 0%, #BC4E9C 100%) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: 0 8px 24px rgba(180,40,120,0.18) !important;
  }

  .footer-demo-cta span {
    position: relative !important;
    z-index: 1 !important;
    color: #fff !important;
  }

  .footer-contact--cta-updated .navi-intem-list {
    order: 3 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px 22px !important;
    width: 100% !important;
    margin: 4px 0 0 !important;
    padding: 0 !important;
  }

  .footer-contact--cta-updated .navi-intem2 {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #D71C7E !important;
    white-space: nowrap !important;
  }

  .footer-legal-nav {
    order: 4 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    width: 100% !important;
    margin: 4px 0 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .footer-legal-nav a {
    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    color: #333 !important;
  }

  .footer-copyright {
    order: 5 !important;
    display: block !important;
    width: 100% !important;
    margin: 10px 0 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
    text-align: center !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: #333 !important;
  }
}

/* ===== CTAボタン：テキスト/ホバー修正 ===== */
.footer-cta .btn-primary-main,
.section-cta .btn-primary-main {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
}

.footer-cta .btn-primary-main .b2,
.footer-cta .btn-primary-main strong.b2 {
  position: relative !important;
  z-index: 1 !important;
  display: inline !important;
  background: linear-gradient(63deg, #D71C7E 6.73%, #AF2F89 91.51%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #D71C7E !important;
  font-weight: 700 !important;
  font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
  white-space: nowrap !important;
  font-size: clamp(16px, 2vw, 22px) !important;
}

.btn-primary-main:hover .b2,
.btn-primary-main:hover strong.b2,
.btn-primary-main:hover strong,
.footer-cta .btn-primary-main:hover .b2,
.footer-cta .btn-primary-main:hover strong.b2 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

.btn-primary-main:hover .btn-arrow-img {
  filter: brightness(0) invert(1) !important;
}

@media (max-width: 767px) {
  .footer-cta .btn-primary-main,
  .section-fv .btn-primary-main {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 64px !important;
    padding: 16px 24px !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .footer-cta .btn-primary-main .b2,
  .footer-cta .btn-primary-main strong.b2,
  .section-fv .btn-primary-main .b2,
  .section-fv .btn-primary-main strong.b2 {
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    font-size: clamp(16px, 4.5vw, 20px) !important;
    font-weight: 700 !important;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif !important;
    white-space: nowrap !important;
    background: linear-gradient(90deg, #F80759 0%, #BC4E9C 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #F80759 !important;
    text-align: center !important;
  }

  .section-fv .btn-primary-main .btn-arrow {
    position: relative !important;
    z-index: 1 !important;
  }

  .footer-cta .btn-primary-main .btn-arrow,
  .footer-cta .btn-primary-main .btn-arrow-img {
    display: none !important;
  }

  .footer-cta .btn-primary-main:hover .b2,
  .footer-cta .btn-primary-main:hover strong.b2,
  .section-fv .btn-primary-main:hover .b2,
  .section-fv .btn-primary-main:hover strong.b2 {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
  }
}

/* ===== SP：FV上部ロゴエリアの高さを詰める ===== */
@media (max-width: 767px) {
  .fv-header.fv-header--mobile {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .fv-header.fv-header--mobile .fv-logo-icon {
    height: 28px !important;
    width: auto !important;
    display: block !important;
  }
}

/* ===== PC：FVテキストエリア幅調整 ===== */
@media (min-width: 768px) {
  .section-fv .fv-container {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .section-fv .fv-content {
    max-width: 52% !important;
    width: 52% !important;
    flex-shrink: 0 !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }

  .section-fv .fv-copy-group {
    max-width: 100% !important;
  }
}
/* 画像スタイル選択ボタン：崩れ防止 */
.style-select-list,
.image-style-list,
.prompt-style-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  width: 100%;
  box-sizing: border-box;
}

.style-select-list button,
.image-style-list button,
.prompt-style-list button,
.style-btn {
  width: 100%;
  min-height: 80px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  line-height: 1.35;
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 700;
  color: #fff;

  background: linear-gradient(90deg, #f80759 0%, #bc4e9c 100%);
  box-shadow: 0 14px 28px rgba(188, 78, 156, 0.18);

  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* 選択中 */
.style-select-list button.is-active,
.image-style-list button.is-active,
.prompt-style-list button.is-active,
.style-btn.is-active {
  background: linear-gradient(90deg, #c9007a 0%, #f80759 100%);
  box-shadow: 0 16px 32px rgba(248, 7, 89, 0.28);
}

/* SPでさらに崩れにくく */
@media screen and (max-width: 480px) {
  .style-select-list,
  .image-style-list,
  .prompt-style-list {
    gap: 18px 16px;
  }

  .style-select-list button,
  .image-style-list button,
  .prompt-style-list button,
  .style-btn {
    min-height: 74px;
    padding: 12px 14px;
    font-size: 17px;
    line-height: 1.4;
  }
}
/* IMAGE STYLES：SPだけ2列ボタンに調整（PCは触らない） */
@media screen and (max-width: 767px) {
  .section-image-styles .style-selector {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 14px !important;
    width: calc(100% - 48px) !important;
    max-width: 620px !important;
    margin: 38px auto 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .section-image-styles .style-btn-01 {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;
    text-align: center !important;
    line-height: 1.2 !important;
    font-size: clamp(14px, 3.6vw, 20px) !important;
    font-weight: 700 !important;

    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
}
/* DATA INSIGHT：グラフ下3ボックスの背景色調整 */
.di-stats .di-stat--pink {
  background: #fdeaf2 !important;
}

.di-stats .di-stat--gray {
  background: #f3f1f0 !important;
}

.di-stats .di-stat--accent {
  background: linear-gradient(135deg, #f80759 0%, #bc4e9c 100%) !important;
}

/* 右ボックス内の文字を白に */
.di-stats .di-stat--accent,
.di-stats .di-stat--accent * {
  color: #fff !important;
  opacity: 1 !important;
}

/* FV：PCのT8バナー位置調整（画面幅に合わせてCTA下端に寄せる） */
@media screen and (min-width: 768px) {
  .section-fv .fv-official-banner-icon {
    position: absolute !important;
    right: 0 !important;
    top: 760px !important;
    bottom: auto !important;
    z-index: 6 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .section-fv .fv-official-banner-icon img {
    display: block !important;
    width: 360px !important;
    height: auto !important;
    margin: 0 !important;
  }
}

/* 少し広い画面 */
@media screen and (min-width: 1500px) {
  .section-fv .fv-official-banner-icon {
    right: -24px !important;
    top: 780px !important;
  }
}

/* さらに広い画面 */
@media screen and (min-width: 1700px) {
  .section-fv .fv-official-banner-icon {
    right: -48px !important;
    top: 800px !important;
  }
}

/* かなり広い画面 */
@media screen and (min-width: 1900px) {
  .section-fv .fv-official-banner-icon {
    right: -72px !important;
    top: 820px !important;
  }
}

/* 料金セクション全体を吹き出し位置の基準にする */
.section-pricing {
  position: relative !important;
}

/* 初期費用：左ピンク枠の文字を上下中央に */
.section-pricing .pricing-card-header2 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 120px !important;
  padding: 0 !important;
  text-align: center !important;
}

/* 初期費用：右側の30,000円も上下左右中央に */
.section-pricing .pricing-pricing-card-body {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 120px !important;
  padding: 0 !important;
  text-align: center !important;
}

/* 初期費用の文字の余白リセット */
.section-pricing .pricing-card-header2 .pricing-card-title,
.section-pricing .pricing-pricing-card-body .pricing-price-row2,
.section-pricing .pricing-pricing-card-body .pricing-price-value {
  margin: 0 !important;
}

/* 30,000円の横並びを中央に固定 */
.section-pricing .pricing-pricing-card-body .pricing-price-row2,
.section-pricing .pricing-pricing-card-body .pricing-price-value {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  width: 100% !important;
}

/* 吹き出し画像：月額利用料カード右上に被せる */
.section-pricing .pricing-badge-icon {
  position: absolute !important;
  top: 300px !important;
  right: clamp(180px, 14vw, 300px) !important;
  z-index: 20 !important;
  width: 250px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}