@charset "UTF-8";
/*
Style Name: 資産形成 LP 003
Page: asset-003 page
Description: 資産形成 LP 003 固有のCSS
Version: 1.0.0
*/

/* ===================================================================
 1. 設計思想
 ===================================================================*/
/*
設計原則：
- BEMによるコンポーネント設計
- ユーティリティクラスによる柔軟性確保
- LP/メディアサイト共通の基盤設計
- Figma命名規則との一貫性維持
- 14px=1rem基準の統一フォントシステム
- LINE Seed JP優先のフォントスタック
*/

:root {
  /* === カラー（リモートCSSから正確に抽出） === */
  /* テキスト / ベース */
  --color-black: #4e5366;
  --color-black-light: #6e7486;
  --color-gray: #ededef;
  --color-gray-light: #f5f6f8;
  --color-white: #ffffff;

  /* ピンク/レッド系（メインアクセント） */
  --color-red-dark: #89002d;
  --color-red: #e5004c;
  --color-red-light: #f09ca6;
  --color-red-lighter: #fef9fb;

  /* ブルー系 */
  --color-blue-dark: #003c71;
  --color-blue: #3085d1;
  --color-blue-medium: #6faadf;
  --color-blue-light: #dce8fa;
  --color-blue-lighter: #f1faff;
  --color-blue-lightest: #f1faff;

  /* イエロー系 */
  --color-yellow-dark: #bfae00;
  --color-yellow: #f5cf57;
  --color-yellow-light: #fffbd1;
  --color-yellow-lighter: #fefdf0;

  /* 背景色 */
  --color-bg-pink: #fcf1f4;
  --color-bg-lightpink: #fef9fb;
  --color-bg-lightyellow: #fefaee;
  --color-bg-lightblue: #f1faff;
  --color-bg-gray: #fafafa;
  --color-bg-cream: #fffeed;

  /* グラデーション */
  --gradient-red: linear-gradient(45deg, #e5004c 0%, #89002d 100%);
  --gradient-blue: linear-gradient(45deg, #3085d1 0%, #003c71 100%);
  --gradient-blue-light: linear-gradient(45deg, #6faadf 0%, #3085d1 100%);
  --gradient-yellow: linear-gradient(45deg, #f5cf57 0%, #bfae00 100%);

  /* シャドウ系 */
  --shadow-default: 0 2px 6px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.06), 0 8px 16px rgba(0, 0, 0, 0.04);
  --shadow-blue: 0 2px 6px rgba(48, 133, 209, 0.12), 0 4px 8px rgba(48, 133, 209, 0.08), 0 8px 16px rgba(48, 133, 209, 0.06);
  --shadow-blue-light: 0 2px 6px rgba(220, 232, 250, 0.20), 0 4px 8px rgba(90, 157, 224, 0.12), 0 8px 16px rgba(90, 157, 224, 0.08);
  --shadow-red: 0 2px 6px rgba(229, 0, 76, 0.12), 0 4px 8px rgba(229, 0, 76, 0.08), 0 8px 16px rgba(137, 0, 45, 0.06);
  --shadow-yellow-light: 0 2px 6px rgba(255, 243, 224, 0.20), 0 4px 8px rgba(255, 167, 38, 0.12), 0 8px 16px rgba(245, 124, 0, 0.08);
}

/* ===================================================================
 3. 基本レイアウト
 ===================================================================*/

body {
  background: var(--color-white);
}

section {
  position: relative;
  max-width: var(--mobile-base-width);
  margin: 0 auto;
}

/* ===================================================================
 4. 共通コンポーネント
 ===================================================================*/

/* セクションヘッダー */
.c-lp-section__heading {
  color: var(--color-black);
  position: relative;
}

.c-lp-section__heading--main {
  display: inline-block;
  position: relative;
  margin: 0 auto;
}

.c-lp-section__heading--sub {
  display: block;
  font-size: var(--font-md);
}

.c-lp-section__heading--line {
  display: block;
  position: relative;
  width: 120px;
  height: 14px;
  margin: 0 auto var(--space-sm);
}

.c-lp-section__heading--line::before,
.c-lp-section__heading--line::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  background: var(--color-black);
  transform: translateY(-50%);
}

.c-lp-section__heading--line::before {
  left: 0;
  right: 50%;
  margin-right: var(--space-sm);
}

.c-lp-section__heading--line::after {
  left: 50%;
  right: 0;
  margin-left: 0;
}

.c-lp-section__heading--slash {
  position: absolute;
  top: 71%;
  left: 49%;
  width: 10px;
  height: 12px;
  border-left: 2px solid var(--color-black);
  transform: translate(-50%, -50%) rotate(-36deg);
  z-index: 1;
}

.c-lp-section__catch {
  font-size: var(--font-lg);
}

/* セクションテーマ色 */
.c-lp-section--theme-white h2,
.c-lp-section--theme-white h3,
.c-lp-section--theme-white .c-lp-section__heading,
.c-lp-section--theme-white .c-lp-section__heading--sub {
  color: var(--color-white);
}

.c-lp-section--theme-white .c-lp-section__heading--line::before,
.c-lp-section--theme-white .c-lp-section__heading--line::after {
  background: var(--color-white);
}

.c-lp-section--theme-white .c-lp-section__heading--slash {
  border-color: var(--color-white);
}

.c-lp-section--theme-blue h2,
.c-lp-section--theme-blue h3,
.c-lp-section--theme-blue .c-lp-section__heading--sub {
  color: var(--color-blue-dark);
}

.c-lp-section--theme-blue .c-lp-section__heading--slash {
  border-color: var(--color-blue-dark);
}

.c-lp-section--theme-blue .c-lp-section__heading--line::before,
.c-lp-section--theme-blue .c-lp-section__heading--line::after {
  background: var(--color-blue-dark);
}

/* サークルカード */
.c-lp-circle__card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}

.c-lp-circle__image {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.c-lp-circle__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-lp-circle__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--color-bg-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  z-index: 3;
  text-align: center;
  line-height: 1.4;
}

.c-lp-circle__text span {
  display: block;
}

/* 吹き出し */
.c-lp-bubble__body {
  position: relative;
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-default);
}

