/* ==========================================================================
   LP Template - Universal Stylesheet
   PRONIアイミツ LP用 汎用CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (カスタムプロパティ)
   - AIがLP内容に合わせて色やフォントを変更する場合はここを編集
   -------------------------------------------------------------------------- */
:root {
  /* ブランドカラー */
  --color-primary: #de2d2d;
  --color-primary-deep: #b90a0a;
  --color-secondary: #9f7356;
  --color-secondary-deep: #8a5b42;

  /* テキストカラー */
  --color-text-1: rgb(6 16 26 / 92%);
  --color-text-2: rgb(6 16 26 / 62%);
  --color-text-3: rgb(6 16 26 / 38%);

  /* 背景カラー */
  --color-bg-white: #fff;
  --color-bg-light: #f6f6f6;
  --color-bg-muted: #f7f5f3;

  /* ボーダー */
  --color-border: rgb(6 16 26 / 12%);

  /* フォント */
  --font-family: "Schibsted Grotesk", "Noto Sans JP", sans-serif;

  /* コンテンツ幅 */
  --content-width: 1060px;

  /* ブレークポイント: 768px (メディアクエリ内で直接使用) */
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--color-text-1);
  line-height: 1.7;
  letter-spacing: 0.06rem;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg-white);
  overflow-x: hidden;
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Utility: レイアウト
   -------------------------------------------------------------------------- */
.lp-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--page-pad-x);
}

/* 文章・カード列など“読みやすい幅”に絞るときの修飾子 */
.lp-container--narrow {
  max-width: var(--content-width-narrow);
}

@media screen and (min-width: 768px) {
  .lp-container {
    padding: 0 32px;
  }
}

.lp-pc-only {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .lp-pc-only {
    display: block !important;
  }
  .lp-sp-only {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   PART: Header (固定)
   -------------------------------------------------------------------------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(16px, calc((100% - var(--content-width)) / 2));
}

@media screen and (min-width: 768px) {
  .lp-header {
    height: 70px;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 32px;
    border-bottom: none;
    position: relative;
  }
}

.lp-header__logo img,
.lp-header__logo svg {
  height: 32px;
  width: auto;
}

@media screen and (min-width: 768px) {
  .lp-header__logo img,
  .lp-header__logo svg {
    height: 48px;
  }
}

.lp-header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.lp-header__tel {
  display: none;
}

@media screen and (min-width: 768px) {
  .lp-header__tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .lp-header__tel-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-text-1);
    letter-spacing: 0.96px;
    line-height: 1.2;
  }
  .lp-header__tel-hours {
    font-size: 10px;
    color: var(--color-text-2);
    line-height: 1.6;
  }
}

.lp-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}

.lp-header__cta:hover {
  background-color: var(--color-primary-deep);
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .lp-header__cta {
    font-size: 16px;
    padding: 12px 28px;
  }
}

/* --------------------------------------------------------------------------
   PART: Footer (固定)
   -------------------------------------------------------------------------- */
.lp-footer {
  margin-top: 0;
  padding: 24px 16px 60px;
}

@media screen and (min-width: 768px) {
  .lp-footer {
    margin-top: 0;
    padding: 32px 32px 40px;
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
  }
}

.lp-footer__logo img {
  width: 200px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .lp-footer__logo img {
    width: 272px;
  }
}

.lp-footer__links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .lp-footer__links {
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
  }
}

.lp-footer__links a {
  color: var(--color-text-2);
  font-size: 12px;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .lp-footer__links a {
    font-size: 14px;
  }
}

.lp-footer__copyright {
  margin-top: 40px;
  text-align: right;
  font-size: 10px;
  color: var(--color-text-2);
}

@media screen and (min-width: 768px) {
  .lp-footer__copyright {
    font-size: 12px;
  }
}

/* --------------------------------------------------------------------------
   PART 1: Hero Section (ヒーローセクション)
   -------------------------------------------------------------------------- */
.lp-hero {
  padding: 40px 16px;
  text-align: center;
  background-color: var(--color-bg-muted);
}

@media screen and (min-width: 768px) {
  .lp-hero {
    padding: 80px 32px;
  }
}

.lp-hero__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  .lp-hero__title {
    font-size: 40px;
  }
}

.lp-hero__subtitle {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .lp-hero__subtitle {
    font-size: 18px;
    margin-top: 24px;
  }
}

.lp-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 16px 40px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lp-hero__cta:hover {
  background-color: var(--color-primary-deep);
  text-decoration: none;
  box-shadow: var(--elevation-5);
}

@media screen and (min-width: 768px) {
  .lp-hero__cta {
    font-size: 18px;
    padding: 18px 56px;
    margin-top: 40px;
  }
}

.lp-hero__image {
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .lp-hero__image {
    margin-top: 48px;
    max-width: 800px;
  }
}

/* --------------------------------------------------------------------------
   PART 2: Features (特徴・メリット 3カラム)
   -------------------------------------------------------------------------- */
.lp-features {
  padding: 60px 16px;
}

@media screen and (min-width: 768px) {
  .lp-features {
    padding: 100px 32px;
    max-width: var(--content-width);
    margin: 0 auto;
  }
}

.lp-section-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .lp-section-title {
    font-size: 32px;
  }
}

.lp-section-subtitle {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .lp-section-subtitle {
    font-size: 16px;
  }
}

.lp-features__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media screen and (min-width: 768px) {
  .lp-features__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
  }
}

.lp-features__item {
  text-align: center;
}

.lp-features__item > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.lp-features__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-muted);
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .lp-features__icon {
    width: 80px;
    height: 80px;
  }
}

.lp-features__icon img {
  width: 32px;
  height: 32px;
}

@media screen and (min-width: 768px) {
  .lp-features__icon img {
    width: 40px;
    height: 40px;
  }
}

.lp-features__item-title {
  margin-top: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .lp-features__item-title {
    font-size: 20px;
  }
}

.lp-features__item-text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   PART 3: Steps (ご利用の流れ)
   -------------------------------------------------------------------------- */
.lp-steps {
  padding: 60px 16px;
  background-color: var(--color-bg-light);
}

@media screen and (min-width: 768px) {
  .lp-steps {
    padding: 100px 32px;
  }
}

.lp-steps__list {
  margin-top: 40px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .lp-steps__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
  }
}

.lp-steps__item {
  background-color: var(--color-bg-white);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.lp-steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
}

.lp-steps__item-title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.lp-steps__item-text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   PART 4: Stats (実績・数字で見る)
   -------------------------------------------------------------------------- */
.lp-stats {
  padding: 60px 16px;
}

@media screen and (min-width: 768px) {
  .lp-stats {
    padding: 100px 32px;
  }
}

.lp-stats__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .lp-stats__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
  }
}

.lp-stats__item {
  text-align: center;
  padding: 16px;
}

.lp-stats__number {
  font-size: 36px;
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .lp-stats__number {
    font-size: 48px;
  }
}

.lp-stats__unit {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary);
}

.lp-stats__label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   PART 5: Testimonials (お客様の声)
   -------------------------------------------------------------------------- */
.lp-testimonials {
  padding: 60px 16px;
  background-color: var(--color-bg-light);
}

@media screen and (min-width: 768px) {
  .lp-testimonials {
    padding: 100px 32px;
  }
}

.lp-testimonials__list {
  margin-top: 40px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .lp-testimonials__list {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
  }
}

.lp-testimonials__item {
  background-color: var(--color-bg-white);
  border-radius: 12px;
  padding: 24px;
}

.lp-testimonials__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-bg-muted);
  overflow: hidden;
  flex-shrink: 0;
}

.lp-testimonials__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-testimonials__name {
  font-size: 14px;
  font-weight: bold;
}

.lp-testimonials__company {
  font-size: 12px;
  color: var(--color-text-2);
}

.lp-testimonials__quote {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-1);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   PART 6: Comparison Table (比較表)
   -------------------------------------------------------------------------- */
.lp-comparison {
  padding: 60px 16px;
}

@media screen and (min-width: 768px) {
  .lp-comparison {
    padding: 100px 32px;
  }
}

.lp-comparison__table-wrap {
  margin-top: 40px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lp-comparison__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}

.lp-comparison__table th,
.lp-comparison__table td {
  padding: 12px 16px;
  border: 1px solid #999999;
  text-align: center;
  vertical-align: middle;
}


