@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;600&display=swap');


/* =========================================================
   AIdea Studio LP専用スコープ
   （ページ全体を <div class="aidea-lp"> で囲む）
   ========================================================= */
.aidea-lp {
  /* ページ全体の背景：ほんのりパステルでスタジオ感 */
  background: radial-gradient(circle at 20% 20%, #ffffff 0%, #fdf8ff 40%, #f7fbff 70%);
  color: #1a1a1a;
  font-family: "Poppins","Noto Sans JP",sans-serif;
  font-weight: 400;
  line-height: 1.7;
  padding: 0 0 64px;
}

/* Cocoonの背景・余白系をリセット（このLPの中だけ） */
.aidea-lp #content,
.aidea-lp #main,
.aidea-lp #container,
.aidea-lp .article,
.aidea-lp .entry-content,
.aidea-lp .article-inner,
.aidea-lp .article-content,
.aidea-lp .content-area,
.aidea-lp .site-content,
.aidea-lp .main-content,
.aidea-lp .article-header,
.aidea-lp .entry-header,
.aidea-lp .article-footer,
.aidea-lp .entry-footer {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* リンクの基本色 */
.aidea-lp a {
  color: #4a5bff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.aidea-lp a:hover {
  color: #ff7eb8;
  text-decoration: none;
}


/* =========================================================
   タイポグラフィ / テキストルール
   ========================================================= */

/* 見出し（h1-h6）はすべて同じトーンで統一 */
.aidea-lp h1,
.aidea-lp h2,
.aidea-lp h3,
.aidea-lp h4,
.aidea-lp h5,
.aidea-lp h6 {
  font-family: "Poppins","Noto Sans JP",sans-serif;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin: 0 0 1rem;
  text-align: left; /* テキストは左詰め */
}

/* セクションタイトルっぽいh2は少し大きめ */
.aidea-lp h1 { font-size: 2.0rem; }
.aidea-lp h2 { font-size: 1.8rem; }
.aidea-lp h3 { font-size: 1.3rem; }
.aidea-lp h4 { font-size: 1.15rem; }
.aidea-lp h5,
.aidea-lp h6 { font-size: 1rem; }

/* 本文段落・テキストブロックはすべて同フォント/カラー */
.aidea-lp p,
.aidea-lp .ai-text,
.aidea-lp .wp-block-paragraph {
  font-family: "Poppins","Noto Sans JP",sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin: 0 0 1.2rem;
  text-align: left; /* テキストは左詰め */
}

/* リスト（ul, ol）も同じフォント・カラーで統一 */
.aidea-lp ul,
.aidea-lp ol {
  font-family: "Poppins","Noto Sans JP",sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin: 0 0 1.2rem;
  padding-left: 1.4rem; /* 左にリストマーカー寄せる */
  text-align: left;
}
.aidea-lp li {
  margin-bottom: .5rem;
}

/* セクション内で中央寄せに見せるためのコンテナの幅制御 */
.aidea-lp .ai-inner {
  max-width: 800px;
  margin: 0 auto;          /* ブロック中央配置 */
  text-align: left;        /* ただし文章は左揃え */
}

.aidea-lp .ai-inner--narrow {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}


/* =========================================================
   セクションブロック（サイトの基本構造）
   例）
   <div class="aidea-lp">
     <section class="ai-section">
       <div class="ai-inner">
         <h2>...</h2>
         <p>...</p>
       </div>
     </section>
   </div>
   ========================================================= */
.aidea-lp .ai-section {
  position: relative;
  padding: 72px 20px;
  border-radius: 24px;
  background: radial-gradient(
    circle at 10% 0%,
    rgba(255,255,255,0.7) 0%,
    rgba(255,255,255,0.4) 60%,
    rgba(255,255,255,0) 100%
  );
  box-shadow:
    0 40px 120px rgba(90,117,255,0.12),
    0 8px 32px rgba(0,0,0,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #1a1a1a;
  overflow: hidden;
  margin: 0 auto 48px;
  max-width: 1100px; /* セクション自体も横幅制御。中央に置く */
}

/* 柔らかい背景の光（右上ピンク/左下ブルー） */
.aidea-lp .ai-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(255,182,193,0.25) 0%,
    rgba(255,255,255,0) 70%
  );
  filter: blur(10px);
  z-index: 0;
}
.aidea-lp .ai-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(106,181,255,0.25) 0%,
    rgba(255,255,255,0) 70%
  );
  filter: blur(12px);
  z-index: 0;
}

