@charset "UTF-8";

.tss_body img{width: 100%;}
.tss_gotop {max-width: 6em;}

/* ==========================================================================
   1. Layout & Background (PCサイズ用背景固定：641px以上で適用)
   ========================================================================== */
@media screen and (min-width: 641px) {
  .csplv_body {
    background-image: url('../img/bg.jpg');
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/* ランディングページ全体のコンテナ（PCサイズは最大1200pxに拡張） */
.csplv_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  /* background-color: #e5f7cf;  ← 指示通り削除しました */
}

/* 各セクションのコンテンツ領域（最大960px、中央配置） */
.csplv_main {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 0 30px;
}

/* 画像のレスポンシブ基本設定 */
.csplv_img-responsive {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ==========================================================================
   2. Header & Main Visual & CTA
   ========================================================================== */
.csplv_header {
  text-align: center;
  position: relative;
  background: transparent;
  /* ロゴの上の余白などをここでコントロール */
  padding-bottom: 0; 
}

/* ロゴ領域：完全に透明にして、最背面にある全体の固定背景（bg.jpg）を覗かせる */
.csplv_logo {
  padding: 20px 0 0;
  background-color: transparent;
  position: relative;
  z-index: 10;
}

/* ヘッダーのインナーコンテナ
   【ここがポイント！】ここに直接、白➔透明のグラデーションを敷きます。
*/
.csplv_header-inner {
  max-width: 1200px;
  margin: -40px auto 0; /* ロゴの下部に少し食い込ませる場合はマイナスマージンで調整 */
  position: relative;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 1) 65%, /* ボタンの手前あたりからしっかり白 */
    rgba(255, 255, 255, 1) 82%, /* 「当選者は〜」の文字の下までしっかり白をキープ */
    rgba(255, 255, 255, 0) 100% /* 最下部で綺麗に消える */
  );
  
  /* ボタンの下にグラデーションが消えるための余白（クッション）を確保 */
  padding-bottom: 32px; 
}

/* メインビジュアル（写真画像）：
   インナーコンテナの背景（グラデーション）よりも「下」に敷くため、z-indexをマイナスにします。
   これで写真は白くモヤがからず、クッキリ見えたまま、下に向かって白背景が浮き上がってきます。
*/
.csplv_main-visual {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 0;
}

/* PCサイズ（641px以上）のときのメインビジュアルの絞り込み */
@media screen and (min-width: 641px) {
  .csplv_main-visual {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .csplv_logo img {
    width: 100%;
    height: auto;
  }
}

/* キャッチコピー */
.csplv_catch-copy {
  width: 92%;
  max-width: 960px;
  margin: -8% auto 20px; /* 写真の上に少し乗っけるためのネガティブマージン */
  position: relative;
  z-index: 2; /* 写真や背景より手前に出す */
}

/* 応募ボタンエリア */
.csplv_cta{
  width: 85%;
  margin: 15px auto 0;
  max-width: 540px;
}
.csplv_cta a {
  display: block;
  transition: .4s;
}

/* ==========================================================================
   3. Main Contents & Cards (Common)
   ========================================================================== */
.csplv_section {
  margin-bottom: 45px;
  text-align: center;
}

/* イベント詳細のタイトルリボン設定 */
.csplv_section-title {
  margin-bottom: -15px; /* カードとの重ね合わせ */
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 100%;
}

/* タイトルの背景に敷く紺色の帯（縦幅30px、色：#181A4D） */
.csplv_section-title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  background-color: #181A4D;
  z-index: -1;
}

.csplv_section-title img {
  width: auto;
  height: 60px;
  vertical-align: bottom;
}

/* カードUIの共通スタイル */
.csplv_card {
  border: 3px solid #181A4D; /* 帯の色と統一 */
  border-radius:0 0 16px 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 40px 30px 30px;
  text-align: left;
  position: relative;
  z-index: 1;
  margin-top: -33px;
}