.c-lp-bubble__body p {
  z-index: 1;
  color: var(--color-black);
}

.c-lp-bubble__body p:last-of-type {
  position: relative;
  margin: 0 !important;
  z-index: 1;
}

.c-lp-bubble__body.u-mb-xl p:last-child {
  margin-bottom: 0 !important;
}

.c-lp-bubble__body-triangle,
.c-lp-bubble__body-triangle::before,
.c-lp-bubble__body-triangle::after {
  width: 28px;
  height: 28px;
  background: var(--color-white);
}

.c-lp-bubble__body-triangle::before,
.c-lp-bubble__body-triangle::after {
  content: "";
  position: absolute;
}

.c-lp-bubble__body-triangle {
  position: absolute;
  bottom: 2px;
  left: 36px;
  border-top-left-radius: 30%;
  transform: rotate(45deg) skewY(45deg) scaleX(0.86666);
}

.c-lp-bubble__body-triangle::before {
  border-top-right-radius: 30%;
  transform: skewX(-45deg) translateX(50%);
}

.c-lp-bubble__body-triangle::after {
  border-bottom-left-radius: 30%;
  transform: skewY(-45deg) translateY(50%);
}

.c-lp-bubble__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.c-lp-bubble__avatar {
  position: relative;
  display: block;
  width: 88px;
  min-width: 88px;
  max-width: 88px;
  height: 88px;
  min-height: 88px;
  max-height: 88px;
  border-radius: var(--border-radius-full);
}

.c-lp-bubble__avatar img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.c-lp-bubble__avatar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  border-radius: var(--border-radius-full);
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  display: block;
}

.c-lp-bubble__meta-note-name span {
  font-size: var(--font-sm);
}

/* LP固有のボタン設定（基本設計はstyle.cssにセットアップ済み） */
.c-button {
  background: var(--color-red);
  box-shadow: 0 4px 0 var(--color-red-dark);
  animation: shakeAnimation 1.3s ease-out infinite;
  animation-delay: 1s;
}

@keyframes shakeAnimation {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(1.05);
  }

  60% {
    transform: scale(1.02);
  }

  70% {
    transform: scale(1.05);
  }

  80% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.c-button:hover {
  animation: none;
  translate: 0px 4px;
  box-shadow: 0 0 0 var(--color-red-dark);
}

.c-button:disabled,
.c-button.disabled {
  animation: none;
  font-size: var(--font-md);
  color: var(--color-red);
  border-radius: var(--border-radius-full);
  box-shadow: none;
  border: 1px solid var(--color-red);
  background: var(--color-white);
  opacity: 1;
}

