@charset "UTF-8";
/**
 * template-single-sogaini.php 用の WP 環境上書き。
 *
 * SOGAINI は旧サイト由来の全面ローディングを持つため、共通ヘッダーが
 * 初期表示時にローディングレイヤーの下へ隠れる。クライアント確認後、
 * 他ページと同じ共通ヘッダーを常に見せる方針に変更したため、ヘッダー
 * だけを SOGAINI 固有レイヤーより前面に出す。
 */
body.is-layout-driven #header-container.l-header {
  position: relative;
  z-index: 10050;
}
body.is-layout-driven {
  /* stylelint-disable selector-class-pattern -- SOGAINI 独立レガシースタック（assets/css/sogaini/ と
     Cocoon 共通CSS）が前提とするクラス。改名するとレガシーCSS側との整合が崩れるため維持する */
}
body.is-layout-driven .message .video-container {
  background: var(--color-beige);
}
body.is-layout-driven .message .video-container video {
  width: calc(100% + 24px);
  max-width: none;
  margin-left: -12px;
}
@media screen and (max-width: 768px) {
  body.is-layout-driven section[id=gallery] {
    margin-bottom: -8px;
  }
}
body.is-layout-driven {
  /* stylelint-enable selector-class-pattern */
}