/* ==========================================================================
   4. Event Details Section
   ========================================================================== */
.csplv_card--details {
  background-color: #FFFB95; /* 薄い黄色の背景 */
  
}

.csplv_details-item {
  display: flex;
  margin-bottom: 12px;
  font-size:1.25em;
  font-weight: bold;
  color: #000000;
  line-height: 1.5;
}

.csplv_details-term {
  flex-shrink: 0;
  white-space: nowrap;
}

.csplv_details-desc {
  padding-left: 5px;
}

.csplv_details-note {
  max-width: 600px;
  margin:0 auto;
  font-size:0.875em;
  font-weight: bold;
  color: #333333;
  line-height: 1.6;
}

.csplv_detail_flex{
  display: flex;
  align-items: center;
}
.csplv_detail_flex > div:first-of-type{
  width:68%;
  padding-left:16px;
}

.csplv_detail_flex > div:last-of-type{
  width:30.75%;
}


/* ==========================================================================
   5. Schedule Section (PC：2カラムレイアウト)
   ========================================================================== */
.csplv_card--schedule {
  background-color: #ffffff;
}

/* 「当日スケジュール」ヘッダー部のレイアウト（タイトルと注記） */
.csplv_schedule-header {
  position: relative;
  margin-bottom: 15px;
  width: 100%;
}

/* 注記「※変更の可能性があります」の位置変更（PC時は右端へ、タイトル帯の上に配置） */
.csplv_section-subtitle {
  position: absolute;
  right: 16px;
  bottom: -8px;
  z-index: 3;
  font-size: 0.75em;
  font-weight: bold;
  white-space: nowrap;
}

