/* ==========================================================================
   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-accent: #ff8900;

  /* テキストカラー */
  --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";
}

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 16px;
}

@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 16px;
}

@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: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 6px 2px rgb(6 16 26 / 15%);
}

.lp-hero__cta:hover {
  background-color: var(--color-primary-deep);
  text-decoration: none;
  box-shadow: 0 4px 12px 2px rgb(6 16 26 / 20%);
}

@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: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 6px 2px rgb(0 0 0 / 10%);
}

.lp-cta-banner__button:hover {
  background-color: #f9f9f9;
  text-decoration: none;
  box-shadow: 0 4px 12px 2px rgb(0 0 0 / 15%);
}

@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: 50px;
  cursor: pointer;
  box-shadow: 0 2px 6px 2px rgb(6 16 26 / 15%);
}

.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: 14px 32px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 6px 2px rgb(6 16 26 / 15%);
  transition: background-color 0.2s, box-shadow 0.2s;
}

.lp-btn-primary:hover {
  background-color: var(--color-primary-deep);
  text-decoration: none;
  box-shadow: 0 4px 12px 2px rgb(6 16 26 / 20%);
}

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

.lp-btn-outlined:hover {
  background-color: var(--color-bg-muted);
  text-decoration: none;
  box-shadow: 0 2px 6px 2px rgb(6 16 26 / 10%);
}

/* --------------------------------------------------------------------------
   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: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgb(6 16 26 / 20%);
  transition: background-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.lp-diag-cta__button:hover {
  background-color: var(--color-primary-deep);
  box-shadow: 0 6px 16px rgb(6 16 26 / 28%);
}

.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: 14px 32px;
}

.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>