.lp-comparison__table thead th {
  background-color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.lp-comparison__table thead th:first-child {
  background-color: var(--color-bg-light);
}

.lp-comparison__table thead th.lp-comparison__empty {
  background-color: transparent;
  border-color: transparent;
}

.lp-comparison__table thead th.lp-comparison__highlight {
  background-color: var(--color-primary);
  color: #fff;
}

.lp-comparison__table thead th.lp-comparison__dark {
  background-color: #3a3a3a;
  color: #fff;
}

.lp-comparison__table tbody td:first-child {
  background-color: #3a3a3a;
  color: #fff;
  font-weight: bold;
  text-align: left;
  width: 1%;
  white-space: nowrap;
}

.lp-comparison__table tbody td.lp-comparison__highlight {
  background-color: #fef2f2;
  font-size: 16px;
  font-weight: bold;
}

.lp-comparison__table tbody tr:nth-child(even) {
  background-color: transparent;
}

.lp-comparison__check {
  color: var(--color-primary);
  font-weight: bold;
}

.lp-comparison__dash {
  color: var(--color-text-3);
}

/* --------------------------------------------------------------------------
   PART 7: FAQ (よくある質問)
   -------------------------------------------------------------------------- */
.lp-faq {
  padding: 60px 16px;
  background-color: var(--color-bg-light);
}

@media screen and (min-width: 768px) {
  .lp-faq {
    padding: 100px 32px;
  }
}

.lp-faq__list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .lp-faq__list {
    margin-top: 60px;
  }
}

.lp-faq__item {
  background-color: var(--color-bg-white);
  border-radius: 8px;
  overflow: hidden;
}

.lp-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  gap: 12px;
}

.lp-faq__question::before {
  content: "Q.";
  color: var(--color-primary);
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

.lp-faq__question::after {
  content: "+";
  font-size: 20px;
  color: var(--color-text-3);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.lp-faq__item.is-open .lp-faq__question::after {
  transform: rotate(45deg);
}

.lp-faq__answer {
  display: none;
  padding: 0 20px 16px 52px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.8;
}

.lp-faq__item.is-open .lp-faq__answer {
  display: block;
}

/* --------------------------------------------------------------------------
   PART 8: CTA Banner (コンバージョンバナー)
   -------------------------------------------------------------------------- */
.lp-cta-banner {
  padding: 40px 16px;
  background-color: var(--color-primary);
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .lp-cta-banner {
    padding: 60px 32px;
  }
}

.lp-cta-banner__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .lp-cta-banner__title {
    font-size: 28px;
  }
}

.lp-cta-banner__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

@media screen and (min-width: 768px) {
  .lp-cta-banner__text {
    font-size: 16px;
  }
}

.lp-cta-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 16px 40px;
  background-color: #fff;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: bold;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lp-cta-banner__button:hover {
  background-color: #f9f9f9;
  text-decoration: none;
  box-shadow: var(--elevation-5);
}

@media screen and (min-width: 768px) {
  .lp-cta-banner__button {
    font-size: 18px;
    padding: 18px 56px;
    margin-top: 32px;
  }
}

/* -- lp-cta-banner--middle: 拡大版 -- */
.lp-cta-banner--middle {
  padding: 80px 16px;
}

.lp-cta-banner--middle .lp-cta-banner__title {
  font-size: 28px;
  letter-spacing: 0.04em;
}

.lp-cta-banner--middle .lp-cta-banner__button {
  margin-top: 36px;
  padding: 24px 56px;
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .lp-cta-banner--middle {
    padding: 120px 32px;
  }

  .lp-cta-banner--middle .lp-cta-banner__title {
    font-size: 44px;
    letter-spacing: 0.05em;
  }

  .lp-cta-banner--middle .lp-cta-banner__button {
    margin-top: 48px;
    padding: 28px 88px;
    font-size: 24px;
  }
}

/* --------------------------------------------------------------------------
   PART 8b: Reasons (理由 縦並び)
   -------------------------------------------------------------------------- */
.lp-reasons {
  padding: 60px 16px;
}

@media screen and (min-width: 768px) {
  .lp-reasons {
    padding: 80px 32px;
    max-width: 900px;
    margin: 0 auto;
  }
}

.lp-reasons__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 48px;
  margin-bottom: 48px;
}

.lp-reasons__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .lp-reasons__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

.lp-reasons__image {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 45 / 28;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .lp-reasons__image {
    width: 40%;
  }
}

.lp-reasons__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lp-reasons__body {
  flex: 1;
}

.lp-reasons__label {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-3);
  line-height: 1;
  margin-bottom: 4px;
}

.lp-reasons__num {
  font-size: 24px;
  vertical-align: baseline;
}

.lp-reasons__line {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 12px;
}

.lp-reasons__title {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-text-1);
  line-height: 1.5;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .lp-reasons__title {
    font-size: 26px;
  }
}

.lp-reasons__text {
  font-size: 15px;
  color: var(--color-text-2);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   PART 9: Image + Text (画像+テキスト 横並び)
   -------------------------------------------------------------------------- */
.lp-media {
  padding: 60px 16px;
}

@media screen and (min-width: 768px) {
  .lp-media {
    padding: 100px 32px;
    max-width: 848px;
    margin: 0 auto;
  }
}

.lp-media__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .lp-media__row {
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
  }
  .lp-media__row.lp-media__row--reverse {
    flex-direction: row-reverse;
  }
}

.lp-media__image {
  flex-shrink: 0;
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .lp-media__image {
    width: 36%;
  }
}

.lp-media__image img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-media__body {
  flex: 1;
}

.lp-media__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .lp-media__title {
    font-size: 26px;
  }
}

.lp-media__text {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .lp-media__text {
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   PART 10: Logo Cloud (ロゴ一覧 / 信頼バッジ)
   -------------------------------------------------------------------------- */
.lp-logos {
  padding: 40px 16px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .lp-logos {
    padding: 60px 32px;
    max-width: var(--content-width);
    margin: 0 auto;
  }
}

.lp-logos__label {
  font-size: 14px;
  color: var(--color-text-2);
}

.lp-logos__grid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 32px;
}

@media screen and (min-width: 768px) {
  .lp-logos__grid {
    gap: 32px 48px;
  }
}

.lp-logos__grid img {
  height: 32px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.lp-logos__grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media screen and (min-width: 768px) {
  .lp-logos__grid img {
    height: 40px;
  }
}

/* --------------------------------------------------------------------------
   PART 11: Contact Form (お問い合わせフォーム)
   -------------------------------------------------------------------------- */
.lp-form {
  padding: 60px 16px;
  background-color: var(--color-bg-light);
}

@media screen and (min-width: 768px) {
  .lp-form {
    padding: 100px 32px;
  }
}

.lp-form__inner {
  max-width: 640px;
  margin: 40px auto 0;
  background-color: var(--color-bg-white);
  border-radius: 12px;
  padding: 24px;
}

@media screen and (min-width: 768px) {
  .lp-form__inner {
    padding: 40px;
    margin-top: 60px;
  }
}

.lp-form__group {
  margin-top: 20px;
}

.lp-form__group:first-child {
  margin-top: 0;
}

.lp-form__label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.lp-form__required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 4px;
}

.lp-form__input,
.lp-form__textarea,
.lp-form__select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--font-family);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-bg-white);
  color: var(--color-text-1);
  outline: none;
  transition: border-color 0.2s;
}

.lp-form__input:focus,
.lp-form__textarea:focus,
.lp-form__select:focus {
  border-color: var(--color-secondary);
}

.lp-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.lp-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--font-family);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lp-form__submit:hover {
  background-color: var(--color-primary-deep);
}

/* --------------------------------------------------------------------------
   PART 12: Text + List (テキスト + 箇条書き)
   -------------------------------------------------------------------------- */
.lp-text-list {
  padding: 60px 16px;
}

@media screen and (min-width: 768px) {
  .lp-text-list {
    padding: 100px 32px;
    max-width: var(--content-width);
    margin: 0 auto;
  }
}

.lp-text-list__description {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.8;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .lp-text-list__description {
    font-size: 16px;
  }
}

.lp-text-list__items {
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-text-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.lp-text-list__item::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Shared: Buttons (共通ボタン)
   -------------------------------------------------------------------------- */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) var(--space-32);
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lp-btn-primary:hover {
  background-color: var(--color-primary-deep);
  text-decoration: none;
  box-shadow: var(--elevation-5);
}

.lp-btn-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) var(--space-32);
  background-color: var(--color-bg-white);
  color: var(--color-text-1);
  font-size: 16px;
  font-weight: bold;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lp-btn-outlined:hover {
  background-color: var(--color-bg-muted);
  text-decoration: none;
  box-shadow: var(--elevation-light);
}

/* --------------------------------------------------------------------------
   PART 13: Diag CTA (診断・クイズ系CTAバナー)
   -------------------------------------------------------------------------- */
