/* character.css (キャラ専用の追加スタイル) */

/* 全体のレイアウト調整 */
.character-main.no1-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* 共通セクションデザイン */
  .char-section {
    margin-bottom: 40px;
  }
  
  /* 1) キャラ画像 + 簡易紹介 */
  .char-intro-grid {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .char-image img {
    width: 300px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  .char-intro-text p {
    line-height: 1.6;
  }
  
  /* 2) 紹介動画(YouTube) */
  .char-video-wrap {
    text-align: center;
    margin-top: 20px;
  }
  .char-video-wrap iframe {
    max-width: 100%;
    height: auto;
  }
  
  /* 3) 特性(仕事/恋愛/お金) */
  .traits-section {
    margin-top: 30px;
  }
  .trait-box {
    background: #f4f4f4;
    border-left: 4px solid #c00;
    padding: 10px 15px;
    margin-bottom: 15px;
  }
  .trait-box h4 {
    margin-bottom: 5px;
    color: #c00;
    font-size: 1.1rem;
  }
  
  /* 4) 背景ストーリー(開閉) */
  .background-section {
    position: relative;
  }
  .background-section .toggle-btn {
    display: inline-block;
    background: #ccc;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
  }
  .background-section .toggle-btn:hover {
    background: #aaa;
  }
  #bgContent {
    margin-top: 10px;
    transition: all 0.4s ease;
  }
  
  /* 5) 口癖(吹き出し表現) */
  .quotes-section {
    margin-top: 30px;
  }
  .quote-bubble {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  .char-portrait img {
    width: 80px;
    border-radius: 50%;
    margin-right: 10px;
  }
  .bubble-text {
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
  }
  .bubble-text p {
    margin: 0;
    line-height: 1.5;
  }
  
  /* レスポンシブ例 */
  @media (max-width: 768px) {
    .char-intro-grid {
      flex-direction: column;
    }
    .char-image img {
      width: 100%;
      max-width: 300px;
      margin-bottom: 10px;
    }
    .quote-bubble {
      flex-direction: column;
      align-items: center;
    }
    .char-portrait img {
      margin-bottom: 5px;
    }
    .bubble-text {
      max-width: 90%;
    }
  }
  