/* 中身(ai-inner)を一段Z上げて、テキストを安全に表示 */
.aidea-lp .ai-section > .ai-inner,
.aidea-lp .ai-section > .ai-inner--narrow {
  position: relative;
  z-index: 1;
}

/* ai-section内のh2専用の目印ライン（左寄せ、だけどブロックは中央に配置されてる） */
.aidea-lp .ai-section h2 {
  position: relative;
  margin-bottom: 1.2rem;
}
.aidea-lp .ai-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 999px;
  margin-top: 16px;
  background: linear-gradient(
    90deg,
    #ff9bd4 0%,
    #ffb36b 50%,
    #6ab5ff 100%
  );
  box-shadow: 0 8px 20px rgba(255,155,212,0.4);
}


/* =========================================================
   カード・機能紹介などのまとまり
   ========================================================= */

/*
  使い方イメージ：
  <div class="ai-cards ai-inner">
    <div class="ai-card">
      <div class="ai-card-body">
        <h3>タイトル</h3>
        <p>説明文</p>
        <ul>...</ul>
      </div>
      <div class="ai-cta">
        <a href="#">相談する</a>
      </div>
    </div>
  </div>
*/

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

/* 個別カード */
.aidea-lp .ai-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(90,117,255,0.15);
  border-radius: 20px;
  box-shadow:
    0 32px 80px rgba(90,117,255,0.12),
    0 8px 24px rgba(0,0,0,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* CTAを下に押し下げるため */
  text-align: left;

  padding: 28px 24px;
  max-width: 360px;
  min-height: 420px;

  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 0 auto;
}

/* 柔らかグロー */
.aidea-lp .ai-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: -40px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,182,193,0.28) 0%,
    rgba(255,255,255,0) 70%
  );
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

/* ホバー軽く浮く */
.aidea-lp .ai-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 40px 100px rgba(90,117,255,0.18),
    0 12px 28px rgba(0,0,0,0.07);
}

/* カード内の本文エリア */
.aidea-lp .ai-card-body {
  position: relative;
  z-index: 1;
  max-width: 100%;
  text-align: left;
  margin: 0 auto;
  width: 100%;
}

/* カード内の見出しも同ルールで統一 */
.aidea-lp .ai-card-body h3 {
  font-family: "Poppins","Noto Sans JP",sans-serif;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0 0 .75rem;
  text-align: left;
  letter-spacing: 0.03em;
}

/* カード内のテキストも共通ルール */
.aidea-lp .ai-card-body p {
  font-family: "Poppins","Noto Sans JP",sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  text-align: left;
}

/* カード内リストも共通ルール＋左揃え */
.aidea-lp .ai-card-body ul,
.aidea-lp .ai-card-body ol {
  font-family: "Poppins","Noto Sans JP",sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  text-align: left;
}
.aidea-lp .ai-card-body li {
  margin-bottom: .5rem;
}


/* =========================================================
   CTAボタン（ブロック下部・中央配置）
   ========================================================= */

/*
  想定HTML:
  <div class="ai-cta">
    <a href="#">無料で相談する</a>
  </div>
  
  これはカードの一番下や、ai-sectionの最後に置く運用。
*/
.aidea-lp .ai-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center; /* ブロックとして中央 */
  align-items: flex-end;
  margin-top: 16px;
}

.aidea-lp .ai-cta a {
  display: inline-block;
  text-align: center;
  font-family: "Poppins","Noto Sans JP",sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;

  padding: 12px 28px;
  border-radius: 14px;
  border: 0;

  /* やわらかパステルグラデ */
  background: linear-gradient(
    90deg,
    #ff9bd4 0%,
    #ffb36b 50%,
    #6ab5ff 100%
  );

  box-shadow:
    0 16px 40px rgba(255,155,212,0.4),
    0 4px 12px rgba(0,0,0,0.08);

  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* ボタンのキラッと演出 */
.aidea-lp .ai-cta a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0) 100%
  );
  filter: blur(2px);
  transform: skewX(-20deg);
  transition: all 0.45s ease;
}

.aidea-lp .ai-cta a:hover::before {
  left: 120%;
}

.aidea-lp .ai-cta a:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 20px 44px rgba(255,155,212,0.5),
    0 6px 16px rgba(0,0,0,0.08);
}


/* =========================================================
   Voice / 体験談エリア
   ========================================================= */