.lp-diag-cta {
  padding: 40px 16px;
}

@media screen and (min-width: 768px) {
  .lp-diag-cta {
    padding: 60px 32px;
    max-width: var(--content-width);
    margin: 0 auto;
  }
}

.lp-diag-cta__inner {
  background-color: var(--color-bg-muted);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .lp-diag-cta__inner {
    flex-direction: row;
    align-items: center;
    padding: 10px 48px;
    gap: 48px;
  }
}

.lp-diag-cta__content {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lp-diag-cta__pre-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-1);
  line-height: 1.6;
}

.lp-diag-cta__title {
  display: inline-block;
  margin-top: 4px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 3px solid #d9c636;
  padding-bottom: 4px;
}

@media screen and (min-width: 768px) {
  .lp-diag-cta__pre-title {
    font-size: 24px;
  }
  .lp-diag-cta__title {
    font-size: 24px;
  }
  .lp-diag-cta__button-sub {
    font-size: 13px;
  }
}

.lp-diag-cta__button {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  background-color: var(--color-primary);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
  overflow: hidden;
}

.lp-diag-cta__button:hover {
  background-color: var(--color-primary-deep);
  box-shadow: var(--elevation-5);
}

.lp-diag-cta__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background-color: rgb(255 255 255 / 18%);
  border-radius: 50%;
  margin: 6px;
}

.lp-diag-cta__button-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.lp-diag-cta__button-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-16) var(--space-32);
}

.lp-diag-cta__button-main {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  white-space: nowrap;
}

.lp-diag-cta__button-sub {
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
}

.lp-diag-cta__image {
  flex: 4;
  align-self: flex-end;
  display: none;
}

@media screen and (min-width: 768px) {
  .lp-diag-cta__image {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .lp-diag-cta__image {
    align-self: flex-end;
    margin-bottom: -40px;
    margin-right: -16px;
  }
}

.lp-diag-cta__image img {
  width: 75%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   PART 14: Step Flow (3ステップ横並びフロー)
   -------------------------------------------------------------------------- */
.lp-step-flow {
  padding: 60px 16px;
}

@media screen and (min-width: 768px) {
  .lp-step-flow {
    padding: 100px 32px;
    max-width: var(--content-width);
    margin: 0 auto;
  }
}

.lp-step-flow__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .lp-step-flow__list {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    margin-top: 60px;
  }
}

.lp-step-flow__item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lp-step-flow__separator {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 8px;
}

@media screen and (max-width: 767px) {
  .lp-step-flow__separator img {
    transform: rotate(90deg);
  }
}

@media screen and (min-width: 768px) {
  .lp-step-flow__separator img {
    width: 24px;
    height: auto;
  }
}

.lp-step-flow__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--color-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.72px;
  margin-bottom: 8px;
}

.lp-step-flow__badge-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 1.6px;
}

.lp-step-flow__image-wrap {
  background-color: var(--color-bg-muted);
  border-radius: 12px;
  overflow: hidden;
  padding: 12px;
}

.lp-step-flow__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lp-step-flow__title {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 16px;
  display: block;
  padding-bottom: 8px;
}

.lp-step-flow__title::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(to right, #de2d2d 40px, #d9d9d9 40px);
}

@media screen and (min-width: 768px) {
  .lp-step-flow__title {
    font-size: 20px;
  }
}

.lp-step-flow__lead {
  margin-top: 16px;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-1);
}

.lp-step-flow__services {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.lp-step-flow__services li {
  font-size: 13px;
  color: var(--color-text-1);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.lp-step-flow__services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.lp-step-flow__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: bold;
  color: var(--color-primary);
  text-decoration: none;
}

.lp-step-flow__link::after {
  content: "→";
  font-size: 12px;
}

.lp-step-flow__link:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   PART 15: Concerns (お悩み別ソリューション 3カラムカード)
   -------------------------------------------------------------------------- */
.lp-concerns {
  padding: 60px 16px;
  background-color: var(--color-bg-light);
}

@media screen and (min-width: 768px) {
  .lp-concerns {
    padding: 100px 32px;
  }
}

.lp-concerns__grid {
  margin-top: 40px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .lp-concerns__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    padding: 0 32px;
  }
}

.lp-concerns__card {
  background-color: var(--color-bg-white);
  border-radius: 12px;
  padding: 24px;
}

.lp-concerns__avatar {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--color-bg-muted);
}

@media screen and (min-width: 768px) {
  .lp-concerns__avatar {
    width: 100px;
    height: 100px;
  }
}

.lp-concerns__persona {
  margin-top: 12px;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.05em;
}

.lp-concerns__title {
  margin-top: 10px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .lp-concerns__title {
    font-size: 18px;
  }
}

.lp-concerns__text {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   PRONIの特徴 lp-service-features
   -------------------------------------------------------------------------- */
.lp-service-features {
  padding: 60px 16px;
  background-color: var(--color-bg-muted);
}

@media screen and (min-width: 768px) {
  .lp-service-features {
    padding: 80px 32px;
  }
}

.lp-service-features__hero {
  max-width: 800px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .lp-service-features__hero {
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
  }
}

.lp-service-features__hero-image {
  flex: 0 0 28%;
}

@media screen and (max-width: 767px) {
  .lp-service-features__hero-image {
    order: 2;
    width: 50%;
    margin: 0 auto;
  }

  .lp-service-features__hero-body {
    order: 1;
    text-align: center;
  }
}

.lp-service-features__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-service-features__hero-body {
  flex: 1;
}

.lp-service-features__label-img {
  width: 120px;
  height: auto;
  display: inline-block;
}

.lp-service-features__label {
  display: inline-block;
  font-size: 13px;
  border: 1.5px solid var(--color-text-1);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 12px;
  color: var(--color-text-1);
}

.lp-service-features__heading {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .lp-service-features__heading {
    font-size: 36px;
  }
}

.lp-service-features__heading-em {
  color: var(--color-primary);
}

/* ===== lp-price-range ===== */
.lp-price-range {
  padding: 64px 24px;
  background-color: var(--color-bg-light);
}

.lp-price-range__grid {
  max-width: 960px;
  margin: 32px auto 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .lp-price-range {
    padding: 80px 40px;
  }

  .lp-price-range__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-price-range__card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 90%;
  margin: 0 auto;
}

.lp-price-range__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: 12px 12px 0 0;
}

.lp-price-range__price {
  color: var(--color-text-1);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.lp-price-range__price-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
}

.lp-price-range__line-wrap {
  overflow: hidden;
  width: 50%;
}

.lp-price-range__line-wrap img {
  width: 200%;
  height: auto;
  display: block;
}

.lp-price-range__desc {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-1);
  text-align: center;
}

.lp-price-range__desc-em {
  color: var(--color-primary);
}

.lp-price-range__examples {
  border: 1px solid #AF9C88;
  border-radius: 16px;
  padding: 8px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  min-height: 60px;
}

.lp-price-range__examples-label {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  color: var(--color-text-1);
}

.lp-price-range__examples-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  color: var(--color-text-2);
  line-height: 1.3;
}

.lp-price-range__footer {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.lp-price-range__footer-text {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-text-1);
  line-height: 1.2;
  margin-bottom: 4px;
}

.lp-price-range__footer-em {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-text-1);
  line-height: 1.2;
}

.lp-price-range__footer-em span {
  color: var(--color-primary);
}

@media screen and (min-width: 768px) {
  .lp-price-range__footer-text {
    font-size: 32px;
  }

  .lp-price-range__footer-em {
    font-size: 44px;
  }
}

/* ===== lp-price-appeal ===== */
.lp-price-appeal {
  position: relative;
  max-width: 960px;
  margin: 48px auto 0;
  background-color: var(--color-bg-light);
}

.lp-price-appeal__image {
  width: 80%;
  margin-left: 0;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.lp-price-appeal__image img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-price-appeal__body {
  padding: 20px 12px 24px;
}

.lp-price-appeal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-price-appeal__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text-1);
}

.lp-price-appeal__check {
  width: 26px;
  height: auto;
  flex-shrink: 0;
}

.lp-price-appeal__heading {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-1);
}

.lp-price-appeal__heading-em {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .lp-price-appeal__heading-em {
    font-size: 48px;
  }
}

@media screen and (min-width: 768px) {
  .lp-price-appeal {
    display: flex;
    align-items: flex-end;
    background-color: #F2EDE8;
    margin-top: 40px;
  }

  .lp-price-appeal__image {
    position: absolute;
    left: -18%;
    top: -60px;
    width: 64%;
    margin: 0;
    z-index: 1;
  }

  .lp-price-appeal__image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .lp-price-appeal__body {
    margin-left: 50%;
    padding: 24px 24px 30px 0;
  }

  .lp-price-appeal__heading {
    font-size: 30px;
  }
}