.c-button:disabled:hover,
.c-button.disabled:hover {
  translate: none;
  box-shadow: none;
}

.c-button.disabled .arrow,
.c-button:disabled .arrow {
  display: none;
}

/* LP固有のトグルアイコン色設定（基本設計はstyle.cssにセットアップ済み） */
.c-toggle-icon {
  border-color: var(--color-blue);
}

.c-toggle-icon::before,
.c-toggle-icon::after {
  background: var(--color-bg-lightpink);
}

/* LP固有のアロー色設定（基本設計はstyle.cssにセットアップ済み） */
.slider--arrow::before {
  border-right-color: var(--color-blue) !important;
  border-bottom-color: var(--color-blue) !important;
}

/* ===================================================================
 5. ヒーローセクション (c-lp-hero)
 ===================================================================*/

.c-lp-hero {
  position: relative;
  background: var(--color-bg-lightpink);
  overflow: hidden;
}

@media (min-width: 0px) and (max-width: 767px) {
  .c-lp-hero {
    height: min(100dvh, 956px);
  }
}

.c-lp-hero__content {
  position: relative;
  background: var(--color-bg-lightpink);
  border-radius: var(--border-radius-md);
  z-index: 1;
}

@media (min-width: 0px) and (max-width: 767px) {
  .c-lp-hero__content {
    height: calc(min(100dvh, 956px) - var(--space-md) * 2);
  }
}

.c-lp-hero__content .l-section--sm {
  padding-top: var(--space-md) !important;
  padding-bottom: var(--space-md) !important;
}

.c-lp-hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.c-lp-hero__logo img {
  width: 140px;
  margin: 0 auto;
}

.c-lp-hero-images-container {
  width: 92%;
  margin: 0 auto;
}

.c-lp-hero .l-section--lg {
  position: relative;
  z-index: 1;
}

@media (min-width: 0px) and (max-width: 767px) {
  .c-lp-hero .l-section--lg {
    display: flex;
    height: calc(min(100dvh, 956px) - var(--space-md) * 2);
    flex-direction: column;
    justify-content: center;
  }
}

.c-lp-hero .c-lp-section__heading {
  z-index: 2;
}

.c-lp-hero .c-lp-section__heading--main {
  font-size: var(--font-lg);
  margin-bottom: var(--space-sm);
}

.c-lp-hero .c-lp-section__heading--sub {
  color: var(--color-red);
}

.c-lp-hero .c-lp-section__heading--slash {
  border-color: var(--color-red);
}

.c-lp-hero .c-lp-section__heading--line::before,
.c-lp-hero .c-lp-section__heading--line::after {
  background: var(--color-red);
}

.c-lp-hero__title-image {
  position: relative;
  z-index: 2;
}

.c-lp-hero__catch-image {
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  z-index: 4;
}

.c-lp-hero__list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: var(--space-lg);
  max-width: 100%;
  margin: 0 auto;
  z-index: 3;
}

.c-lp-hero__item {
  position: relative;
  animation: fadeInScale 1s ease-out forwards;
  opacity: 0;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--border-radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-all);
  background: var(--color-blue-lightest);
  border: 2px solid var(--color-blue);
  z-index: 1;
}

.c-lp-hero__item:nth-child(1) {
  animation-delay: 0.3s;
  animation: fadeInScale 1s ease-out forwards, shadowPulse 3s infinite 1.5s, itemFloat 4s ease-in-out infinite 2.5s;
}

.c-lp-hero__item:nth-child(3) {
  animation-delay: 0.6s;
  animation: fadeInScale 1s ease-out forwards, shadowPulse 3s infinite 2.5s, itemFloat 4s ease-in-out infinite 3s;
}

.c-lp-hero__item:nth-child(5) {
  animation-delay: 0.9s;
  animation: fadeInScale 1s ease-out forwards, shadowPulse 3s infinite 3.5s, itemFloat 4s ease-in-out infinite 3.5s;
}

.c-lp-hero__item:hover {
  transform: scale(1.05);
}

.c-lp-hero__item-images-icon {
  position: absolute;
  top: -26px;
  left: 50%;
  height: 42px;
  transform: translateX(-50%);
  animation: iconFloat 3s ease-in-out infinite;
}