/*
  想定HTML:
  <section class="ai-section">
    <div class="ai-inner ai-voice-section">
      <h2>お客様の声</h2>
      <div class="ai-voice-card">
        <div class="ai-voice-icon"><img src=""></div>
        <div class="ai-voice-content">
          <div class="ai-voice-name">XXさん / 30代</div>
          <div class="ai-voice-text">テキスト…</div>
        </div>
      </div>
    </div>
  </section>
*/

.aidea-lp .ai-voice-section {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(90,117,255,0.15);
  border-radius: 20px;
  box-shadow:
    0 40px 120px rgba(90,117,255,0.1),
    0 8px 24px rgba(0,0,0,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 40px 24px;
  text-align: left;
  color: #1a1a1a;
}

/* Voiceカード1件ごと */
.aidea-lp .ai-voice-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(90,117,255,0.15);
  border-radius: 16px;
  padding: 20px 24px;
  width: 100%;
  box-shadow:
    0 24px 60px rgba(90,117,255,0.12),
    0 6px 16px rgba(0,0,0,0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .25s ease;
  margin: 24px auto 0;
}

.aidea-lp .ai-voice-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 32px 80px rgba(90,117,255,0.18),
    0 10px 24px rgba(0,0,0,0.07);
}

/* アイコン */
.aidea-lp .ai-voice-icon img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow:
    0 12px 32px rgba(90,117,255,0.2),
    0 4px 10px rgba(0,0,0,0.07);
  border: 1px solid rgba(90,117,255,0.2);
  flex-shrink: 0;
}

/* Voiceテキスト */
.aidea-lp .ai-voice-content {
  flex: 1;
  text-align: left;
}

.aidea-lp .ai-voice-name {
  font-family: "Poppins","Noto Sans JP",sans-serif;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
  margin-bottom: 6px;
  text-align: left;
  letter-spacing: 0.03em;
}

.aidea-lp .ai-voice-text {
  font-family: "Poppins","Noto Sans JP",sans-serif;
  font-weight: 400;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: left;
}


/* =========================================================
   レスポンシブ
   ========================================================= */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {

  /* カードを縦寄せにしやすく */
  .aidea-lp .ai-cards {
    flex-direction: column;
    align-items: center;
  }

  .aidea-lp .ai-card {
    max-width: 90%;
    min-height: 360px;
    padding: 24px 20px;
  }

  .aidea-lp .ai-voice-card {
    max-width: 90%;
    padding: 20px;
  }
}

/* スマホ（768px以下） */
@media (max-width: 768px) {

  .aidea-lp {
    font-size: 15px; /* 全体のベース縮小 */
  }

  .aidea-lp h1 { font-size: 1.7rem; }
  .aidea-lp h2 { font-size: 1.5rem; }
  .aidea-lp h3 { font-size: 1.15rem; }
  .aidea-lp h4,
  .aidea-lp h5,
  .aidea-lp h6 { font-size: 1rem; }

  .aidea-lp p,
  .aidea-lp .ai-text,
  .aidea-lp .wp-block-paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .aidea-lp ul,
  .aidea-lp ol {
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 1.1rem;
  }

  .aidea-lp .ai-section {
    padding: 56px 16px;
    border-radius: 20px;
    margin-bottom: 40px;
  }

  .aidea-lp .ai-inner,
  .aidea-lp .ai-inner--narrow {
    max-width: 92%;
  }

  .aidea-lp .ai-cards {
    width: 100%;
    gap: 20px;
  }

  .aidea-lp .ai-card {
    width: 92%;
    max-width: 92%;
    min-height: auto;
  }

  /* Voiceカードを縦並び・中央寄せっぽく */
  .aidea-lp .ai-voice-card {
    flex-direction: column;
    align-items: center;
    text-align: left; /* 名前から本文までは左詰め維持 */
    gap: 12px;
    width: 95%;
    border-radius: 16px;
  }

  .aidea-lp .ai-voice-icon img {
    margin: 0 auto;
  }

  .aidea-lp .ai-cta a {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 12px;
  }
}

/* 超小型端末（480px以下） */
@media (max-width: 480px) {

  .aidea-lp .ai-section {
    padding: 48px 16px;
  }

  .aidea-lp .ai-card {
    border-radius: 18px;
    padding: 20px;
  }

  .aidea-lp .ai-voice-section {
    padding: 32px 16px;
    border-radius: 18px;
  }

  .aidea-lp .ai-voice-card {
    width: 100%;
    padding: 18px;
  }

  .aidea-lp .ai-cta a {
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}