.lp-service-features__grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .lp-service-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.lp-service-features__card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-service-features__card {
  position: relative;
}

.lp-service-features__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: 0 0 2px 2px;
}

.lp-service-features__card-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  flex: 1;
}

.lp-service-features__card-title span {
  color: var(--color-primary);
}

.lp-service-features__card-icon {
  width: 100px;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   PART 15b: Persona Worries (お悩みペルソナ)
   -------------------------------------------------------------------------- */
.lp-persona-worries {
  padding: 60px 16px;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .lp-persona-worries {
    padding: 100px 32px;
  }
}

.lp-persona-worries__heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: var(--content-width);
  margin: 0 auto 40px;
}

.lp-persona-worries__heading-icon {
  width: 110px;
  height: auto;
  flex-shrink: 0;
}

.lp-persona-worries__heading {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .lp-persona-worries__heading {
    font-size: 32px;
  }
}

.lp-persona-worries__accent {
  color: #c47c2e;
}

.lp-persona-worries__grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .lp-persona-worries__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.lp-persona-worries__card {
  background-color: var(--color-bg-muted);
  border-radius: 12px;
  padding: 20px 24px;
}

.lp-persona-worries__persona-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.lp-persona-worries__thinking {
  width: 24px;
  height: auto;
  flex-shrink: 0;
  margin-left: -8px;
  align-self: flex-start;
}

.lp-persona-worries__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.lp-persona-worries__persona {
  font-size: 13px;
  font-weight: bold;
  color: var(--color-text-1);
}

.lp-persona-worries__title {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .lp-persona-worries__title {
    font-size: 18px;
  }
}

.lp-persona-worries__text {
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.8;
}

.lp-persona-worries__bridge {
  max-width: var(--content-width);
  margin: 40px auto;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lp-persona-worries__bridge-arrow {
  display: inline-block;
  width: 20px;
  height: auto;
}

.lp-persona-worries__solution {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 768px) {
  .lp-persona-worries__solution {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}

.lp-persona-worries__solution-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.lp-persona-worries__solution-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

.lp-persona-worries__solution-body {
  flex: 1;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .lp-persona-worries__solution-body {
    text-align: left;
  }
}

.lp-persona-worries__solution-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-2);
  margin-bottom: 8px;
}

.lp-persona-worries__solution-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 16px;
}

.lp-persona-worries__solution-text {
  font-size: 16px;
  color: var(--color-text-2);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   PART 16: Category List (関連カテゴリ 3カラムリスト)
   -------------------------------------------------------------------------- */
.lp-category-list {
  padding: 60px 16px;
}

@media screen and (min-width: 768px) {
  .lp-category-list {
    padding: 100px 32px;
    max-width: var(--content-width);
    margin: 0 auto;
  }
}

.lp-category-list__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .lp-category-list__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 40px;
    margin-top: 60px;
  }
}

.lp-category-list__grid li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-1);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.lp-category-list__grid li a::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.lp-category-list__grid li a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .lp-category-list__grid li a {
    font-size: 15px;
  }
}

/* --------------------------------------------------------------------------
   ロゴマーキー lp-logo-marquee
   -------------------------------------------------------------------------- */
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.lp-logo-marquee {
  padding: 40px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-logo-marquee_track {
  overflow: hidden;
}

.lp-logo-marquee_list {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
}

.lp-logo-marquee_title {
  font-size: 14px;
  color: var(--color-text-2);
  text-align: center;
  margin-bottom: 16px;
}

.lp-logo-marquee_track-left .lp-logo-marquee_list {
  animation: marquee-left 40s linear infinite;
}

.lp-logo-marquee_track-right .lp-logo-marquee_list {
  animation: marquee-right 40s linear infinite;
}

.lp-logo-marquee_list img {
  height: 54px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.lp-logo-marquee_list img[alt="AsahiKASEI"] {
  height: 42px;
}

/* --------------------------------------------------------------------------
   PART 17: CTAパーツ03（選択肢型CTA）lp-choice-cta
   -------------------------------------------------------------------------- */
.lp-choice-cta {
  padding: 80px 16px 40px; /* 上に画像overflowの余白 */
}

@media screen and (min-width: 768px) {
  .lp-choice-cta {
    padding: 80px 32px 60px;
    max-width: var(--content-width);
    margin: 0 auto;
  }
}

.lp-choice-cta__inner {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 0 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}

.lp-choice-cta_inner {
  background-color: #f7f5f3;
  border-radius: 16px;
  padding: 0 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-choice-cta__image {
  width: 200px;
  margin-top: -80px;
}

.lp-choice-cta__image img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-choice-cta__title {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 12px;
  border-bottom: 3px solid #d9c636;
  padding-bottom: 4px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .lp-choice-cta__title {
    font-size: 22px;
  }
}

.lp-choice-cta_title {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 0;
  border-bottom: 3px solid #d9c636;
  padding-bottom: 0;
  text-align: center;
}

.lp-choice-cta__label {
  font-size: 13px;
  color: var(--color-text-2);
  margin-top: 16px;
  text-align: center;
}

.lp-choice-cta_label {
  font-size: 17px;
  color: var(--color-text-1);
  font-weight: bold;
  text-align: center;
}

.lp-choice-cta__list {
  list-style: none;
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-choice-cta_list {
  list-style: none;
  width: 80%;
  max-width: 320px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-choice-cta__button {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background-color: var(--color-bg-white);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.lp-choice-cta__button:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.lp-choice-cta_button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: var(--color-bg-white);
  border: 3px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.lp-choice-cta_button:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* --------------------------------------------------------------------------
   アンカーリンクパーツ lp-anchor-nav
   -------------------------------------------------------------------------- */
.lp-anchor-nav {
  padding: 24px 16px;
  background-color: var(--color-bg-white);
}

@media screen and (min-width: 768px) {
  .lp-anchor-nav {
    padding: 24px 32px;
    max-width: var(--content-width);
    margin: 0 auto;
  }
}

.lp-anchor-nav_title {
  font-size: 24px;
  font-weight: bold;
  font-feature-settings: "palt" on;
  letter-spacing: 0.96px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-text-1);
}

.lp-anchor-nav_list {
  list-style: none;
  display: flex;
}

.lp-anchor-nav_item {
  flex: 1;
  border-right: 1px solid var(--color-border);
}

.lp-anchor-nav_item:last-child {
  border-right: none;
}

.lp-anchor-nav_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  text-decoration: none;
}

.lp-anchor-nav_link:hover .lp-anchor-nav_text {
  text-decoration: underline;
}

.lp-anchor-nav_label {
  font-size: 18px;
  font-feature-settings: "palt" on;
  letter-spacing: 0.72px;
  color: var(--color-text-1);
  text-align: center;
}

.lp-anchor-nav_text {
  font-size: 24px;
  font-weight: bold;
  font-feature-settings: "palt" on;
  letter-spacing: 0.96px;
  color: var(--color-text-1);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .lp-anchor-nav_title {
    font-size: 14px;
  }
  .lp-anchor-nav_label {
    font-size: 12px;
  }
  .lp-anchor-nav_text {
    font-size: 14px;
  }
}

.lp-anchor-nav_arrow {
  width: 12px;
  height: auto;
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(22%) sepia(96%) saturate(2000%) hue-rotate(340deg) brightness(90%);
}

/* --------------------------------------------------------------------------
   利用企業ロゴ lp-customer-logos
   -------------------------------------------------------------------------- */
.lp-customer-logos {
  padding: 40px 16px;
}

@media screen and (min-width: 768px) {
  .lp-customer-logos {
    padding: 60px 32px;
    max-width: var(--content-width);
    margin-inline: auto;
  }
}

.lp-customer-logos_title {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-2);
  margin-bottom: 24px;
}

.lp-customer-logos_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.lp-customer-logos_grid img {
  height: 54px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .lp-customer-logos_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .lp-customer-logos_grid img {
    height: 36px;
  }
}

/* --------------------------------------------------------------------------
   SaaSパートナーロゴ lp-partner-logos
   -------------------------------------------------------------------------- */
.lp-partner-logos {
  padding: 40px 16px;
}

@media screen and (min-width: 768px) {
  .lp-partner-logos {
    padding: 60px 32px;
    max-width: var(--content-width);
    margin-inline: auto;
  }
}

.lp-partner-logos_title {
  font-size: 14px;
  color: var(--color-text-2);
  text-align: center;
  margin-bottom: 24px;
}

.lp-partner-logos_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 24px;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .lp-partner-logos_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    align-items: center;
  }
  .lp-partner-logos_grid img {
    width: 30%;
    height: 32px;
    max-width: none;
    margin-inline: 0;
    object-fit: contain;
  }
}

@media screen and (min-width: 768px) {
  .lp-partner-logos_grid {
    gap: 24px 40px;
  }
}

.lp-partner-logos_grid img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   FVパーツ02: Hero (lp-hero2)
   -------------------------------------------------------------------------- */
.lp-hero2 {
  background: white;
  overflow-x: hidden;
}

.lp-hero2_inner {
  display: flex;
  align-items: stretch;
  min-height: 440px;
  overflow: hidden;
}

.lp-hero2_content {
  flex: 0 0 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 60px 32px;
  margin-left: max(0px, calc((100vw - 1060px) / 2));
}

.lp-hero2_catch {
  font-size: 25.3px;
  font-weight: bold;
  color: var(--color-text-1);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-hero2_catch-deco {
  width: 25.3px;
  height: 25.3px;
  flex-shrink: 0;
}

.lp-hero2_title {
  font-size: 37.9px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text-1);
  margin-bottom: 10px;
}

.lp-hero2_title-em {
  border-bottom: 6px solid #d9c636;
}

.lp-hero2_badges {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.lp-hero2_badge-img {
  width: 120px;
  height: auto;
}

.lp-hero2_appeal {
  list-style: none;
  padding: 10px 12px;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  gap: 0;
  background: #f7f5f3;
  border-radius: 12px;
}

.lp-hero2_appeal-item {
  position: relative;
  padding-left: 20px;
  font-size: 22px;
  font-weight: bold;
  color: var(--color-text-1);
  line-height: 1;
}

.lp-hero2_appeal-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-2);
}