.c-lp-hero__item:nth-child(1) .c-lp-hero__item-images-icon {
  animation-delay: 1.5s;
}

.c-lp-hero__item:nth-child(3) .c-lp-hero__item-images-icon {
  animation-delay: 2.5s;
}

.c-lp-hero__item:nth-child(5) .c-lp-hero__item-images-icon {
  animation-delay: 3.5s;
}

.c-lp-hero__item-images-icon img {
  height: 42px;
}

.c-lp-hero__item-text-main {
  font-size: var(--font-sm);
  letter-spacing: 1px;
  color: var(--color-blue-dark);
}

.c-lp-hero__item-text-sub {
  font-size: var(--font-xs);
  letter-spacing: 0.3px;
  color: var(--color-blue-dark);
}

.c-lp-hero__list .times {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border-radius: var(--border-radius-full);
  animation: fadeInScaleTimes 0.6s ease-out forwards;
  opacity: 0;
  z-index: 2;
  box-shadow: 0 0 6px var(--color-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.c-lp-hero__list .times:nth-child(2) {
  animation-delay: 0.7s;
  left: 32.333%;
}

.c-lp-hero__list .times:nth-child(4) {
  animation-delay: 1.1s;
  left: 67.777%;
}

.c-lp-hero__list .times::before,
.c-lp-hero__list .times::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--color-red);
  border-radius: 1px;
  transform-origin: center;
}

.c-lp-hero__list .times::before {
  transform: rotate(45deg);
}

.c-lp-hero__list .times::after {
  transform: rotate(-45deg);
}

/* 背景画像 */
.c-lp-hero__bg-image-001,
.c-lp-hero__bg-image--002,
.c-lp-hero__bg-image--003,
.c-lp-hero__bg-image--004 {
  position: absolute;
  pointer-events: none;
}

.c-lp-hero__bg-image--002,
.c-lp-hero__bg-image--003 {
  z-index: 2;
}

.c-lp-hero__bg-image-001,
.c-lp-hero__bg-image--004 {
  z-index: 1;
}

.c-lp-hero__bg-image-001 {
  top: -2%;
  left: -12%;
  width: 45%;
  height: auto;
}

.c-lp-hero__bg-image--002 {
  top: -3%;
  right: -29%;
  width: 50%;
  height: auto;
}

.c-lp-hero__bg-image--003 {
  bottom: 15%;
  left: -30%;
  width: 55%;
  height: auto;
}

.c-lp-hero__bg-image--004 {
  bottom: 4%;
  right: -20%;
  width: 45%;
  height: auto;
}