/* 各スケジュールグループ（1組目、2組目、トークショー、映画） */
.csplv_schedule-group {
  display: flex; /* PC時は時間と内容を横並びにする */
  border-bottom:dashed 2px #C12700;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.csplv_schedule-group--last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* 左カラム：時間領域 */
.csplv_schedule-left {
  width: 180px;
  flex-shrink: 0;
  padding-top: 2px;
}

/* 右カラム：内容・画像領域（画像を内包） */
.csplv_schedule-right {
  flex-grow: 1;
}

/* タイムライン表示（1カラム・2カラム共通） */
.csplv_timeline-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

/* 時間テキスト（PC用） */
.csplv_time {
  font-size:1.25em;
  font-weight: 900;
  font-feature-settings: "palt";
  display: block;
}
/* 縦並びの時のためにPCでは不要な幅をリセット、単体の時間用 */
.csplv_timeline .csplv_time {
  width: 130px;
  flex-shrink: 0;
}

.csplv_time--orange { color: #e65500; }
.csplv_time--blue   { color: #0099de; }
.csplv_time--navy   { color: #181A4D; }

.csplv_event {
  font-size: 16px;
  color: #000000;
  font-weight: bold;
}
.csplv_event--bold {
  font-size: 18px;
  font-weight: 900;
}
.csplv_event--title {
  font-size: 20px;
  margin-bottom: 5px;
}

/* 出演者情報・映画情報 */
.csplv_cast-info,
.csplv_movie-info {
  font-size: 14px;
  color: #333333;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.5;
}

.csplv_cast-label {
  color: #666666;
}
.csplv_cast-names {
  color: #000000;
}

.csplv_movie-title {
  font-size: 18px;
  color: #000000;
  font-weight: 900;
}
.csplv_movie-meta {
  font-size: 14px;
  color: #666666;
  font-weight: bold;
  margin-left: 5px;
}

/* 画像エリア（画像は内容の領域に内包） */
.csplv_schedule-images {
  width: 100%;
  max-width: 640px; /* PCで画像が巨大化するのを防ぐ */
  margin-top: 15px;
}
.csplv_schedule-images img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/*-- 追記 --*/
.csplv_schedule_top{
  border-bottom:dashed 2px #C12700;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.csplv_schedule_top dl{
  display:flex;
  flex-wrap:wrap;
  font-size:1.25em;
  font-weight:bold;
  line-height:1.75;
  padding-bottom:8px;
}
.csplv_schedule_top dl dt{
  width:18%;
  color:#C12700;
}
.csplv_schedule_top dl dt:nth-of-type(n+3){
  color:#E96500;
}
.csplv_schedule_top dl dt:nth-of-type(3),
.csplv_schedule_top dl dd:nth-of-type(3){
  /* border-top:dashed 2px #C12700; */
  margin-top:0.5em;
  padding-top:0.5em;
}
.csplv_schedule_top dl dd{
  width:82%;
}
.csplv_schedule_img{
  padding-left:18%;
}


/* ユーティリティ */
.csplv_sp-only { display: none; }

@media screen and (min-width: 641px) {
  .csplv_cta a:hover{
    transform: scale(1.05,1.05);
  }
}

/* ==========================================================================
   6. Responsive (スマホサイズ：640px以下用ブレイクポイント)
   ========================================================================== */
@media screen and (max-width: 640px) {
  .csplv_body{
    background-color: #a5d0a2;
  }
  .csplv_wrapper {
    width: 100%;
  }
  
  .csplv_main {
    padding: 0 12px 88px;
  }

  .csplv_header {
    padding-bottom: 0;
  }

  /* スマホに合わせてインナーの余白や重なりを微調整 */
  .csplv_header-inner {
    margin-top: -20px;
    padding-bottom: 32px; /* スマホ時のボタン下のグラデーションの余白 */
  }

  .csplv_catch-copy {
    margin-top: -4%; /* スマホの画面幅に合わせた重ね具合の調整 */
  }

  .csplv_card {
    padding:48px 16px 24px;
    font-size: 0.875em;
  }

  .csplv_detail_flex{
    flex-direction: column;
  }
  .csplv_detail_flex > div:first-of-type{
    width:100%;
  }
  .csplv_detail_flex > div:last-of-type{
    width:52%;
  }

  /* 当日スケジュール部分を「1カラム」にするための解除 */
  .csplv_schedule-group {
    display: block; /* 横並びを解除して縦並び（1カラム）に */
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .csplv_schedule-left {
    width: 100%;
    margin-bottom: 8px;
  }

  /* スマホ時、独立した時間のスタイル調整 */
  .csplv_schedule-left .csplv_time {
    font-size: 18px;
  }

  /* タイムライン内の並び調整 */
  .csplv_timeline .csplv_time {
    width: 110px;
    font-size: 16px;
  }

  .csplv_event {
    font-size: 14px;
  }
  .csplv_event--bold {
    font-size: 15px;
  }
  .csplv_event--title {
    font-size: 16px;
  }

  .csplv_cast-info,
  .csplv_movie-info {
    font-size: 13px;
  }

  .csplv_movie-title {
    font-size: 15px;
  }

  /* スマホ時の注記の位置を調整（タイトルの右下にきれいに収めるため相対配置に変更） */
  .csplv_schedule-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .csplv_section-subtitle {
    bottom:-32px;
  }

  /* スマホ時にテキストを折り返す制御 */
  .csplv_sp-only {
    display: inline;
  }

  /*--追記--*/
  .csplv_schedule_top dl dt,
  .csplv_schedule_top dl dd{
    width:100%;
  }
  .csplv_schedule_top dl dd{
    padding-bottom:0.5em;
  }
  .csplv_schedule_top dl{
    line-height:1.5;
  }
  .csplv_schedule_top dl dt:nth-of-type(3){
    padding-top:0.875em;
  }
  .csplv_schedule_top dl dd:nth-of-type(3){
    border-top:none;
    margin-top: 0;
    padding-top: 0;
  }
  .csplv_schedule_img{
    padding-left:0;
  }
  .csplv_section-title img{
    height:44px;
  }




}

@media screen and (max-width: 480px) {
.tss_gotop {display: none;}
}