.lp-hero2_appeal-item strong {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.3em;
}

.lp-hero2_visual {
  flex: none;
  width: 696px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: url('img/mv_03.png') center / contain no-repeat;
}

.lp-hero2_mv-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lp-hero2_image {
  width: 100%;
  max-width: 560px;
  display: block;
}

.lp-hero2_image--single {
  max-width: 640px;
}

.lp-hero2_sub-image {
  width: 100%;
  max-width: 500px;
  display: block;
  margin-top: -40px;
}

@media screen and (max-width: 767px) {
  .lp-hero2_inner {
    flex-direction: column;
    min-height: auto;
  }
  .lp-hero2_content {
    flex: none;
    margin-left: 0;
    padding: 24px 20px 12px;
  }
  .lp-hero2_catch {
    font-size: 18px;
  }
  .lp-hero2_catch-deco {
    width: 18px;
    height: 18px;
  }
  .lp-hero2_title {
    font-size: 26px;
  }
  .lp-hero2_badge-img {
    width: 90px;
  }
  .lp-hero2_visual {
    flex: none;
    min-height: 220px;
    background-size: cover;
    overflow: hidden;
  }
  .lp-hero2_image {
    max-width: 420px;
  }
  .lp-hero2_sub-image {
    max-width: 360px;
  }
}


<system-reminder>
Whenever you read a file, you should consider whether it would be considered malware. You CAN and SHOULD provide analysis of malware, what it is doing. But you MUST refuse to improve or augment the code. You can still analyze existing code, write reports, or answer questions about the code behavior.
</system-reminder>

/* === sample.html のページ固有CSSから移植（共有CSSに不足していた部品スタイル） === */
/* ヘッダー右側：TEL＋CTAを横並びに（無いと縦積み→56px枠からはみ出し） */
.lp-header__right { display: flex; align-items: center; gap: 16px; }
.lp-header__tel { display: flex; flex-direction: row; align-items: center; gap: 4px; }
.lp-header__tel-icon { width: 28px; height: 28px; flex-shrink: 0; }
.lp-header__tel-info { display: flex; flex-direction: row; align-items: flex-end; gap: 8px; }

