/* ========================================================
   movie-review-page.css
   ======================================================== */

/* --------------------------------------------------------
   page-id-1498 あたりのフルワイド表示解除
   -------------------------------------------------------- */
/* 
   「映画レビュー単体ページ」をフルワイドで表示するために、
   テーマ側の親要素に付与されている max-width / margin / padding を打ち消す
   この例では対象ページが page-id-1498（固定ページID）になっていたので、
   もしシングル投稿（single）なら .single-movie-article など別クラス調整が必要。
*/
/*
.page-id-1498 .post,
.page-id-1498 #content,
.page-id-1498 #contentInner,
.page-id-1498 #wrapper,
.page-id-1498 main {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* --------------------------------------------------------
   .movie-main-section: アイキャッチ＋基本情報を横並びに
   -------------------------------------------------------- */
   /*
.movie-main-section {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 20px;
  margin-bottom: 20px;
}

/* アイキャッチ画像の横幅（固定値 or %） */
/*
.movie-thumbnail img {
  width: 300px;
  height: auto;
}

/* 情報セクション側をフレックス伸張させる */
/*
.movie-info-section {
  flex: 1;
}

/* --------------------------------------------------------
   「あらすじ」「公開年」まわりのスタイル
   -------------------------------------------------------- */
   /*
.movie-summary {
  margin-bottom: 20px;
}
.movie-summary h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
.movie-summary p {
  line-height: 1.6;
}

.movie-release-year h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.movie-release-year p {
  font-size: 16px;
}

/* --------------------------------------------------------
   その他 各種スタイルの微調整（例：評価・リンクなど）
   -------------------------------------------------------- */
   /*
.movie-average-rating {
  font-size: 24px;
  color: #f39c12;
}
.movie-review-link {
  display: inline-block;
  margin-top: 10px;
  color: #3498db;
  text-decoration: underline;
}

/* レビューモーダル背景スタイル */
/*
#review-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* モーダルコンテンツのスタイル */
/*
.modal-content {
    background: #fff;
    padding: 20px;
    position: relative;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
}

/* 閉じるボタンスタイル */
/*
#close-review-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}