/* =========================================
   BioTrust LP Page Template Base
========================================= */

.bt-lp-page-template {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.bt-lp-page {
  width: 100%;
  margin: 0;
  padding: 0;
}

.bt-lp-content {
  width: 100%;
  margin: 0;
  padding: 0;
}

.bt-lp-content>*:first-child {
  margin-top: 0;
}

.bt-lp-content>*:last-child {
  margin-bottom: 0;
}

/* 固定ページタイトル・通常ページ用ヘッダーを非表示 */
.bt-lp-page-template .entry-header,
.bt-lp-page-template .page-header,
.bt-lp-page-template .entry-title {
  display: none !important;
}

/* 本文幅の制限を解除 */
.bt-lp-page-template .entry-content,
.bt-lp-page-template .post_content,
.bt-lp-page-template .content,
.bt-lp-page-template .main,
.bt-lp-page-template .site-main,
.bt-lp-page-template article,
.bt-lp-page-template .bt-lp-content {
  max-width: none !important;
}

/* テーマ側の本文余白をリセット */
.bt-lp-page-template .entry-content,
.bt-lp-page-template .post_content,
.bt-lp-page-template .bt-lp-content {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* WordPressブロックの余白対策 */
.bt-lp-page-template .wp-block-group,
.bt-lp-page-template .wp-block-columns,
.bt-lp-page-template .wp-block-cover {
  margin-top: 0;
  margin-bottom: 0;
}

/* 画像のはみ出し対策 */
.bt-lp-page-template img {
  max-width: 100%;
  height: auto;
}

/* footer非表示 */
.container-fluid,
.section {
  display: none;
}


/* =========================================
   LP Template Header Offset
========================================= */

.bt-lp-page-template {
  --bt-lp-header-offset: 120px;
  padding-top: var(--bt-lp-header-offset);
}

/* WordPress管理バー表示時 */
body.admin-bar .bt-lp-page-template {
  padding-top: calc(var(--bt-lp-header-offset) + 32px);
}

@media (max-width: 782px) {
  .bt-lp-page-template {
    --bt-lp-header-offset: 60px;
    padding-top: var(--bt-lp-header-offset);
  }

  body.admin-bar .bt-lp-page-template {
    padding-top: calc(var(--bt-lp-header-offset) + 46px);
  }
}

/* ページ内リンクで固定ヘッダーに隠れないようにする */
.bt-lp-page-template [id] {
  scroll-margin-top: calc(var(--bt-lp-header-offset) + 24px);
}