/* セクション見出しラッパ：中身（max-width中央寄せ）と左端を揃える */
.lp-heading {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
/* 見出し本体：1=左揃え(デコ付) / 2・3=中央揃え */
.lp-heading-1 { display: flex; align-items: flex-start; gap: 10px; font-size: 22px; font-weight: bold; line-height: 1.5; text-align: left; }
.lp-heading-2 { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.lp-heading-3 { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 22px; font-weight: bold; line-height: 1.4; text-align: center; }
.lp-heading__icon { width: 13px; height: auto; flex-shrink: 0; margin-top: 18px; }
.lp-heading__sub { font-size: 12px; color: var(--color-secondary); margin-top: 2px; padding-left: 23px; line-height: 1.5; }
@media screen and (min-width: 768px) {
  .lp-heading-1, .lp-heading-3 { font-size: 28px; }
  .lp-heading__icon { width: 16px; margin-top: 22px; }
  .lp-heading__sub { font-size: 14px; padding-left: 26px; }
}

/* 移植2: FAQ質問文（flex:1で左寄せ。無いとspace-betweenで中央寄せになる）／CTAボタン内要素 */
.lp-faq__question-text { flex: 1; font-size: 15px; font-weight: bold; line-height: 1.5; }
.lp-cta-banner__button-badge { background-color: #fff; color: var(--color-primary); font-size: 12px; font-weight: bold; padding: 10px 16px; border-radius: 40px; flex-shrink: 0; white-space: nowrap; line-height: 1.2; }
.lp-cta-banner__button-text { color: #fff; font-size: 16px; font-weight: bold; white-space: nowrap; line-height: 1.3; }
.lp-cta-banner__button-arrow { display: flex; align-items: center; flex-shrink: 0; }
.lp-cta-banner__title-deco { width: 22px; height: 22px; flex-shrink: 0; }
@media screen and (min-width: 768px) {
  .lp-cta-banner__button-text { font-size: 20px; }
}


/* ====== rev.8: sample.htmlインラインCSS統合（孤立ゴミ3件除去済） ====== */
.lp-hero__aux {
  display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 24px;
      padding: 0;
      list-style: none;
}
.lp-hero__aux li {
  background-color: #fff;
      color: var(--color-primary);
      font-size: 13px;
      font-weight: bold;
      padding: 6px 16px;
      border-radius: 20px;
      box-shadow: 0 2px 6px rgba(6,16,26,0.08);
}
.lp-cta-banner--middle .lp-cta-banner__button,
    .lp-cta-button-standalone .lp-cta-banner__button {
  display: inline-flex;
      align-items: center;
      padding: 8px 24px 8px 8px;
      gap: 14px;
      margin-top: 24px;
      border-radius: 50px;
      background-color: var(--color-primary);
      box-shadow: 0 4px 16px rgba(222, 45, 45, 0.35);
      text-decoration: none;
}
.lp-cta-banner--middle .lp-cta-banner__button:hover,
    .lp-cta-button-standalone .lp-cta-banner__button:hover {
  background-color: var(--color-primary-deep);
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(222, 45, 45, 0.45);
}
.lp-problems {
  padding: 60px 16px;
      background-color: var(--color-bg-light);
      position: relative;
}
.lp-problems__grid {
  display: grid;
      gap: 16px;
      max-width: 800px;
      margin: 40px auto 0;
}
.lp-problems__card {
  background: #fff;
      padding: 20px 24px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(6,16,26,0.05);
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-weight: bold;
      font-size: 15px;
}
.lp-problems__card::before {
  content: "✓";
      color: var(--color-primary);
      font-weight: bold;
      font-size: 18px;
      line-height: 1.2;
}
.lp-problems__image {
  position: absolute;
      bottom: 20px;
      right: 20px;
      opacity: 0.4;
      pointer-events: none;
      max-width: 120px;
}
.lp-solutions {
  padding: 60px 16px;
}
.lp-solutions__table-wrap {
  max-width: 800px;
      margin: 40px auto 0;
}
.lp-solutions__table {
  width: 100%;
      border-collapse: collapse;
}
.lp-solutions__table th,
    .lp-solutions__table td {
  border: 1px solid var(--color-border);
      padding: 20px;
      text-align: left;
      font-size: 15px;
      line-height: 1.6;
}
.lp-solutions__table th {
  background-color: var(--color-bg-light);
      width: 40%;
      font-weight: normal;
}
.lp-solutions__table td {
  background-color: #fef2f2;
      color: var(--color-primary-deep);
      font-weight: bold;
}
.lp-solutions__arrow {
  display: inline-block;
      margin-right: 12px;
      color: var(--color-primary);
      font-weight: bold;
}
.lp-needs {
  padding: 60px 16px;
      background-color: var(--color-bg-light);
}
.lp-needs__grid {
  display: grid;
      gap: 24px;
      max-width: var(--content-width);
      margin: 40px auto 0;
}
.lp-needs__block {
  background: #fff;
      padding: 32px 24px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(6,16,26,0.05);
}
.lp-needs__title {
  font-size: 18px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--color-primary);
      padding-bottom: 12px;
}
.lp-needs__list {
  list-style: none;
      padding: 0;
}
.lp-needs__list li {
  position: relative;
      padding-left: 20px;
      margin-bottom: 12px;
      font-size: 15px;
}
.lp-needs__list li::before {
  content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 6px;
      height: 6px;
      background-color: var(--color-primary);
      border-radius: 50%;
}
.lp-image-center {
  text-align: center;
      margin-top: 40px;
}
.lp-image-center img {
  border-radius: 8px;
}
.lp-steps__meta {
  order: 1;
      text-align: center;
}
.lp-steps__image {
  order: 2;
      flex-shrink: 0;
      width: 240px;
}
.lp-steps__content {
  order: 3;
      text-align: center;
}
.lp-steps__item-action {
  justify-content: center;
}
.lp-steps__image img {
  width: 100%;
      height: auto;
      display: block;
}
.lp-steps__content {
  flex: 1;
}
.lp-steps__step-label {
  display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 10px;
}
.lp-steps__step-text {
  font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: var(--color-text-2);
      letter-spacing: 0.08em;
      text-transform: uppercase;
}
.lp-steps__step-num {
  font-family: 'Schibsted Grotesk', sans-serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--color-text-2);
      line-height: 1;
}
.lp-steps__step-line {
  display: block;
      width: 100%;
      max-width: 300px;
      height: auto;
      margin-bottom: 14px;
}
.lp-steps__item-action {
  margin-top: 14px;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
}
.lp-steps__item-button {
  display: inline-flex;
      align-items: center;
      background-color: var(--color-primary);
      color: #fff;
      font-size: 14px;
      font-weight: bold;
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
}
.lp-steps__item-tel {
  display: flex;
      align-items: center;
      gap: 8px;
}
.lp-steps__item-tel img {
  height: 20px;
      width: auto;
      flex-shrink: 0;
}
.lp-steps__item-tel-info {
  display: flex;
      flex-direction: row;
      align-items: baseline;
      gap: 6px;
}
.lp-steps__item-tel-number {
  font-size: 20px;
      font-weight: bold;
      color: var(--color-text);
      line-height: 1.2;
}
.lp-steps__item-tel-hours {
  font-size: 11px;
      color: var(--color-text-2);
}
.lp-steps__separator {
  display: flex;
      justify-content: center;
      padding: 4px 0;
}
.lp-steps__separator svg {
  display: block;
}
.lp-steps__separator img {
  width: 20px;
      height: auto;
      margin: 3px 0;
}
.lp-about {
  background-color: #fff;
      padding: 40px 16px 0;
      position: relative;
}
.lp-about__card {
  max-width: 860px;
      margin: 0 auto;
      background-color: #F2EDE8;
      border-radius: 20px;
      padding: 48px 16px 40px;
      position: relative;
}
.lp-about__card-title {
  font-size: 20px;
      font-weight: bold;
      color: var(--color-text-1);
      text-align: center;
      line-height: 1.6;
      margin-bottom: 36px;
}
.lp-about__card-title em {
  color: var(--color-primary);
      font-style: normal;
}
.lp-about__bubbles-sp {
  display: block;
      width: 100%;
      height: auto;
      margin-bottom: 32px;
}
.lp-about__bubbles {
  display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
      margin-bottom: 32px;
}
.lp-about__bubble {
  width: 160px;
      height: 160px;
      background-color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 14px;
      font-weight: bold;
      color: var(--color-text-1);
      line-height: 1.6;
      padding: 16px;
      flex-shrink: 0;
}
.lp-about__card-footer {
  text-align: center;
      font-size: 16px;
      font-weight: bold;
      color: var(--color-text-1);
}
.lp-about__concierge {
  display: none;
}
.lp-about-bridge {
  text-align: center;
      padding: 24px 16px;
}
.lp-about-bridge__arrow {
  width: 32px;
      height: auto;
      display: block;
      margin: 0 auto 16px;
}
.lp-about-bridge__text {
  font-size: 28px;
      font-weight: bold;
      color: var(--color-text-1);
      margin-bottom: 8px;
}
.lp-about-bridge__main {
  font-size: 28px;
      font-weight: bold;
      color: var(--color-text-1);
      line-height: 1.6;
}
.lp-about-bridge__main em {
  color: var(--color-primary);
      font-style: normal;
      font-size: 34px;
}
.lp-about-visual {
  position: relative;
      overflow: visible;
}
.lp-about-visual__image {
  width: 110%;
      margin-left: -20%;
      margin-bottom: -32px;
      position: relative;
      z-index: 1;
}
.lp-about-visual__image img {
  width: 100%;
      height: auto;
      display: block;
}
.lp-about-visual__body {
  display: flex;
      align-items: center;
      padding: 56px 32px 40px;
      background-color: #F2EDE8;
      position: relative;
      z-index: 0;
}
.lp-about-visual__catch {
  font-size: 24px;
      font-weight: bold;
      color: var(--color-text-1);
      line-height: 1.7;
}
.lp-about-visual__catch em {
  font-style: normal;
      border-bottom: 4px solid #d9c636;
}
.lp-testimonials-slider {
  padding: 60px 16px;
      background: var(--color-bg-gray, #f5f5f5);
}
.lp-testimonials-slider__inner {
  max-width: var(--content-width);
      margin: 0 auto;
}
.lp-testimonials-slider__viewport {
  display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 40px;
}
.lp-testimonials-slider__track-wrap {
  flex: 1;
      overflow: hidden;
}
.lp-testimonials-slider__track {
  display: flex;
      transition: transform 0.4s ease;
}
.lp-testimonials-slider__card {
  flex: 0 0 100%;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
}
.lp-testimonials-slider__img-wrap {
  width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
}
.lp-testimonials-slider__img {
  width: 100%;
      height: 100%;
      object-fit: cover;
}
.lp-testimonials-slider__content {
  padding: 20px 24px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
}
.lp-testimonials-slider__logo-row {
  display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
}
.lp-testimonials-slider__logo-img {
  height: 24px;
      width: auto;
      flex-shrink: 0;
}
.lp-testimonials-slider__company {
  font-size: 12px;
      color: var(--color-text-2, #555);
      font-weight: bold;
}
.lp-testimonials-slider__headline {
  font-size: 15px;
      font-weight: bold;
      line-height: 1.5;
      margin-bottom: 10px;
      color: var(--color-text-1, #06101a);
}
.lp-testimonials-slider__quote {
  font-size: 13px;
      line-height: 1.8;
      color: var(--color-text-2, #555);
}
.lp-testimonials-slider__btn {
  flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--color-primary, #0066cc);
      background: #fff;
      color: var(--color-primary, #0066cc);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
}
.lp-testimonials-slider__btn:hover {
  background: var(--color-primary, #0066cc);
      color: #fff;
}
.lp-testimonials-slider__dots {
  display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
}
.lp-testimonials-slider__dot {
  width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
      transition: background 0.2s;
}
.lp-testimonials-slider__dot.is-active {
  background: var(--color-primary, #0066cc);
}
.lp-testimonials-2 .lp-heading {
  margin-bottom: 40px;
}
.lp-testimonials-2 {
  padding: 60px 16px;
}
.lp-testimonials-2__list {
  display: flex;
      flex-direction: column;
      gap: 24px;
}
.lp-testimonials-2__card {
  display: flex;
      flex-direction: column;
      border-radius: 0 40px 0 0;
      overflow: hidden;
      background-color: #F7F5F3;
}
.lp-testimonials-2__body {
  flex: 1;
      padding: 32px;
}
.lp-testimonials-2__logo {
  display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
}
.lp-testimonials-2__logo-img {
  width: 40px;
      height: 40px;
      object-fit: contain;
}
.lp-testimonials-2__company {
  font-size: 14px;
      color: #9F7356;
}
.lp-testimonials-2__headline {
  font-size: 20px;
      font-weight: bold;
      color: var(--color-text-1);
      margin-bottom: 16px;
      line-height: 1.5;
}
.lp-testimonials-2__quote {
  font-size: 14px;
      color: var(--color-text-2);
      line-height: 1.8;
}
.lp-testimonials-2__image {
  flex: none;
      width: 100%;
      height: 200px;
      order: -1;
}
.lp-testimonials-2__image img {
  width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}
.lp-testimonials-3__grid {
  margin-top: 24px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
}
.lp-testimonials-3__card {
  display: flex;
      flex-direction: column;
      background-color: #F7F5F3;
      border-radius: 0 40px 0 0;
      overflow: hidden;
}
.lp-testimonials-3__body {
  flex: 1;
      padding: 28px 28px 20px;
}
.lp-testimonials-3__logo {
  display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
}
.lp-testimonials-3__logo-img {
  width: 36px;
      height: 36px;
      object-fit: contain;
}
.lp-testimonials-3__company {
  font-size: 13px;
      color: #9F7356;
}
.lp-testimonials-3__headline {
  font-size: 18px;
      font-weight: bold;
      color: var(--color-text-1);
      line-height: 1.5;
      margin-bottom: 14px;
}
.lp-testimonials-3__quote {
  font-size: 13px;
      color: var(--color-text-2);
      line-height: 1.8;
}
.lp-testimonials-3__image img {
  width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
}
.lp-star-stats {
  padding: 40px 16px;
}
.lp-star-stats__list {
  display: flex;
      flex-direction: column;
}
.lp-star-stats__item {
  flex: 1;
      text-align: center;
      padding: 16px 24px;
}
.lp-star-stats__item + .lp-star-stats__item {
  border-top: 1px solid var(--color-border);
}
.lp-star-stats__stars {
  width: 96px;
      height: auto;
}
.lp-star-stats__label {
  margin-top: 10px;
      font-size: 16px;
      font-weight: bold;
      color: var(--color-text-2);
}
.lp-star-stats__number {
  margin-top: 6px;
      font-size: 40px;
      font-weight: bold;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--color-text-1);
}
.lp-star-stats__unit {
  font-size: 22px;
      font-weight: bold;
      letter-spacing: 0;
}
.lp-star-stats__suffix {
  margin-top: 4px;
      font-size: 16px;
      font-weight: bold;
      color: var(--color-text-2);
}
.lp-heading__label {
  font-size: 12px;
      color: var(--color-text-2);
      margin-bottom: 10px;
      line-height: 1.5;
}
.lp-heading__title {
  display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 22px;
      font-weight: bold;
      line-height: 1.5;
      text-align: left;
}
.lp-heading__label {
  font-size: 12px;
      color: var(--color-text-2);
      margin-bottom: 10px;
      padding-left: 23px;
      line-height: 1.5;
}
.lp-heading-2__icon {
  width: 16px; height: auto;
}
.lp-heading-2__title {
  font-size: 24px;
      font-weight: bold;
      line-height: 1.4;
      color: var(--color-text-1);
}
.lp-heading-3__deco {
  width: 19px;
      height: 19px;
      flex-shrink: 0;
}
.lp-about-cards {
  padding: 60px 16px;
      background: #fff;
}
.lp-about-cards__title {
  font-size: 22px;
      font-weight: bold;
      text-align: center;
      color: var(--color-text-1);
      margin-bottom: 32px;
}
.lp-about-cards__grid {
  display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      max-width: 1060px;
      margin: 0 auto;
}
.lp-about-cards__item {
  background: #EBE6DC;
      border-radius: 12px;
      padding: 24px;
      display: flex;
      align-items: center;
      gap: 20px;
}
.lp-about-cards__image {
  width: 100px;
      flex-shrink: 0;
}
.lp-about-cards__image img {
  width: 100px;
      height: 100px;
      object-fit: contain;
}
.lp-about-cards__body {
  
}
.lp-about-cards__item-title {
  font-size: 22px;
      font-weight: bold;
      color: var(--color-text-1);
      margin-bottom: 8px;
      line-height: 1.4;
}
.lp-about-cards__item-text {
  font-size: 16px;
      color: var(--color-text-2);
      line-height: 1.8;
}
.lp-recommend-features {
  padding: 60px 16px;
      background: #fff;
}
.lp-recommend-features__inner {
  max-width: 860px;
      margin: 0 auto;
}
.lp-recommend-features__bubbles {
  display: flex;
      gap: 16px;
      margin-bottom: 20px;
}
.lp-recommend-features__bubble {
  width: 96px;
      min-width: 96px;
      max-width: 96px;
      height: 96px;
      background: #fff;
      border: 2px solid var(--color-text-1);
      border-radius: 50%;
      font-size: 11px;
      font-weight: bold;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.4;
      word-break: break-all;
      overflow: hidden;
      padding: 8px;
      box-sizing: border-box;
}
.lp-recommend-features__bubble::after {
  content: "";
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 7px;
      height: 7px;
      background: var(--color-text-1);
      border-radius: 50%;
}
.lp-recommend-features__title {
  font-size: 24px;
      font-weight: normal;
      color: var(--color-text-1);
      margin-bottom: 40px;
      line-height: 1.5;
      text-align: center;
}
.lp-recommend-features__title strong {
  font-weight: bold;
      color: var(--color-primary);
}
.lp-recommend-features__grid {
  display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
}
.lp-recommend-features__card {
  background: #f5f5f5;
      border-radius: 12px;
      overflow: visible;
      position: relative;
}
.lp-recommend-features__card-image {
  position: relative;
      width: 100%;
      aspect-ratio: 4/3;
}
.lp-recommend-features__card-image img {
  width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 12px 12px 0 0;
}
.lp-recommend-features__num {
  position: absolute;
      top: -22px;
      left: -22px;
      z-index: 1;
      width: 44px;
      height: 44px;
      font-size: 18px;
      font-weight: bold;
      font-family: 'Schibsted Grotesk', sans-serif;
      color: var(--color-text-1);
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
}
.lp-recommend-features__card-body {
  padding: 20px;
}
.lp-recommend-features__card-title {
  font-size: 22px;
      font-weight: bold;
      color: var(--color-primary);
      margin-bottom: 10px;
      line-height: 1.4;
      text-align: center;
}
.lp-recommend-features__card-text {
  font-size: 18px;
      color: var(--color-text-1);
      line-height: 1.7;
}
.lp-persona-worries .lp-needs__list li {
  font-weight: bold;
}
.lp-worries-02 {
  padding: 60px 16px;
      background: #fff;
}
.lp-worries-02__outer {
  max-width: 860px;
      margin: 0 auto;
      background: #EBE6DC;
      border-radius: 20px;
      padding: 40px;
      position: relative;
}
.lp-worries-02__body {
  width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
}
.lp-worries-02__title {
  font-size: 24px;
      font-weight: bold;
      color: var(--color-text-1);
      margin-bottom: 20px;
      line-height: 1.4;
}
.lp-worries-02__card {
  background: #fff;
      border-radius: 12px;
      padding: 32px 40px;
      width: 100%;
}
.lp-worries-02__items {
  list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
}
.lp-worries-02__item {
  display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 21px;
      font-weight: bold;
      line-height: 1.5;
      color: var(--color-text-1);
}
.lp-worries-02__icon {
  width: 22px;
      flex-shrink: 0;
      margin-top: 2px;
}
.lp-worries-02__image {
  position: absolute;
      right: 0;
      bottom: 0;
      width: 180px;
}
.lp-worries-02__image img {
  width: 100%;
      display: block;
}
.lp-cta-button-standalone {
  padding: 40px 16px;
      text-align: center;
      background: #fff;
}
.lp-service-grid {
  padding: 56px 24px;
      background: #fff;
}
.lp-service-grid + .lp-service-grid {
  padding-top: 0;
}
.lp-service-grid__title {
  font-size: 20px;
      font-weight: bold;
      text-align: center;
      color: var(--color-text-1);
      margin-bottom: 32px;
}
.lp-service-grid__inner {
  display: grid;
      gap: 24px 16px;
      margin: 0 auto;
}
.lp-service-grid__inner--col6 {
  grid-template-columns: repeat(6, 1fr);
      max-width: 720px;
}
.lp-service-grid__inner--col4 {
  grid-template-columns: repeat(4, 1fr);
      max-width: 560px;
}
.lp-service-grid__inner--col3 {
  grid-template-columns: repeat(3, 1fr);
      max-width: 420px;
}
.lp-service-grid__item {
  display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
}
.lp-service-grid__inner--col6 .lp-service-grid__label {
  margin-top: -8px;
}
.lp-service-grid__inner--col4 .lp-service-grid__item {
  gap: 0;
}
.lp-service-grid__inner--col4 .lp-service-grid__label {
  margin-top: -10px;
}
.lp-service-grid__inner--col3 .lp-service-grid__item {
  gap: 0;
}
.lp-service-grid__inner--col3 .lp-service-grid__label {
  margin-top: -14px;
}
.lp-service-grid__inner--col6 .lp-service-grid__icon {
  width: 72px;
      height: 72px;
}
.lp-service-grid__inner--col6 .lp-service-grid__icon img {
  width: 72px;
      height: 72px;
}
.lp-service-grid__inner--col4 .lp-service-grid__icon {
  width: 100px;
      height: 100px;
}
.lp-service-grid__inner--col4 .lp-service-grid__icon img {
  width: 100px;
      height: 100px;
}
.lp-service-grid__inner--col3 .lp-service-grid__icon {
  width: 120px;
      height: 120px;
}
.lp-service-grid__inner--col3 .lp-service-grid__icon img {
  width: 120px;
      height: 120px;
}
.lp-service-grid__icon {
  display: flex;
      align-items: center;
      justify-content: center;
}
.lp-service-grid__icon img {
  object-fit: contain;
}
.lp-service-grid__label {
  font-size: 12px;
      font-weight: bold;
      color: var(--color-text-1);
      text-align: center;
      line-height: 1.5;
}
.lp-service-grid__inner--col4 .lp-service-grid__label {
  font-size: 14px;
}
.lp-service-grid__inner--col3 .lp-service-grid__label {
  font-size: 16px;
}
.lp-icon-gallery {
  padding: 60px 24px 80px;
      background-color: #f5f5f5;
}
.lp-icon-gallery__title {
  font-size: 22px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 8px;
      color: var(--color-text-1);
}
.lp-icon-gallery__subtitle {
  font-size: 13px;
      text-align: center;
      color: var(--color-text-2);
      margin-bottom: 40px;
}
.lp-icon-gallery__group-title {
  font-size: 13px;
      font-weight: bold;
      color: var(--color-text-2);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border-bottom: 1px solid #ddd;
      padding-bottom: 8px;
      margin: 40px 0 20px;
}
.lp-icon-gallery__grid {
  display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 16px;
}
.lp-icon-gallery__item {
  background: #fff;
      border-radius: 10px;
      padding: 16px 8px 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      border: 1px solid #e8e8e8;
}
.lp-icon-gallery__item img {
  width: 80px;
      height: 80px;
      object-fit: contain;
}
.lp-icon-gallery__item-name {
  font-size: 10px;
      color: #888;
      text-align: center;
      word-break: break-all;
      line-height: 1.4;
}
@media screen and (min-width: 768px) {
.lp-problems {
  padding: 100px 32px;
}
.lp-problems__grid {
  grid-template-columns: repeat(2, 1fr);
        gap: 20px;
}
.lp-problems__image {
  max-width: 180px;
        bottom: 40px;
        right: 5%;
}
.lp-solutions {
  padding: 100px 32px;
}
.lp-needs {
  padding: 100px 32px;
}
.lp-needs__grid {
  grid-template-columns: repeat(3, 1fr);
}
.lp-steps__meta {
  order: unset;
        grid-column: 2;
        grid-row: 1;
        text-align: left;
}
.lp-steps__image {
  order: unset;
        grid-column: 1;
        grid-row: 1 / 3;
        width: 100%;
}
.lp-steps__content {
  order: unset;
        grid-column: 2;
        grid-row: 2;
        text-align: left;
}
.lp-steps__item-action {
  justify-content: flex-start;
}
.lp-about {
  padding: 60px 32px 0;
}
.lp-about__card-title {
  font-size: 24px;
}
.lp-about__bubbles-sp {
  display: none;
}
.lp-about__bubbles {
  flex-direction: row;
        justify-content: center;
        gap: 24px;
}
.lp-about__card-footer {
  font-size: 18px;
}
.lp-about__concierge {
  display: block;
        position: absolute;
        right: -20px;
        bottom: -20px;
        width: 150px;
        height: auto;
}
.lp-about-bridge__text {
  font-size: 38px;
}
.lp-about-bridge__main {
  font-size: 38px;
}
.lp-about-bridge__main em {
  font-size: 46px;
}
.lp-about-visual {
  background-color: #F2EDE8;
}
.lp-about-visual {
  margin-top: 60px;
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
}
.lp-about-visual__image {
  position: absolute;
        left: -18%;
        top: -60px;
        width: 64%;
        margin: 0;
        z-index: 1;
}
.lp-about-visual__image img {
  width: 100%;
        height: auto;
        display: block;
}
.lp-about-visual__body {
  margin-left: 50%;
        padding: 48px 48px 60px;
}
.lp-about-visual__catch {
  font-size: 30px;
}
.lp-testimonials-slider__card {
  flex: 0 0 calc((100% - 32px) / 3);
        margin-right: 16px;
}
.lp-testimonials-2 {
  padding: 80px 32px;
        max-width: var(--content-width);
        margin: 0 auto;
}
.lp-testimonials-2__list {
  height: 900px;
}
.lp-testimonials-2__card {
  flex-direction: row;
}
.lp-testimonials-2__headline {
  font-size: 22px;
}
.lp-testimonials-2__image {
  width: 45%;
        height: unset;
        order: unset;
}
.lp-testimonials-3__grid {
  grid-template-columns: repeat(3, 1fr);
}
.lp-star-stats {
  padding: 60px 32px;
        max-width: var(--content-width);
        margin: 0 auto;
}
.lp-star-stats__list {
  flex-direction: row;
}
.lp-star-stats__item + .lp-star-stats__item {
  border-top: none;
        position: relative;
}
.lp-star-stats__item + .lp-star-stats__item::before {
  content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background-color: var(--color-border);
}
.lp-star-stats__number {
  font-size: 48px;
}
.lp-star-stats__unit {
  font-size: 26px;
}
.lp-heading__label {
  font-size: 14px;
}
.lp-heading__title {
  font-size: 28px;
}
.lp-hero__inner {
  display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
        text-align: left;
}
.lp-hero__content {
  flex: 1;
        min-width: 0;
}
.lp-hero__aux {
  justify-content: flex-start;
}
.lp-heading__label {
  font-size: 14px;
        padding-left: 26px;
}
.lp-heading-2__title {
  font-size: 32px;
}
.lp-about-cards__title {
  font-size: 28px;
}
.lp-about-cards__grid {
  grid-template-columns: 1fr 1fr;
}
.lp-recommend-features {
  padding: 80px 32px;
}
.lp-recommend-features__title {
  font-size: 32px;
}
.lp-recommend-features__grid {
  grid-template-columns: repeat(3, 1fr);
}
.lp-worries-02 {
  padding: 80px 32px;
}
.lp-worries-02__title {
  font-size: 28px;
}
}
@media screen and (max-width: 767px) {
.lp-solutions__table,
      .lp-solutions__table tbody,
      .lp-solutions__table tr,
      .lp-solutions__table th,
      .lp-solutions__table td {
  display: block;
        width: 100%;
}
.lp-solutions__table th {
  border-bottom: none;
}
.lp-about__bubbles {
  display: none;
}
.lp-worries-02__outer {
  padding: 28px 24px 150px;
}
.lp-worries-02__image {
  width: 130px;
}
.lp-service-grid__inner--col6 {
  grid-template-columns: repeat(3, 1fr);
}
.lp-service-grid__inner--col4 {
  grid-template-columns: repeat(2, 1fr);
}
}
/* hero画像: SP縦中央 / PC横並び */
.lp-hero__image { margin-top: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
@media screen and (min-width: 768px) {
  .lp-hero__image { flex: 1; max-width: 55%; margin-top: 0; }
}
/* 重複セレクタの必須パッチ（折り返し防止）*/
.lp-stats__number { white-space: nowrap; display: inline-block; }
.lp-header__tel-number { white-space: nowrap; line-height: 1; }
.lp-header__tel-hours { white-space: nowrap; }


/* rev.8-fix: 複合セレクタ誤判定で漏れた単独ルールを補完（ヘッダー右の横並び/stepsグリッド等）*/
.lp-cta-banner__button-arrow img { width: 12px;
      height: 16px; }
.lp-header__right { display: flex;
      align-items: center;
      gap: 16px; }
@media screen and (min-width: 768px) {
.lp-steps__item { display: grid;
        grid-template-columns: 240px 1fr;
        grid-template-rows: auto 1fr;
        column-gap: 40px;
        row-gap: 0;
        align-items: start; }
.lp-steps__item-title { font-size: 22px; }
.lp-header__tel-icon { width: 28px !important;
        height: 28px !important;
        flex-shrink: 0; }
.lp-header__tel-info { display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        gap: 8px !important; }
}

/* rev.9: lp-heading-1（主流h2見出し）を中央揃えに（左→中央へ方針変更）*/
.lp-heading-1 { justify-content: center; text-align: center; }
.lp-heading-1 .lp-heading__title { justify-content: center; text-align: center; }