/* レスポンシブ対応 */
@media (max-width: 319px) {

  .c-lp-hero__bg-image-001,
  .c-lp-hero__bg-image--002,
  .c-lp-hero__bg-image--003,
  .c-lp-hero__bg-image--004 {
    display: none;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .c-lp-hero__bg-image-001 {
    top: -6px;
    left: -12%;
    width: min(45%, 45dvh);
  }

  .c-lp-hero__bg-image--002 {
    top: -14px;
    right: -29%;
    width: min(50%, 50dvh);
  }

  .c-lp-hero__bg-image--003 {
    bottom: min(120px, 12dvh);
    left: -30%;
    width: min(55%, 55dvh);
  }

  .c-lp-hero__bg-image--004 {
    bottom: min(40px, 4dvh);
    right: -20%;
    width: min(45%, 45dvh);
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .c-lp-hero__bg-image-001 {
    top: -6px;
    left: -12%;
    width: min(35%, 35dvh);
  }

  .c-lp-hero__bg-image--002 {
    top: -14px;
    right: -29%;
    width: min(40%, 40dvh);
  }

  .c-lp-hero__bg-image--003 {
    bottom: min(80px, 10dvh);
    left: -30%;
    width: min(45%, 45dvh);
  }

  .c-lp-hero__bg-image--004 {
    bottom: min(30px, 3dvh);
    right: -20%;
    width: min(35%, 35dvh);
  }
}

/* アニメーション */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeInScaleTimes {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  40% {
    opacity: 0.3;
    transform: scale(1.04);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes shadowPulse {
  0% {
    box-shadow: 0 0 0 0 transparent;
  }

  40% {
    box-shadow: 0 0 0 8px var(--color-blue-lighter);
  }

  100% {
    box-shadow: 0 0 0 16px transparent;
  }
}

@keyframes itemPulse {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes iconFloat {
  0% {
    transform: translateX(-50%) translateY(0px);
  }

  40% {
    transform: translateX(-50%) translateY(-4px) scale(1.05);
  }

  100% {
    transform: translateX(-50%) translateY(0px);
  }
}

/* ===================================================================
 6. CTAセクション (c-lp-cta)
 ===================================================================*/

.c-lp-cta {
  position: relative;
}

.c-lp-cta__button--primary {
  position: relative;
  z-index: 1;
}

.c-lp-cta__catch--text {
  position: relative;
  font-size: var(--font-md);
  color: var(--color-red);
  display: inline-block;
}

.c-lp-cta__catch--text::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(-20deg);
  width: 2px;
  height: 20px;
  background: var(--color-red);
}

.c-lp-cta__catch--text::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  width: 2px;
  height: 20px;
  background: var(--color-red);
}

.c-lp-cta__button::before {
  content: "";
  background: transparent;
}

.c-lp-cta__button_icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--color-white);
}

/* ===================================================================
 7. おすすめセクション (c-lp-recommend)
 ===================================================================*/

.c-lp-recommend {
  position: relative;
  background: var(--color-bg-lightblue);
  overflow: hidden;
}

.c-lp-recommend .c-lp-bubble__body {
  box-shadow: var(--shadow-blue);
}

.c-lp-recommend__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.c-lp-recommend__item--01,
.c-lp-recommend__item--02,
.c-lp-recommend__item--03,
.c-lp-recommend__item--04 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.c-lp-recommend__item--01,
.c-lp-recommend__item--03 {
  flex-direction: row-reverse;
}

.c-lp-recommend__item-thumb {
  width: 136px;
  height: 136px;
  background: var(--color-white);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.c-lp-recommend__list .c-lp-circle__text {
  color: var(--color-black);
}

.c-lp-recommend__item-text {
  flex: 0 1 auto;
  max-width: 60%;
  font-size: var(--font-lg);
  line-height: var(--line-height-normal);
}

.c-lp-recommend__item-text .highlight {
  color: var(--color-red);
}

/* ===================================================================
 8. ベネフィットセクション (c-lp-benefits)
 ===================================================================*/

.c-lp-benefits {
  position: relative;
  background: var(--color-bg-lightpink);
}

.c-lp-benefits__arch-top {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

.c-lp-benefits__arch-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

.c-lp-benefits__arch-bottom {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

.c-lp-benefits__arch-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(180deg);
}

.c-lp-benefits .c-lp-circle__text {
  background: var(--color-bg-lightyellow);
}

.c-lp-benefits .c-lp-bubble__avatar::after {
  background: var(--gradient-blue-light);
  opacity: .2;
}

.c-lp-benefits .c-lp-bubble__meta-note {
  color: var(--color-blue-dark);
}

.c-lp-benefits .c-lp-bubble__body {
  box-shadow: var(--shadow-red);
}

/* ===================================================================
 9. 3つのチカラセクション (c-lp-strength)
 ===================================================================*/

.c-lp-strength {
  position: relative;
  background: var(--color-bg-lightpink);
  color: var(--color-white);
  overflow: hidden;
}

.c-lp-strength .c-lp-bubble__body {
  box-shadow: var(--shadow-blue);
}

/* ===================================================================
 10. 3つのポイントセクション (c-lp-point)
 ===================================================================*/

.c-lp-point {
  background: var(--color-yellow-light);
}

.c-lp-point .c-lp-circle__text {
  color: var(--color-white);
  background: var(--color-blue-light);
}

.c-lp-point .c-lp-bubble__avatar::after {
  background: var(--gradient-red);
  opacity: .2;
}

.c-lp-point .c-lp-bubble__meta-note {
  color: var(--color-red);
}

.c-lp-point .c-lp-bubble__body {
  box-shadow: var(--shadow-yellow-light);
}

/* ===================================================================
 11. 事例紹介セクション (c-lp-case)
 ===================================================================*/

.c-lp-case {
  position: relative;
  background: var(--color-bg-lightblue);
}

.c-lp-case .l-container--xl {
  padding-left: 0;
  padding-right: 0;
}

.c-lp-case .c-lp-bubble__body {
  box-shadow: var(--shadow-blue);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-lp-case__slider-wrapper {
  position: relative;
  overflow: hidden;
}

.c-lp-case__slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 100%;
  background: var(--color-bg-lightblue);
  z-index: 1000;
  pointer-events: none;
}

.c-lp-case__slide-list {
  position: relative;
  z-index: 999;
}

.c-lp-case__slide-list .slick-slide {
  padding: 0 8px;
}

.c-lp-case__slide-list.slick-initialized {
  width: 100%;
}

.slick-slide .c-lp-case__content img {
  display: inline-block;
}

.c-lp-case__desc-text {
  margin-bottom: 0;
}

.c-lp-case .slider--arrow {
  top: 30%;
  box-shadow: var(--shadow-blue);
  z-index: 1001;
}

/* ===================================================================
 12. c-lp-case-comparison - Before/After比較コンポーネント
 ===================================================================*/

.c-lp-case-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.c-lp-case-comparison__before,
.c-lp-case-comparison__after {
  padding: var(--space-xs);
}

.c-lp-case-comparison__h3 {
  color: var(--color-blue) !important;
}

.c-lp-case-comparison__label {
  position: relative;
  display: inline-flex;
  margin: 0;
  align-items: center;
  gap: var(--space-xs);
  padding-left: 32px;
  font-size: var(--font-md);
}

.c-lp-case-comparison__label--before {
  color: var(--color-red);
}

.c-lp-case-comparison__label--after {
  color: var(--color-blue);
}

.c-lp-case-comparison__label--before::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: 13px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  transform: rotate(45deg);
}

.c-lp-case-comparison__label--before::after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: 4px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-red);
  border-radius: var(--border-radius-full);
}

