#chou2026cp-section {

  background-color: #f2e3d7;
  max-width: 1920px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-bottom: 6em;
  margin-bottom: 2em;

  /* ----------------------------------
    画像・パーツの基本設定
  ---------------------------------- */
  img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;   
    transform: translateZ(0);
  }

  .caution{
    color: red;
  }

  .kv-section {
    padding: 0px;
    text-align: center;
    overflow: hidden; 
  }

  /* ----------------------------------
      キャンペーン　セクション
  ---------------------------------- */   
  .campaign-section {
    color: #fff;
    padding: 0px;
    text-align: center;
    /*overflow: hidden; */
    
    /*左右のキラキラ　開始*/
    background-image: 
      url("/chou2026cp-asset/bg-left.png"),   /* [1] 左側の模様画像 */
      url("/chou2026cp-asset/bg-right.png"),  /* [2] 右側の模様画像 */
      linear-gradient(to bottom, #fff0f0, #ffaebb); /* [3] ベースのグラデーション */

    background-repeat: 
      repeat-y,
      repeat-y,
      no-repeat; 
      /* no-repeat,  /* 左模様：繰り返さない（繰り返す場合は repeat-y ） 
      /* no-repeat,  /* 右模様：繰り返さない */
      /* no-repeat;  /* グラデーション */

    background-position: 
      left center,   /* 左側の模様：左端の中央 */
      right center,  /* 右側の模様：右端の中央 */
      center center; /* グラデーション */

    background-size: 
      auto, /* 例: 100px auto などサイズ固定も可能 */
      auto, 
      cover;
    /*左右のキラキラ　終了*/

    h3 {
      padding: 2em;
    }

    /*応募要項の背景エリア（ピンク）*/
    .campaign-contents {
      background-color: #EF92B3;
      color: #fff;
      max-width: 90%;
      height: auto;
      display: block;
      margin: 0 auto;
      padding-left: 0.5em;
      padding-right: 0.5em;
    }

    /*応募方法　開始*/
    /* 外枠のカードコンテナ */
    .oubo-card {
      max-width: 1280px;
      display: block;
      margin: 0 auto;

      background-color: #FAFAFA; /* 背景色（極薄いグレー/オフホワイト） */
      border: 1px solid #E8B4B8;  /* 外枠のピンク線 */
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      color: #333333;
      text-align: left;

      margin-top: 1.5em;
      margin-bottom: 3em;  
    }

    /* 上部のピンクタイトルバー */
    .oubo-header {
      background-color: #E27282; /* ピンク色 */
      color: #ffffff;
      font-size: 2.4em;
      font-weight: bold;
      text-align: center;
      margin: 0;
      padding: 16px 20px;
      letter-spacing: 0.1em;
      font-family: "M PLUS Rounded 1c";
    }

    /*見出し画像下のコピー*/
    .oubo-catchphrase {
      font-family: "M PLUS Rounded 1c";
      margin: 0 2em 0 2em;
      /*font-size: 2em;*/
      font-size: clamp(14px, 2vw, 28px);
      line-height: 1.6;
    }

    /* 応募方法のコンテンツ */
    .oubo-content {
      padding: 60px;
      font-family: "Noto Serif JP";
    }
    
    /* プレゼントのサンプルイメージの注意 */
    .oubo-caution {
      text-align: right;
      font-size: 1.2em;
      color: #333333;
      padding: 1em;
    }

    /* 各STEPの行 */
    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 25px;

      &:last-child {
        margin-bottom: 0;
      }
    }

    /* STEP1 バッジラベル */
    .step-label {
      background-color: #E27282; /* ピンク背景 */
      color: #ffffff;
      border: 1px solid #E8B4B8;  /* 外枠のピンク線 */
      font-weight: bold;
      font-size: 1.8em;
      padding: 10px 16px;
      border-radius: 2px;
      white-space: nowrap;
      flex-shrink: 0;
      letter-spacing: 0.05em;
    }

    /* テキスト部分 */
    .step-text {
      flex: 1;
      /*font-size: 1.8em;*/
        font-size: clamp(15px, 2vw, 30px);
      line-height: 1.5;
      font-weight: 700;

      p {
        margin: 0;
      }
    }

    /* SNSボタンコンテナ */
    .sns-buttons {
      display: flex;
      gap: 15px;
      margin-top: 12px;
      flex-wrap: wrap;
    }

    /* SNSボタン共通 */
    /* ボタン　ブルー */
    .sns-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #21b9d7;
      color: #ffffff !important;
      text-decoration: none;
      padding: 6px 18px;
      border-radius: 6px;
      font-size: 18px;
      font-weight: bold;
      transition: opacity 0.2s ease;

      &:hover {
        opacity: 0.85;
      }

      .icon {
        font-size: 24px;
        margin-right: 4px;
      }
    }

    /* ----------------------------------
      PC用 3列グリッドレイアウト
    ---------------------------------- */
    .column-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0px;
      width: 100%;
      margin: 0 auto;

      /* 中央のカラム（2番目の要素）に左右の縦線 */
      .column-item:nth-child(2) {
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;

      /* 左右の線の色だけまとめて透過に変更 */
        border-left-color: rgba(255, 255, 255, 0.5);
        border-right-color: rgba(255, 255, 255, 0.5);
        /*
        padding-left: 24px;
        padding-right: 24px;*/
      }
    }


    /* ----------------------------------
      SP用 1列リストレイアウト
    ---------------------------------- */
    .column-list {
      width: 100%;

      .column-item {
        margin-bottom: 20px;
      }

      /* SPで「上下の区切り線」を入れる指定 */
      .column-item:nth-child(2) {
        border-top: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
        /* 左右の線の色だけまとめて透過に変更 */
        border-top-color: rgba(255, 255, 255, 0.5);
        border-bottom-color: rgba(255, 255, 255, 0.5);

        padding: 20px 0;
      }
    }

    /* 応募後の対象商品 */
    .oubo-item-img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      padding-top: 1.5em;
    }

    .oubo-item-caution{
      text-align: center;
      font-size: 2em;
      color: #333;
      font-family: "Noto Serif JP";
      font-weight: bold;
    }

    .oubo-item-text {
      max-width: 65%;
      text-align: left;
      font-size: 1.1em;
      color: #333;

      font-family: "Noto Serif JP";
      /*font-weight: bold;*/
      margin: 0 auto;
      padding-bottom: 1.5em;
    }

    /*　応募対象商品の背景紙　*/
    .oubo-item-container {
      /* 外枠の太さ（ちぎりフチの幅） */
      border: 20px solid transparent; 
      
      /* 外側の黒い部分だけを消して透過させたPNG画像を指定 */
      border-image-source: url('/chou2026cp-asset/bg-oubo-item.png');
      
      /* ★ 30 : 四隅のフチの切り取りサイズ */
      /* ★ fill : 画像中央の質感（紙模様）でカードの内側を塗りつぶす */
      border-image-slice: 15 fill;
      
      /* 枠のギザギザ模様を均等に繰り返す */
      border-image-repeat: round;

      /* 文字がフチに被らないための余白調整 */
      padding: 20px;
      box-sizing: border-box;
      width: 100%;
      max-width: 1064px;
      margin: 0 auto;
      margin-bottom: -90px;  /*　重ね具合、マイナスしずぎると文字がラップした時に読めなくなる */
      
    }

    /* 一番下右端のおさなな写真 */
    .campaign-footer-wrapper {
      position: relative;
      z-index: 2;
      margin-top: 0;
      text-align: center;
    }

    .campaign-footer-img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

  }


  /* ----------------------------------
      ムービー　セクション
  ---------------------------------- */
  .movie-section {
    background-color: #fff;
    width: 90%;
    margin: 0 auto;
    padding: 4em 0 4em;
    margin-bottom: 4em;

    img {
      display: block;
      margin: 0 auto;
      max-width: 90%;
    }

    .youtube-shorts-wrapper {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      padding: 20px 20px;

      iframe {
        width: 100%;
        aspect-ratio: 9 / 16;
        height: auto;
        border: none;
        border-radius: 12px;
      }
    }

  }

  /* ----------------------------------
      インタビュー（Q&A）セクション
  ---------------------------------- */
  .interview-section {

    color: #333;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5em;

    /* 扉メイン写真 */
    .interview-main-img {
      display: block;
      width: 90%;        /* 親要素の幅に合わせる（適宜調整） */
      max-width: 1065px; /* 最大幅の設定（適宜調整） */
      margin: 0 auto;    /* 中央寄せ */

      /* ★ 1. 重なりを可能にするために position を指定 */
      position: relative;
      /* ★ 2. 重なりの順番を上（手前）にする */
      z-index: 10;
      /* ★ 3. マイナスの margin で上に引き上げる */
      margin-top: -50px;
    }

    p {
      margin-bottom: 24px;
    }

    hr {
      max-width: 1200px;
      border: none;                 /* デフォルトの枠線・影を消す */
      border-top: 3px solid #ef92b3; /* 線サイズ・種類・色（例: ピンク） */
      display: block;
      margin: 2em auto;
    }

    .qa-group {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      margin-bottom: 40px;
    }

    .qa-q {
      color: #777777;
      font-weight: bold;
      display: block;
      margin-bottom: 1.8em;
    }

    .qa-row {
      display: block;
      margin-bottom: 1.8em;
      &:last-child {
        margin-bottom: 0;
      }

      img {
        display: block;
        margin: 0 auto;
        max-width: 90%;
        height: auto;
      }
    }

    .char-yuki-name {
      color: #ff0000;
      font-weight: bold;
    }

    .char-ryoga-name {
      color: #824c9b;
      font-weight: bold;
    }

    .qa-a {
      color: #a06932;
    }
  }

  /* ----------------------------------
      プロフィール紹介　セクション
  ---------------------------------- */
  .profile-section {
    width: 90%;
    max-width: 1281px;
    margin: 0 auto;
    text-align: center;
    font-family: "Noto Serif JP";
    font-weight: 700;


    /* 見出し画像エリア */
    .heading-img {
      margin: 0;
      padding: 0;
      line-height: 1; /* 余計な隙間（隙間ズレ）を消す */

      img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
      }
    }      

    /* 全体コンテナ（PC表示：左右2列） */
    .profile {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15%;
      width: 100%;
      max-width: 1110px;
      margin: -150px auto 0;
      position: relative;
      z-index: 10;
    }

    .profile-card {
      /*background-color: #ffffff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;*/
    }

    .profile-img {
      width: 100%;
      height: auto;
      display: block;
    }

    .profile-name {
      font-size: 2.5em;
      color: #333333;
      margin: 30px;
    }

    .profile-yuki-name {
      color: red;
    }

    .profile-ryoga-name {
      color: #824c9b;
    }

    .profile-caption{
      font-size: 0.5em;
    }

    .profile-text {
      font-size: 1.1em;
      color: #666666;
      line-height: 1.6;
      margin: 0;
      text-align: center;
    }
  }

  /* ----------------------------------
      フッターセクション
  ---------------------------------- */
  .footer-section {

    padding-top: 65px;

    .img {
      max-width: 100%;
      height: auto;
      display: block;
    }
  }

  /* ----------------------------------
    PC / SP 表示切り替え ＆ スマホ調整（★必ず一番下に一括で記述）
  ---------------------------------- */
  /* デフォルト（PC表示） */
  .sp {
    display: none !important;
  }
  .pc {
    display: grid !important;
    margin: 0 auto;
  }

  /* 600px以下の指定（スマホ・タブレット表示） 開始　*/
  @media (max-width: 600px) {
    /* 切り替え制御 */
    .pc {
      display: none !important;
    }
    .sp {
      display: block !important;
      margin: 0 auto;
    }


    /* キャンペーンセクション（SP用調整） */
    .campaign-section {
      .oubo-item-container {
        margin-bottom: 0px;
        padding: 40px 15px 60px;
        border-image-slice: 40 fill;      
      }

      h3 {
        padding: 0.5em 1em 0.5em ;
      }

      .oubo-item-text {
        max-width: 100%;
        font-size: 1.2em;
      }
      .campaign-footer-wrapper {
        margin-top: -40px;
      }

      .oubo-header {
        font-size: 1.5em;
        padding: 10px;
      }
      /* 中身のコンテンツ */
      .oubo-content {
        padding: 10px;
      }

      /* SNSボタンコンテナ */
      .sns-buttons {
        gap: 10px;
        margin-top: 10px;
      }

      /* SNSボタン共通 */
      .sns-btn {
        padding: 5px;
        border-radius: 6px;
        font-size: 1em;

        .icon {
          font-size: 1.2em;
          margin-right: 2px;
        }
      }

      .oubo-card {
        max-width: 100%;
      }

      .oubo-item-text {
        width: 100%;
        font-size: 1em;
      }

      .step-label {
        font-size: 1em;
        padding: 5px 8px;
      }

      /* oubo text */
      .step-text {
        font-size: 1em;
      }
      
      /* プレゼントのサンプルイメージの注意 */
      .oubo-caution {
        font-size: 1em;
      }

    }

    /* 動画セクション（SP用調整） */
    .movie-section {
      .youtube-shorts-wrapper {
        max-width: 400px;
      }
    }

    /* インタビューセクション（SP用調整） */
    .interview-section {
      font-size: 15px;
      line-height: 1.7;

      .qa-group {
        margin-bottom: 30px;
      }

      .qa-q {
        font-size: 18px;
        margin-bottom: 1.2em;
      }

      .qa-row {
        margin-bottom: 1.2em;
      }

      .char-yuki-name,
      .char-ryoga-name,
      .qa-a {
        font-size: 16px;
      }
    }

    /* プロフィールセクション（SPは1列にする） */
    .profile-section {

      width: 100%;

      .profile {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: -20px;
      }
      
      .profile-img {
        width: 70%;
        margin: 0 auto;
      }

    }
    /* 600px以下の指定（スマホ・タブレット表示） 終了　*/

  }
}