/* ヘッダーの背景色を無彩色に変更 */
.site-header{  background: rgba(255, 255, 255, 0.2);}

/* =======================================
   Page App 専用デザイン → 安全に適用される
   ※ 既存の header/footer は page-app の外なので影響ゼロ
======================================= */

.page-app {
/*    background: #FDF7FA;*/ /* LP全体の背景 */
    color: #5A5A5A;
    line-height: 1.75;
    background: linear-gradient(
        120deg,
        rgba(253, 230, 235, 0.8) 0%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(234, 244, 255, 0.8) 100%
      );
    backdrop-filter: blur(4px);
  }
  
  /* セクション */
  .page-app section {
    padding: 70px 0;
  }
  
  /* 見出し */
  .page-app h1,
  .page-app h2,
  .page-app h3,
  .page-app h4 {
    color: #5A5A5A;
    font-weight: 600;
  }
  
  /* ボタン */
  .page-app .app-button {
    background: #F4C7D7;
    color: #fff;
    padding: 14px 26px;
    border-radius: 16px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: opacity .2s;
  }
  .page-app .app-button:hover {
    opacity: .88;
  }
  
  /* カード */
  .page-app .card {
    background: #fff;
    border: 1px solid #F3DDE6;
    border-radius: 22px;
    padding: 24px;
    margin-bottom: 24px;
  }
  
  /* FAQ */
  .page-app .faq-item {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 18px;
    border: 1px solid #F3DDE6;
    transition: background .2s, border-color .2s;
  }
  .page-app .faq-item:hover {
    background: #FFF8FB;
    border-color: #F4C7D7;
  }
  .page-app .faq-question {
    font-weight: 600;
    color: #5A5A5A;
  }
  .page-app .faq-answer {
    margin-top: 8px;
    color: #7A7A7A;
  }
  
  /* スクショ */
  .page-app .screenshot-frame {
    background: #FFFFFF;
    border: 1px solid #F3DDE6;
    border-radius: 24px;
    padding: 16px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
  }
  .page-app .screenshot-frame img {
    width: 100%;
    border-radius: 20px;
  }
  
  /* hero */
  .page-app .hero {
    text-align: center;
    padding: 80px 0 60px;
  }
  .page-app .hero-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #5A5A5A;
  }
  .page-app .hero-desc {
    font-size: 1.1rem;
    color: #7A7A7A;
  }

  
  .page-app .card,
  .page-app .faq-item {
    background: #fff;
    border: 1px solid #F3DDE6;
    border-radius: 22px;
  }

/* =======================================
   アプリアイコンに合わせた “ふわもこ” ダウンロードカード
======================================= */

.page-app .download-card.cute {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  
    /* アイコンと調和：空色→白の柔らかいグラデカード */
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 247, 252, 0.9) 50%,
      rgba(243, 232, 240, 0.9) 100%
    );
  
    padding: 28px 24px;
    border-radius: 28px;           /* ふわふわ感強め */
    border: 1px solid #F3DDE6;     /* アイコンの吹き出しピンクに合わせた色 */
    box-shadow: 0 6px 16px rgba(0,0,0,0.06); /* やさしい影 */
  
    width: min(330px, 92%);
    margin: 48px auto;
    backdrop-filter: blur(6px);    /* 空気感UP */
  }
  
  /* アプリアイコンと合わせた丸み＋ちょい影 */
  .page-app .app-icon-cute {
    width: 100px;
    height: 100px;
    border-radius: 24%;
    margin-bottom: 18px;
    box-shadow: 0 5px 14px rgba(0,0,0,0.08);
  }
  
  /* ボタンのふわっとカード感維持 */
  .page-app .download-btn-cute {
    display: inline-block;
    background: #fff;
    padding: 16px 24px;
    border-radius: 20px;
    border: 1px solid #F3DDE6;
    transition: transform .15s ease, box-shadow .20s ease;
  }
  
  .page-app .download-btn-cute:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  }
  
  /* バッジは大きめで可愛く */
  .page-app .download-badge-cute {
    height: 46px;
  }
  
  /* リリース注記 */
  .page-app .release-note-cute {
    margin-top: 12px;
    font-size: 0.92rem;
    color: #7A7A7A;
  }
  