.c-lp-case-comparison__label--after::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: 13px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  transform: rotate(45deg);
}

.c-lp-case-comparison__label--after::after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: 4px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-blue);
  border-radius: var(--border-radius-full);
}

.c-lp-case-comparison__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-lp-case-comparison__item {
  padding: var(--space-xs) 0;
  font-size: var(--font-sm);
  line-height: var(--line-height-normal);
  position: relative;
  padding-left: var(--space-lg);
}

.c-lp-case-comparison__item::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 12px;
  width: 4px;
  height: 4px;
  background: var(--color-gray);
  border-radius: var(--border-radius-full);
}

.c-lp-case-comparison__item--negative {
  color: var(--color-red);
}

.c-lp-case-comparison__item--negative::before {
  background: var(--color-red);
}

.c-lp-case-comparison__item--positive {
  color: var(--color-blue);
}

.c-lp-case-comparison__item--positive::before {
  background: var(--color-bg-lightpink);
}

.c-case-quote {
  padding: var(--space-md);
  position: relative;
}

.c-case-quote::before,
.c-case-quote::after {
  position: absolute;
  font-size: 64px;
  color: var(--color-blue);
  font-weight: bold;
  opacity: 0.3;
  line-height: 1;
}

.c-case-quote::before {
  content: "\201C";
  top: -10px;
  left: 0px;
}

.c-case-quote::after {
  content: "\201D";
  bottom: -32px;
  right: 0px;
}

/* ===================================================================
 12. 未来像セクション (c-lp-features)
 ===================================================================*/

.c-lp-features {
  position: relative;
  background: var(--color-yellow-light);
}

.c-lp-features .c-lp-bubble__avatar::after {
  background: var(--color-yellow);
  opacity: .2;
}

.c-lp-features .c-lp-bubble__body {
  box-shadow: var(--shadow-yellow-light);
}

/* ===================================================================
 13. FPセクション (c-lp-step)
 ===================================================================*/

.c-lp-profile {
  position: relative;
  background: var(--color-bg-lightblue);
}

.c-lp-profile__list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: var(--font-md);
  justify-content: center;
  align-items: center;
}

.c-lp-profile__item {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}

.c-lp-profile__header {
  display: flex;
  align-items: center;
  padding: var(--space-md);
  border: 1px solid var(--color-blue-light);
}

.c-lp-profile__image-container {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-right: var(--space-lg);
  border-radius: var(--border-radius-full);
  overflow: hidden;
  border: 1px solid var(--color-blue-light);
}

.c-lp-profile__image-container .c-lp-profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-lp-profile__header-text .c-lp-profile__name {
  font-size: var(--font-md);
  margin-bottom: var(--space-sm);
  color: var(--color-blue-dark);
}

.c-lp-profile__header-text .c-lp-profile__qualifications {
  font-size: var(--font-base);
  color: var(--color-blue);
}

.c-lp-profile__header-text .c-lp-profile__qualifications li {
  padding: var(--space-xs) 0;
  line-height: var(--line-height-normal);
  position: relative;
  padding-left: var(--space-sm);
}

.c-lp-profile__header-text .c-lp-profile__qualifications li::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--color-blue);
  border-radius: var(--border-radius-full);
}

.c-lp-profile__body {
  padding: var(--space-md);
}

.c-lp-profile__body .c-lp-profile__title {
  font-size: var(--font-md);
  font-weight: bold;
  color: var(--color-blue);
  margin-top: 0;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: 3px solid var(--color-blue);
}

.c-lp-profile__body .c-lp-profile__text {
  font-size: var(--font-base);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===================================================================
 14. ステップセクション (c-lp-step)
 ===================================================================*/

.c-lp-step {
  position: relative;
  background: var(--color-bg-lightpink);
}

.c-lp-step .c-lp-bubble__body {
  box-shadow: var(--shadow-blue);
}

.c-lp-step__list {
  counter-reset: flow-step;
}

.c-lp-step__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: var(--space-sm);
  justify-content: flex-start;
  gap: var(--space-md);
  background: var(--color-white);
  border-radius: var(--border-radius-md);
}

.c-lp-step__item:last-child {
  margin-bottom: 0;
}

.c-lp-step__thumb {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-full);
  flex-shrink: 0;
  transition: transform var(--transition-base),
    border-color var(--transition-base);
}

.c-lp-step__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  min-width: 56px;
  max-width: 56px;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--border-radius-full);
  transform: translate(-50%, -50%);
}

.c-lp-step__thumb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-full);
  background: var(--gradient-blue-light);
  opacity: .2;
  transform: translate(-50%, -50%);
  display: block;
}

.c-lp-step__item-heading h3 {
  font-size: var(--font-md);
  color: var(--color-blue-dark);
}

.c-lp-step__item-heading p:first-child,
.c-lp-step__item-heading p:last-child {
  margin-bottom: 0;
}

.c-lp-step__item--arrow {
  position: relative;
  width: 100%;
  height: var(--space-sm);
  margin-bottom: var(--space-md);
}

.c-lp-step__item--arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  border-left: none;
  border-top: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-lp-step__item:last-child .c-lp-step__item--arrow::before {
  display: none;
}

/* ===================================================================
 14. フォームセクション (c-lp-form)
 ===================================================================*/

.c-lp-form {
  position: relative;
  background: var(--color-blue-lightest);
}

/* LPフォーム固有のスタイル */
.c-lp-form .c-form__field input,
.c-lp-form .c-form__field select,
.c-lp-form .c-form__field textarea,
.c-lp-form .c-form__field .c-form__checkbox,
.c-lp-form .c-form__field .c-form__radio {
  border-color: var(--color-blue-light);
}

.c-form__checkbox-icon::before,
.c-form__radio-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--color-blue-dark);
  border-bottom: 2px solid var(--color-blue-dark);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.c-lp-form .c-form__label--label.required {
  background: var(--color-red);
}

.c-lp-form .c-form__label--label.completed {
  background: var(--color-red);
}

.c-form__checkbox-icon,
.c-form__radio-icon {
  border: 1px solid var(--color-blue-dark);
}

/* LP固有のプライバシーポリシー色設定（基本設計はstyle.cssにセットアップ済み） */
.c-lp-privacy .c-toggle-icon {
  width: 24px;
  height: 24px;
  background: var(--color-white);
  border-color: var(--color-black-light);
}

.c-lp-privacy .c-toggle-icon::before,
.c-lp-privacy .c-toggle-icon::after {
  width: 12px;
  height: 1px;
  background-color: var(--color-black-light);
}

.c-form__privacy-title .c-toggle-icon {
  width: 24px;
  height: 24px;
  background-color: var(--color-white);
  border-color: var(--color-black-light);
}

.c-form__privacy-title .c-toggle-icon::before,
.c-form__privacy-title .c-toggle-icon::after {
  width: 12px;
  height: 1px;
  background-color: var(--color-black-light);
}

.c-form__privacy-title .c-form__label:hover .c-toggle-icon {
  border-color: var(--color-red);
}

.c-form__privacy-title .c-form__label:hover .c-toggle-icon::before,
.c-form__privacy-title .c-form__label:hover .c-toggle-icon::after {
  background-color: var(--color-red);
}

.c-form__privacy-title .c-form__label:hover {
  border: 1px solid var(--color-red);
  background-color: var(--color-red-light);
}

.c-form__privacy-container {
  border-color: var(--color-blue);
}

/* LP固有のフォーム状態 */
.c-lp-form .c-form__field.completed input,
.c-lp-form .c-form__field.completed select,
.c-lp-form .c-form__field.completed textarea {
  border-color: var(--color-blue);
}

.c-lp-form .c-form__field input:hover:not(:focus),
.c-lp-form .c-form__field select:hover:not(:focus),
.c-lp-form .c-form__field textarea:hover:not(:focus) {
  border-color: var(--color-blue);
  background: var(--color-blue-lighter);
}

/* LP固有のエラー状態 */
.c-lp-form input.error-field,
.c-lp-form select.error-field,
.c-lp-form textarea.error-field {
  border-color: var(--color-red);
  background: var(--color-red-lighter);
}

/* カスタムセレクト用エラーメッセージ - LP固有 */
.c-lp-form .c-form__custom-select+.c-form__error-message {
  margin-top: 0.25rem;
  display: block;
  position: relative;
  z-index: 1;
}

/* ===================================================================
 15. FAQセクション (c-lp-faq)
 ===================================================================*/

.c-lp-faq {
  position: relative;
  background: var(--color-bg-lightpink);
}

.c-lp-faq .c-lp-bubble__body {
  box-shadow: var(--shadow-blue);
}

.c-lp-faq__list {
  position: relative;
  list-style: none;
  padding: var(--space-md);
  margin: 0;
  background: var(--color-white);
  border-radius: var(--border-radius-md);
}

.c-lp-faq__item {
  overflow: hidden;
  transition: var(--transition-medium);
}

.c-lp-faq__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-blue-dark);
}

.c-lp-faq__title {
  margin: 0;
  font-size: var(--font-base);
}

/* LP固有のFAQトグルアイコン色設定（基本設計はstyle.cssにセットアップ済み） */
.c-lp-faq .c-toggle-icon {
  border: 1px solid var(--color-blue-dark);
}

.c-lp-faq .c-toggle-icon::before,
.c-lp-faq .c-toggle-icon::after {
  background: var(--color-blue-dark);
}

.c-lp-faq__desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 var(--space-md);
  font-size: var(--font-sm);
  color: var(--color-red);
  line-height: var(--line-height-normal);
  transition: max-height var(--transition-medium),
    opacity var(--transition-medium), padding var(--transition-base);
}

.c-lp-faq__item.is-open .c-lp-faq__desc {
  opacity: 1;
  padding: var(--space-md);
  max-height: 500px;
}

/* ===================================================================
 16. 企業情報セクション (c-lp-company)
 ===================================================================*/

.c-lp-company {
  position: relative;
  background: var(--color-bg-lightpink);
}

.c-lp-company__summary {
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  margin-top: var(--space-md);
}

.c-lp-company__summary-logo {
  max-width: 140px;
  margin: 0 auto var(--space-lg);
}

.c-lp-company__summary-logo img {
  height: auto;
}

.c-lp-company__summary p {
  font-size: var(--font-sm);
  color: var(--color-blue-dark);
}

.c-lp-company__summary p:last-child {
  margin-bottom: 0;
}

.c-lp-footer {
  position: relative;
  font-size: var(--font-xs);
  border-top: 1px solid var(--color-blue-light);
  background: var(--color-blue-dark);
  color: var(--color-white);
  padding: var(--space-md) 0;
}

/* ===================================================================
 17. LP固有サイドバー色設定（基本設計はstyle.cssにセットアップ済み）
 ===================================================================*/

@media screen and (min-width: 1024px) {
  .c-lp-sidebar {
    box-shadow: var(--shadow-red);
  }

  .c-lp-sidebar__nav {
    border-top: 1px solid var(--color-blue-light);
  }

  .c-lp-nav-link {
    color: var(--color-blue-dark);
  }

  .c-lp-nav-link::after {
    background: var(--color-blue-light);
  }
}
