@charset "UTF-8";
/* =========================================================
   便潜血検査で陽性と言われた方へ 特設ページ
   配色・地紋・書体は東京下町おなか内視鏡クリニック本体サイト
   （hero-cms テーマ）の実装に準拠。
========================================================= */
.fobt,
body#fecal-occult-blood {
  /* --- 色 --- */
  /* 東京下町 hero-cms/css/variables.css の実パレット */
  --main-color: #b5a47a; /* 金茶（サイトの --main-color） */
  --sub-color: #a21122; /* 朱（サイトの --sub-color） */
  --sub-color02: #b5a47a;
  --sub-color03: #605538; /* サイトの --main-dark-color */
  --bg-color: #f1f0ea; /* サイトの --bg-color */
  --band-color: #f1f0ea; /* サイトの --bg-color（斜め帯も同色） */
  --rule-color: #e9dbaf; /* 金グラデの終端色 */
  --num-color: #b5a47a;
  --ink: #333333;
  --text-color: #333333; /* サイトの --text-color */
  --border-color: #e0e0e0; /* サイトの --line-color */

  /* --- 書体 --- */
  /* 本体テーマで実際に読み込まれている Adobe Fonts を使用 */
  --shi: "ten-mincho", "yu-mincho-pr6n", serif;
  --cor: "adobe-garamond-pro", serif;
  --pag: "adobe-garamond-pro", serif;

}

.fobt {

  font-family: "游ゴシック体", "Yu Gothic", YuGothic,
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo,
    Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: var(--text-color);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
  position: relative;
  overflow-x: hidden;
}

.fobt *,
.fobt *::before,
.fobt *::after {
  box-sizing: border-box;
}

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

.fobt a {
  color: var(--main-color);
  text-decoration: none;
}

.fobt a:hover {
  color: var(--sub-color);
}

@media screen and (max-width: 767px) {
  .fobt {
    font-size: 15px;
  }
}

.fobt-inner {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .fobt-inner {
    width: auto;
    margin: 0 5%;
  }
}

.fobt-body {
  line-height: 2.64;
  letter-spacing: 0.025em;
}

.fobt-body + .fobt-body {
  margin-top: 1.4em;
}

.fobt-note {
  margin-top: 14px;
  font-size: 88%;
  line-height: 1.9;
  color: var(--sub-color);
}

.fobt-re-pc-only {
  display: inline;
}

@media screen and (max-width: 767px) {
  .fobt-re-pc-only {
    display: none;
  }
}

/* ---------------------------------------------------------
   hgroup（巨大な欧文＋和文見出し）
--------------------------------------------------------- */
.fobt-hgroup {
  text-align: center;
}

.fobt-hgroup p {
  font-size: 641.2%;
  font-family: var(--cor);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  /* 白地でのコントラスト確保のため main-color より一段濃い金 */
  color: #a89468;
}

.fobt-hgroup h2 {
  font-size: 164.7%;
  font-family: var(--shi);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.75;
}



@media screen and (max-width: 767px) {
  .fobt-hgroup p {
    font-size: 340%;
  }
  .fobt-hgroup h2 {
    font-size: 138%;
    letter-spacing: 0.05em;
  }
}

/* 見出し内の悩みワード（朱） */
.fobt-hgroup h2 .fobt-pain {
  color: var(--sub-color);
  font-weight: 600;
}

/* 見出し内の数字（朱・欧文で大きく）
   line-height:0 で行の高さに影響させず、金帯マーカーの位置を保つ */
.fobt-hgroup h2 .fobt-h2num {
  color: var(--sub-color);
  font-family: var(--cor);
  font-weight: 500;
  font-size: 220%;
  line-height: 0;
  vertical-align: -0.05em;
}

/* 見出しに敷く金の下線 */
.fobt-hgroup--rule h2 {
  position: relative;
  z-index: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.fobt-hgroup--rule h2::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 19px;
  background: var(--rule-color);
}

/* ---------------------------------------------------------
   pop（上下罫＋ベタ帯＋下向き三角）
--------------------------------------------------------- */
.fobt-ribbon {
  position: relative;
  max-width: 640px;
  width: 100%;
  padding: 5px 0;
  margin: 0 auto 40px 0;
  border-top: 2px solid var(--sub-color);
  border-bottom: 2px solid var(--sub-color);
}

.fobt-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  width: 19px;
  height: 16px;
  margin: 0 auto;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 0% 0%);
  background: var(--sub-color);
}

.fobt-ribbon span {
  display: block;
  text-align: center;
  color: #fff;
  font-family: var(--shi);
  font-weight: 400;
  font-size: 188.2%;
  padding: 12px 0;
  background: var(--sub-color);
}

@media screen and (max-width: 767px) {
  .fobt-ribbon span {
    font-size: 140%;
    padding: 8px 0;
  }
}

/* ---------------------------------------------------------
   数字・テキストリンク
--------------------------------------------------------- */
.fobt-num {
  color: var(--num-color);
  font-family: var(--pag);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

/* サイト標準ボタン（hero-cms .btn01 の移植） */
.fobt-btn01 {
  margin-top: 50px;
  text-align: center;
  list-style: none;
}

.fobt-btn01 a {
  position: relative;
  display: inline-block;
  padding: 14px 55px 14px 40px;
  border: 1px solid #fff;
  background: linear-gradient(135deg, var(--main-color), #e9dbaf);
  color: #ffffff;
  font-size: 100%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.fobt-btn01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 14px;
  height: 1px;
  background: #ffffff;
  transform: translateY(-50%);
}

.fobt-btn01 a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
  margin-top: 0;
}

.fobt-btn01 a:hover {
  opacity: 0.8;
  color: #fff;
}

.fobt-btn01--dark a {
  background: linear-gradient(135deg, var(--sub-color03), var(--main-color));
}

/* サイト下層の h3（グレー下線＋左10%の金下線）の移植 */
.fobt-h3 {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: var(--shi);
  font-weight: 400;
  font-size: 129.4%;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 5px;
  margin-bottom: 16px;
}

.fobt-h3::before {
  position: absolute;
  content: "";
  display: block;
  border-bottom: 1px solid var(--main-color);
  bottom: -1px;
  width: 10%;
}

/* =========================================================
   メインビジュアル
========================================================= */
.fobt-mv__wrap {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.fobt-mv__slide {
  position: relative;
  height: 100%;
}

.fobt-mv__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.fobt-mv__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fobt-mv-fade 15s infinite;
}

.fobt-mv__item:nth-of-type(1) {
  animation-delay: 0s;
}

.fobt-mv__item:nth-of-type(2) {
  animation-delay: 5s;
}

.fobt-mv__item:nth-of-type(3) {
  animation-delay: 10s;
}

@keyframes fobt-mv-fade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
  }
  41.3% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fobt-mv__item {
    animation: none;
  }
  .fobt-mv__item:nth-of-type(1) {
    opacity: 1;
  }
}

.fobt-mv__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fobt-mv__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 1200px;
  margin: 0 auto;
}

.fobt-mv__catch {
  position: absolute;
  top: 210px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.fobt-mv__catch::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -46px;
  bottom: -46px;
  background: linear-gradient(
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.32) 28%,
    rgba(0, 0, 0, 0.32) 72%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.fobt-mv__catch h1 {
  position: relative;
}

.fobt-mv__catch h1 {
  display: block;
  text-align: center;
  color: #fff;
  font-family: var(--shi);
  font-weight: 400;
  font-size: 50px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  filter: drop-shadow(0 0 2px #1f1c19) drop-shadow(0 0 6px #1f1c19);
}

.fobt-mv__catch h1 span {
  display: block;
}

.fobt-mv__badges {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10px 20px;
  list-style: none;
  padding: 0 20px;
}

.fobt-mv__badges li {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  width: 18.2%;
  min-width: 200px;
  min-height: 110px;
  color: var(--text-color);
  font-family: var(--shi);
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 2px solid var(--main-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 767px) {
  .fobt-mv__wrap {
    height: auto;
    overflow: visible;
  }
  .fobt-mv__slide {
    height: 400px;
  }
  .fobt-mv__inner {
    width: auto;
  }
  .fobt-mv__catch {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 90px;
    margin: auto;
  }
  .fobt-mv__catch h1 {
    font-size: 6.2vw;
    letter-spacing: 0.05em;
  }
  .fobt-mv__badges {
    position: static;
    flex-wrap: wrap;
    gap: 5px 2%;
    padding: 0;
  }
  .fobt-mv__badges li {
    width: calc(96% / 3);
    padding: 15px 4px;
    letter-spacing: 0;
    min-width: unset;
    min-height: unset;
    font-size: 13px;
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--main-color);
    box-shadow: none;
  }
  .fobt-mv__badges li:nth-of-type(4),
  .fobt-mv__badges li:nth-of-type(5) {
    width: 49%;
    padding: 12px 4px;
  }
}

/* =========================================================
   便潜血検査で陽性となった方へ
========================================================= */
.fobt-sec_intro {
  padding: 100px 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-color) url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/bg_ptn_01.jpg") repeat-y right
    top;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
}

.fobt-intro_text {
  max-width: 670px;
  min-width: 640px;
  width: 34.9%;
  margin-left: max(4%, calc((100% - 1280px) / 2));
}

.fobt-intro_text .fobt-hgroup {
  margin-bottom: 40px;
}

/* POSITIVE RESULT は2語のため、この見出しだけ縮めて1行に収める */
.fobt-intro_text .fobt-hgroup p {
  font-size: 380%;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .fobt-intro_text .fobt-hgroup p {
    font-size: 250%;
  }
}

.fobt-intro_img {
  max-width: 910px;
  width: 47.4%;
  margin: 0 0 0 20px;
}

@media screen and (max-width: 767px) {
  .fobt-sec_intro {
    padding: 80px 5%;
    flex-wrap: wrap;
    background-image: url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/bg_ptn_01_sp.jpg");
    background-size: 30% auto;
  }
  .fobt-intro_text {
    max-width: 670px;
    min-width: unset;
    width: 100%;
    margin: 0 auto 20px;
  }
  .fobt-intro_img {
    width: 100%;
    margin: 0 auto;
  }
}

/* 病変が見つかる割合の図版 */
.fobt-figure_rate {
  background: var(--bg-color) url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/bg_ptn_01.jpg") repeat-y right
    top;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  padding: 0 0 120px;
}

.fobt-figure_rate .fobt-inner {
  background: #fff;
  border: 1px solid var(--border-color);
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .fobt-figure_rate {
    padding: 0 0 70px;
    background-image: url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/bg_ptn_01_sp.jpg");
    background-size: 30% auto;
  }
}

/* ---------------------------------------------------------
   帯— 飾りは金の雲取り
--------------------------------------------------------- */
.fobt-callout {
  position: relative;
  z-index: 1;
  margin: -80px 0 -71px;
  padding: 80px 0 71px;
  text-align: center;
  background: url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/cloud_left.png") no-repeat left top / 300px
      auto,
    url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/cloud_right.png") no-repeat right bottom / 300px auto;
}

.fobt-callout p {
  padding: 25px 20px;
  color: #fff;
  font-size: 200%;
  font-family: var(--shi);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  background: linear-gradient(
    to right,
    rgb(96, 85, 56) 0%,
    rgb(181, 164, 122) 100%
  );
}

.fobt-callout p span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .fobt-callout {
    margin: -15px 0;
    padding: 15px 0;
    background-size: 150px auto, 150px auto;
  }
  .fobt-callout p {
    padding: 22px 14px;
    font-size: 130%;
  }
}

/* =========================================================
   2つの「自己判断」
========================================================= */
.fobt-sec_caution {
  position: relative;
  z-index: 0;
  padding: 150px 5% 120px;
}

.fobt-sec_caution::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--band-color);
  clip-path: polygon(0% 83.4%, 100% 15.8%, 100% 100%, 0% 100%);
}

.fobt-judge_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 52px;
}

/* 自己判断のイメージイラスト（GPT生成画像を同名で差し替え） */
.fobt-judge__illust {
  margin: 26px 0 22px;
  line-height: 0;
}

.fobt-judge__illust img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .fobt-judge__illust {
    margin: 20px 0 16px;
  }
}

/* 思い込み → 当院の見解 の転換記号（朱の下向き三角＋左右ヘアライン） */
.fobt-judge__turn {
  display: flex;
  align-items: center;
  gap: 0 14px;
  margin: 24px 0;
}

.fobt-judge__turn::before,
.fobt-judge__turn::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--border-color);
}

.fobt-judge__turn span {
  flex: 0 0 auto;
  width: 19px;
  height: 16px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 0% 0%);
  background: var(--sub-color);
}

.fobt-judge {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 34px 34px 30px;
}

.fobt-judge .fobt-ribbon {
  max-width: 260px;
  margin: 0 0 34px;
}

.fobt-judge .fobt-ribbon span {
  font-family: var(--pag);
  font-size: 129.4%;
  letter-spacing: 0.12em;
  padding: 7px 0;
}

.fobt-judge__title {
  font-family: var(--shi);
  font-weight: 400;
  font-size: 141.2%;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.fobt-judge__label {
  padding: 13px 18px;
  background: var(--sub-color);
  color: #fff;
  font-family: var(--shi);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin: 26px 0 18px;
}

.fobt-judge__sum {
  margin-top: 22px;
  padding: 14px 18px;
  background: var(--band-color);
  border-left: 3px solid var(--sub-color);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .fobt-sec_caution {
    padding: 80px 5%;
  }
  .fobt-judge {
    padding: 22px 16px 20px;
  }
  .fobt-judge .fobt-ribbon {
    max-width: 190px;
    margin-bottom: 26px;
  }
  .fobt-judge__title {
    font-size: 120%;
  }
  .fobt-judge__label {
    padding: 11px 14px;
    margin: 20px 0 14px;
  }
}

/* =========================================================
   CTA
========================================================= */
.fobt-sec_contact {
  padding: 115px 0 110px;
  background-color: var(--sub-color03);
  background-image: linear-gradient(
      rgba(31, 28, 25, 0.6),
      rgba(31, 28, 25, 0.6)
    ),
    url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/bg_img_02.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center top;
  background-size: cover, auto 100%;
}

.fobt-sec_contact--b {
  background-image: linear-gradient(
      rgba(31, 28, 25, 0.6),
      rgba(31, 28, 25, 0.6)
    ),
    url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/bg_img_03.jpg");
}

.fobt-sec_contact .fobt-hgroup {
  color: #fff;
  margin-bottom: 60px;
}

.fobt-sec_contact .fobt-hgroup p {
  color: #fff;
  opacity: 0.1;
  margin-bottom: -85px;
}

.fobt-contact_list {
  display: flex;
  gap: 20px 40px;
  justify-content: center;
}

.fobt-contact_card {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: flex-start;
  max-width: 400px;
  width: 100%;
  background: #f6f2ea;
  border: 1px solid #fff;
  text-align: center;
  padding: 30px 10px;
}

.fobt-contact_card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.fobt-contact_card:nth-of-type(1) .fobt-contact_card__icon {
  background: #a21122; /* WEB予約（サイトの固定ボタン色） */
}

.fobt-contact_card:nth-of-type(2) .fobt-contact_card__icon {
  background: #014f5a; /* LINE予約 */
}

.fobt-contact_card:nth-of-type(3) .fobt-contact_card__icon {
  background: #b5a47a; /* お問い合わせ */
}

.fobt-contact_card__icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.fobt-contact_card h3 {
  font-family: var(--shi);
  font-weight: 400;
  font-size: 152.9%;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.fobt-contact_card p {
  line-height: 1.76;
  letter-spacing: 0.05em;
  margin: auto 0 10px;
}

.fobt-contact_card__btn {
  max-width: 320px;
  width: 100%;
  margin: auto auto 0;
}

.fobt-contact_card__btn a {
  display: block;
  width: 100%;
  position: relative;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 15px 5px;
  transition: opacity 0.2s ease;
}

.fobt-contact_card__btn a i {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  margin-right: 14px;
  top: -1px;
  transition: transform 0.2s ease;
}

.fobt-contact_card__btn a:hover {
  opacity: 0.8;
  color: #fff;
}

.fobt-contact_card:nth-of-type(1) .fobt-contact_card__btn a {
  background: #a21122; /* サイトの固定ボタン：WEB予約 */
}

.fobt-contact_card:nth-of-type(1) .fobt-contact_card__btn a:hover {
  background: #7d0d1a;
  opacity: 1;
}

.fobt-contact_card:nth-of-type(2) .fobt-contact_card__btn a {
  background: #014f5a; /* LINE予約：緑系の藍 */
}

.fobt-contact_card:nth-of-type(2) .fobt-contact_card__btn a:hover {
  background: #013b44;
  opacity: 1;
}

.fobt-contact_card:nth-of-type(3) .fobt-contact_card__btn a {
  background: #b5a47a; /* お問い合わせ：金 */
}

.fobt-contact_card:nth-of-type(3) .fobt-contact_card__btn a:hover {
  background: #9b8757;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .fobt-sec_contact {
    padding: 80px 0;
    background-size: cover, cover;
    background-position: center, center;
  }
  .fobt-sec_contact .fobt-hgroup {
    margin-bottom: 50px;
  }
  .fobt-sec_contact .fobt-hgroup p {
    margin-bottom: -40px;
  }
  .fobt-contact_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* =========================================================
   大腸カメラ検査で原因を確認
========================================================= */
.fobt-sec_exam {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: var(--band-color);
  padding: 130px 0 80px;
}

.fobt-exam_text {
  max-width: 640px;
  width: 50%;
  margin-left: max(4%, calc((100% - 1280px) / 2));
}

.fobt-exam_text .fobt-hgroup {
  margin-bottom: 45px;
}

/* EXAMINATION は文字数が多くカラム幅（640px）を超えるため、この見出しだけ縮める */
.fobt-exam_text .fobt-hgroup p {
  font-size: 430%;
}

.fobt-exam_img {
  position: relative;
  max-width: 910px;
  width: 47.4%;
  margin: 0 0 0 40px;
}

.fobt-exam_img__points {
  position: absolute;
  left: 30px;
  bottom: -80px;
  display: flex;
  gap: 0 25px;
  list-style: none;
}

.fobt-exam_img__points li {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 170px;
  aspect-ratio: 1/1;
  text-align: center;
  color: #fff;
  font-family: var(--shi);
  font-weight: 400;
  font-size: 105.9%;
  line-height: 1.7;
  letter-spacing: 0.05em;
  /* 元SVGはWordPress上に存在しないため、同系色の円形意匠をCSSで再現 */
  background: linear-gradient(145deg, var(--sub-color03), var(--main-color));
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.08),
    0 5px 16px rgba(96, 85, 56, 0.18);
}

@media screen and (max-width: 767px) {
  .fobt-sec_exam {
    flex-wrap: wrap;
    justify-content: center;
    padding: 80px 5% 20px;
  }
  .fobt-exam_text {
    max-width: 640px;
    width: 100%;
    margin: 0 auto 20px;
  }
  .fobt-exam_text .fobt-hgroup p {
    font-size: 240%;
  }
  .fobt-exam_img {
    width: 100%;
    margin: 0 auto 90px;
  }
  .fobt-exam_img__points {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -50px;
    justify-content: center;
    gap: 0 10px;
  }
  .fobt-exam_img__points li {
    width: 105px;
    font-size: 11.5px;
  }
}

/* ---------------------------------------------------------
   日帰りポリープ切除
--------------------------------------------------------- */
.fobt-polyp_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--band-color);
  padding: 90px 0 110px;
}

.fobt-polyp_row .fobt-photo {
  max-width: 920px;
  width: 47.9%;
  margin: 0 40px 0 0;
}

.fobt-text_polyp {
  max-width: 620px;
  width: 100%;
  margin-right: max(4%, calc((100% - 1280px) / 2));
}

.fobt-polyp__title {
  font-family: var(--shi);
  font-weight: 400;
  font-size: 164.7%;
  line-height: 1.78;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.fobt-polyp__label {
  padding: 15px 20px;
  max-width: 560px;
  background: var(--main-color);
  color: #fff;
  font-family: var(--shi);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 30px 0 20px;
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .fobt-polyp_row {
    flex-wrap: wrap;
    padding: 50px 5% 70px;
  }
  .fobt-polyp_row .fobt-photo {
    width: 100%;
    margin: 0 auto 20px;
  }
  .fobt-text_polyp {
    width: 100%;
    margin: 0 auto;
  }
  .fobt-polyp__title {
    font-size: 125%;
  }
  .fobt-polyp__label {
    max-width: unset;
    padding: 12px 16px;
    margin: 22px 0 16px;
  }
}

/* =========================================================
   4つの特徴
========================================================= */
.fobt-sec_features {
  padding: 150px 0 110px;
  /* 元SVGはWordPress上に存在しないため、区切りの斜面をCSSグラデーションで再現 */
  background:
    linear-gradient(174deg, #ffffff 0 49%, transparent 50%) no-repeat center top / 100% 92px,
    #f5f3ee;
}

.fobt-sec_features .fobt-hgroup {
  margin-bottom: 30px;
}

.fobt-sec_featuress__lead {
  max-width: 1000px;
  margin: 0 auto 85px;
  padding: 0 20px;
  line-height: 2.35;
  letter-spacing: 0.025em;
}

.fobt-feature_text h3 {
  display: flex;
  align-items: center;
  gap: 0 30px;
  font-size: 164.7%;
  font-family: var(--shi);
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.fobt-feature_text h3 .fobt-num {
  font-size: 120px;
  flex: 0 0 auto;
}

.fobt-feature_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}

.fobt-feature_main .fobt-photo {
  max-width: 920px;
  width: 47.9%;
  margin: 0 40px 0 0;
}

/* 画像を枠いっぱいに（img の width 属性のままだと枠内に余白が残る） */
.fobt-feature_main .fobt-photo img {
  width: 100%;
}

.fobt-feature_main .fobt-feature_text {
  max-width: 620px;
  width: 100%;
  margin-right: max(4%, calc((100% - 1280px) / 2));
}

.fobt-feature_cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 40px;
}

.fobt-feature_cols .fobt-feature_item {
  max-width: 600px;
  width: calc((100% - 80px) / 3);
}

/* 女性医師の予約ボタン：PCは3枚の下に全幅で */
.fobt-feature_cols__btn {
  width: 100%;
  margin-top: 50px;
}

.fobt-feature_cols .fobt-photo {
  margin-bottom: 20px;
}

.fobt-feature_cols .fobt-photo img {
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: cover;
  object-position: center 25%;
}

.fobt-feature_cols .fobt-feature_text h3 {
  font-size: 129.4%;
  gap: 0 14px;
  align-items: flex-start;
}

.fobt-feature_cols .fobt-feature_text h3 .fobt-num {
  font-size: 54px;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .fobt-sec_features {
    padding: 80px 0 70px;
    background-size: 100% 58px;
  }
  .fobt-sec_features .fobt-hgroup {
    margin-bottom: 20px;
  }
  .fobt-sec_featuress__lead {
    margin-bottom: 45px;
    line-height: 2;
  }
  .fobt-feature_text h3 {
    align-items: flex-start;
    gap: 0 10px;
    font-size: 125%;
  }
  .fobt-feature_text h3 .fobt-num {
    font-size: 40px;
  }
  .fobt-feature_main {
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 0 5%;
  }
  .fobt-feature_main .fobt-photo {
    width: 100%;
    margin: 0 auto 20px;
  }
  .fobt-feature_main .fobt-feature_text {
    width: 100%;
    margin: 0 auto;
  }
  .fobt-feature_cols {
    flex-wrap: wrap;
    gap: 60px 0;
  }
  .fobt-feature_cols .fobt-feature_item {
    width: 100%;
    max-width: unset;
  }
  /* SPは「女性医師（03）」の直後に予約ボタンを置く */
  .fobt-feature_cols .fobt-feature_item:nth-of-type(3) {
    order: 4;
  }
  .fobt-feature_cols__btn {
    order: 3;
    margin-top: -20px;
  }
  .fobt-feature_cols .fobt-feature_text h3 .fobt-num {
    font-size: 40px;
  }
}

/* =========================================================
   オンライン診療
========================================================= */
.fobt-sec_online {
  padding: 105px 0 150px;
  background: var(--bg-color) url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/bg_ptn_01.jpg") repeat-y right
    top;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
}

.fobt-sec_online .fobt-hgroup {
  margin-bottom: 40px;
}

.fobt-online_intro {
  text-align: center;
  background: #fff;
  padding: 25px 20px;
  margin-bottom: 85px;
}

.fobt-online_intro p {
  font-size: 117.6%;
  font-family: var(--shi);
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.05em;
}

/* ---------------------------------------------------------
   ONLINE：見出しの意匠
--------------------------------------------------------- */
/* h2 のキーフレーズに敷く金帯マーカー */
.fobt-h2mark {
  background: linear-gradient(transparent 62%, var(--rule-color) 62%);
  padding: 0 4px;
}

/* ONLINE の hgroup は欧文と和文を重ねて締める */
.fobt-hgroup--online {
  position: relative;
}

.fobt-hgroup--online h2 {
  margin-top: 6px;
}

/* 来院 3回 → 1回（公式図解の数字。欧文数字は Garamond） */
.fobt-online_lead {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0 14px;
  margin: 26px 0 34px;
  line-height: 1;
}

.fobt-online_lead__label {
  font-family: var(--shi);
  font-size: 141.2%;
  letter-spacing: 0.1em;
}

.fobt-online_lead__num {
  font-family: var(--pag);
  font-size: 64px;
  color: var(--sub-color03);
  letter-spacing: 0;
}

.fobt-online_lead__num small {
  font-family: var(--shi);
  font-size: 22px;
  margin-left: 2px;
}

.fobt-online_lead__num--em {
  color: var(--sub-color);
  font-size: 84px;
}

.fobt-online_lead__arrow {
  position: relative;
  width: 46px;
  height: 1px;
  background: var(--sub-color03);
  align-self: center;
}

.fobt-online_lead__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--sub-color03);
  border-right: 1px solid var(--sub-color03);
  transform: rotate(45deg);
}

/* 導入文の白帯は上下の二重罫で締める */
.fobt-online_intro {
  border-top: 1px solid var(--sub-color03);
  border-bottom: 1px solid var(--sub-color03);
  position: relative;
}

.fobt-online_intro::before,
.fobt-online_intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule-color);
}

.fobt-online_intro::before {
  top: 3px;
}

.fobt-online_intro::after {
  bottom: 3px;
}

@media screen and (max-width: 767px) {
  .fobt-online_lead {
    gap: 0 10px;
    margin: 20px 0 26px;
  }
  .fobt-online_lead__label {
    font-size: 118%;
  }
  .fobt-online_lead__num {
    font-size: 44px;
  }
  .fobt-online_lead__num small {
    font-size: 16px;
  }
  .fobt-online_lead__num--em {
    font-size: 58px;
  }
  .fobt-online_lead__arrow {
    width: 30px;
  }
}

/* ---------------------------------------------------------
   ONLINE：本文2カラム＋公式図解、ステップは2列
--------------------------------------------------------- */
.fobt-online_grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 50px;
  margin-bottom: 60px;
}

.fobt-online_text {
  max-width: 640px;
  width: 52%;
}

.fobt-online_text h4.fobt-h3band {
  margin-top: 34px;
}

.fobt-online_img {
  max-width: 560px;
  width: 44%;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 10px;
}

.fobt-online_img a {
  display: block;
  transition: opacity 0.2s ease;
}

.fobt-online_img a:hover {
  opacity: 0.85;
}

.fobt-online_img img {
  width: 100%;
  height: auto;
}

.fobt-online_img figcaption {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.05em;
}

.fobt-online_steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 40px;
}

.fobt-online_step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 26px 26px 22px;
}

/* 意匠：上辺の短い金バー */
.fobt-online_step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 26px;
  width: 46px;
  height: 2px;
  background: var(--main-color);
}

.fobt-online_step__head {
  display: flex;
  align-items: center;
  gap: 0 12px;
  margin-bottom: 4px;
}

.fobt-online_step__head .fobt-h3 {
  width: auto;
  flex: 1 1 auto;
  margin-bottom: 0;
}

/* 公式図解と同じ、金丸に白数字（欧文は Garamond） */
.fobt-step_num {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-family: var(--pag);
  font-size: 20px;
  line-height: 1;
  padding-bottom: 2px;
}

/* ポリープ節の h4（.fobt-polyp__label）と同じ金茶ベタ枠 */
.fobt-h3band {
  display: inline-block;
  padding: 15px 20px;
  background: var(--main-color);
  color: #fff;
  font-family: var(--shi);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 18px;
}

.fobt-online_text .fobt-h3band {
  color: #fff !important;
}

/* 本文中のキーフレーズ用マーカー（h2用より細い帯） */
.fobt-mark {
  font-weight: 400;
  background: linear-gradient(transparent 70%, var(--rule-color) 70%);
}

@media screen and (max-width: 767px) {
  .fobt-online_grid {
    flex-wrap: wrap;
    gap: 24px 0;
    margin-bottom: 40px;
  }
  .fobt-online_text,
  .fobt-online_img {
    width: 100%;
    max-width: unset;
  }
  .fobt-online_steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  .fobt-online_step {
    padding: 20px 16px 16px;
  }
  .fobt-online_step::before {
    left: 16px;
  }
  .fobt-step_num {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .fobt-h3 {
    font-size: 118%;
  }
  .fobt-h3band {
    padding: 12px 16px;
    margin-bottom: 14px;
  }
}

/* =========================================================
   よくあるご質問
========================================================= */
.fobt-sec_faq {
  position: relative;
  z-index: 0;
  padding: 110px 0 135px;
  background: #fff url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/bg_ptn_02.jpg") no-repeat center bottom;
}

.fobt-sec_faq::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 68.1%;
  background: var(--band-color);
  clip-path: polygon(0% 80%, 100% 0%, 100% 100%, 0% 100%);
}

.fobt-sec_faq .fobt-hgroup {
  margin-bottom: 60px;
}

.fobt-faq_table {
  max-width: 1000px;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 0 auto;
  background: #fff;
}

.fobt-faq_table th,
.fobt-faq_table td {
  vertical-align: middle;
  border-bottom: 1px solid var(--border-color);
}

.fobt-faq_table thead th {
  color: #fff !important;
  font-size: 117.6%;
  font-family: var(--shi);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  height: 70px;
  background: var(--main-color) !important;
  border-top: 1px solid var(--sub-color03);
}

.fobt-faq_table thead th:nth-of-type(1) {
  border-left: 1px solid var(--sub-color03);
  width: 33%;
}

.fobt-faq_table thead th:nth-of-type(2) {
  border-right: 1px solid var(--sub-color03);
}

.fobt-faq_table tbody th {
  color: #fff !important;
  font-size: 105.9%;
  font-family: var(--shi);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.85;
  text-align: left;
  padding: 26px 24px;
  background: var(--sub-color03) !important;
  border-left: 1px solid var(--border-color);
}

.fobt-faq_table tbody td {
  font-size: 94%;
  line-height: 2;
  text-align: left;
  padding: 26px 28px;
  background: #fff;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.fobt-faq_lead {
  font-family: var(--shi);
  font-weight: 400;
  font-size: 112%;
  line-height: 1.8;
  color: var(--sub-color);
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .fobt-sec_faq {
    padding: 80px 0;
    background-size: auto calc(100% - 100px);
    background-image: url("https://shitamachi-endoscopy.com/wp/wp-content/uploads/2026/09/bg_ptn_02_sp.jpg");
  }
  .fobt-sec_faq .fobt-hgroup {
    margin-bottom: 40px;
  }
  .fobt-faq_table thead {
    display: none;
  }
  .fobt-faq_table,
  .fobt-faq_table tbody,
  .fobt-faq_table tr,
  .fobt-faq_table th,
  .fobt-faq_table td {
    display: block;
    width: 100%;
  }
  .fobt-faq_table tbody th {
    padding: 16px 18px;
    border: 0;
  }
  .fobt-faq_table tbody td {
    padding: 18px;
    border: 1px solid var(--border-color);
    border-top: 0;
  }
  .fobt-faq_table tr + tr {
    margin-top: 20px;
  }
}

/* =========================================================
   クロージング
========================================================= */
.fobt-footer__info {
  /* サイトの .footer_info と同じ：青海波漆喰＋白85%重ね */
  background: url("https://shitamachi-endoscopy.com/wp/wp-content/themes/hero-cms/images/mv_before.jpg") repeat center / contain;
  background-color: rgba(255, 255, 255, 0.85);
  background-blend-mode: lighten;
  color: var(--text-color);
  position: relative;
}

.fobt-footer__info .fobt-inner {
  padding: 120px 20px 110px;
}

.fobt-footer__info .fobt-hgroup {
  margin-bottom: 45px;
}

.fobt-footer__body {
  max-width: 900px;
  margin: 0 auto;
}

.fobt-footer__body p {
  line-height: 2.35;
  letter-spacing: 0.025em;
}

.fobt-footer__body p + p {
  margin-top: 1.4em;
}

.fobt-footer__btns {
  display: flex;
  justify-content: center;
}

.fobt-footer__btns a {
  min-width: 360px;
  font-family: var(--shi);
  font-size: 117.6%;
  padding: 16px 55px 16px 40px;
}

@media screen and (max-width: 767px) {
  .fobt-footer__info .fobt-inner {
    padding: 70px 0 66px;
  }
  .fobt-footer__btns a {
    min-width: unset;
    width: 100%;
    font-size: 108%;
  }
  .fobt-footer__info {
    background-image: url("https://shitamachi-endoscopy.com/wp/wp-content/themes/hero-cms/images/bg_ptn_03_sp.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

/* ---------------------------------------------------------
   タブレット（768〜1100px）：2カラムを1カラムに落とす
--------------------------------------------------------- */
@media screen and (max-width: 1100px) {
  .fobt-sec_intro {
    flex-wrap: wrap;
    padding-left: 5%;
    padding-right: 5%;
  }
  .fobt-intro_text {
    max-width: 670px;
    min-width: unset;
    width: 100%;
    margin: 0 auto 24px;
  }
  .fobt-intro_img {
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
  }
  .fobt-judge_grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  .fobt-sec_exam,
  .fobt-polyp_row {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 5%;
    padding-right: 5%;
  }
  .fobt-exam_text,
  .fobt-text_polyp {
    max-width: 640px;
    width: 100%;
    margin: 0 auto 24px;
  }
  .fobt-exam_img,
  .fobt-polyp_row .fobt-photo {
    width: 100%;
    max-width: 910px;
    margin: 0 auto 90px;
  }
  .fobt-polyp_row .fobt-photo {
    margin-bottom: 24px;
  }
  .fobt-feature_main {
    flex-wrap: wrap;
    padding: 0 5%;
  }
  .fobt-feature_main .fobt-photo {
    width: 100%;
    margin: 0 auto 20px;
  }
  .fobt-feature_main .fobt-feature_text {
    margin: 0 auto;
  }
}

/* =========================================================
   WordPress（hero-cms）組み込み時の調整
   元HTMLの body.fobt がない実ページでも、フォント・余白・見出し装飾を
   元デザインどおりに適用する。
========================================================= */

/* WordPressが自動出力する下層ページ用メインビジュアルは、LPのMVと重複するため非表示 */
body#fecal-occult-blood > #mainvisual {
  display: none !important;
}

/* LP部分だけに元デザインの本文書体と基準サイズを適用 */
body#fecal-occult-blood .fobt-mv,
body#fecal-occult-blood .fobt-main,
body#fecal-occult-blood .fobt-footer {
  color: var(--text-color);
  font-family: "游ゴシック体", "Yu Gothic", YuGothic,
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo,
    Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
  word-break: normal;
  overflow-wrap: break-word;
}

/* body.fobt が付かない実ページでも、LP内の画像とリンクを基準状態へ戻す */
body#fecal-occult-blood .fobt-main img,
body#fecal-occult-blood .fobt-footer img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* メインビジュアルはスライド領域を常に画像で覆う（共通CSSの height:auto 対策） */
body#fecal-occult-blood .fobt-mv .fobt-mv__item img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body#fecal-occult-blood .fobt-mv a,
body#fecal-occult-blood .fobt-main a,
body#fecal-occult-blood .fobt-footer a {
  text-decoration: none;
}

/* テーマ共通の h1 { top:10px; right:0; } をLPのキャッチだけ解除 */
body#fecal-occult-blood .fobt-mv__catch h1 {
  top: auto;
  right: auto;
  z-index: auto;
}

/* under.css の main section { margin-bottom: 80px; } をLP内だけ解除 */
body#fecal-occult-blood .fobt-main > section {
  margin-bottom: 0 !important;
}

/* 本体テーマのH2背景・下線・アイコンを解除 */
body#fecal-occult-blood .fobt-hgroup h2 {
  display: block !important;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit !important;
  text-align: center;
}

body#fecal-occult-blood .fobt-hgroup h2::before,
body#fecal-occult-blood .fobt-main h2::before,
body#fecal-occult-blood .fobt-footer h2::before {
  display: none !important;
  min-width: 0;
  min-height: 0;
  margin: 0;
  background: none;
  content: none !important;
}

body#fecal-occult-blood .fobt-hgroup--rule h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

body#fecal-occult-blood .fobt-hgroup--online h2 {
  margin-top: 6px;
}

/* 本体テーマのH3共通背景・余白・下線を、LP独自デザインへ戻す */
body#fecal-occult-blood .fobt-judge__title,
body#fecal-occult-blood .fobt-polyp__title,
body#fecal-occult-blood .fobt-feature_text h3,
body#fecal-occult-blood .fobt-contact_card h3 {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text-color) !important;
}

body#fecal-occult-blood .fobt-judge__title {
  display: block;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border: 0;
  border-bottom: 1px solid var(--border-color);
}

body#fecal-occult-blood .fobt-polyp__title {
  display: block;
  margin-top: 0;
}

body#fecal-occult-blood .fobt-feature_text h3 {
  display: flex;
  margin-top: 0;
}

body#fecal-occult-blood .fobt-contact_card h3 {
  display: block;
  width: auto;
  border: 0;
  margin: 0 0 10px;
}

body#fecal-occult-blood .fobt-main h3:not(.fobt-h3)::before,
body#fecal-occult-blood .fobt-main h4::before {
  display: none !important;
  width: 0;
  height: 0;
  border: 0;
  background: none;
  content: none !important;
}

/* LP独自の細い金下線を持つH3 */
body#fecal-occult-blood .fobt-h3 {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  background: none;
  color: var(--text-color) !important;
}

body#fecal-occult-blood .fobt-online_step__head .fobt-h3 {
  width: auto;
  margin: 0;
  padding-bottom: 5px;
}

/* 金茶色の帯見出し */
body#fecal-occult-blood .fobt-h3band {
  position: static;
  display: inline-block;
  width: auto;
  margin: 0 0 18px;
  padding: 15px 20px;
  border: 0;
  background: var(--main-color);
  color: #ffffff !important;
  font-size: 100%;
  line-height: 1.7;
}

body#fecal-occult-blood .fobt-online_text h4.fobt-h3band {
  margin-top: 34px;
}

body#fecal-occult-blood .fobt-judge__label {
  position: static;
  margin: 26px 0 18px;
  padding: 13px 18px;
  border: 0;
  background: var(--sub-color);
  color: #ffffff !important;
  font-size: 100%;
  line-height: 1.7;
}

body#fecal-occult-blood .fobt-polyp__label {
  position: static;
  margin: 30px 0 20px;
  padding: 15px 20px;
  border: 0;
  background: var(--main-color);
  color: #ffffff !important;
  font-size: 100%;
  line-height: 1.7;
}

/* テーマのtable共通指定をFAQ表だけ元デザインへ戻す */
body#fecal-occult-blood .fobt-faq_table th,
body#fecal-occult-blood .fobt-faq_table td {
  border: 0;
  border-bottom: 1px solid var(--border-color);
}

body#fecal-occult-blood .fobt-faq_table thead th {
  color: #ffffff !important;
  background: var(--main-color) !important;
  border-top: 1px solid var(--sub-color03);
  font-family: var(--shi);
}

body#fecal-occult-blood .fobt-faq_table thead th:first-of-type {
  border-left: 1px solid var(--sub-color03);
}

body#fecal-occult-blood .fobt-faq_table thead th:last-of-type {
  border-right: 1px solid var(--sub-color03);
}

body#fecal-occult-blood .fobt-faq_table tbody th {
  color: #ffffff !important;
  background: var(--sub-color03) !important;
  border-left: 1px solid var(--border-color);
  font-family: var(--shi);
}

body#fecal-occult-blood .fobt-faq_table tbody td {
  border-right: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

body#fecal-occult-blood .fobt-faq_table .fobt-faq_lead {
  margin-bottom: 10px !important;
}

/* 本体footer用の波形疑似要素をLP内のクロージングfooterでは表示しない */
body#fecal-occult-blood .fobt-footer::before {
  display: none !important;
  width: 0;
  height: 0;
  background: none;
  content: none !important;
}

@media screen and (max-width: 1100px) {
  /* テーマの min-width:1300px を、このLPだけ解除してタブレット幅を有効化 */
  body#fecal-occult-blood {
    min-width: 0;
    overflow-x: hidden;
  }
}

@media screen and (max-width: 767px) {
  body#fecal-occult-blood .fobt-mv,
  body#fecal-occult-blood .fobt-main,
  body#fecal-occult-blood .fobt-footer {
    font-size: 15px;
  }

  body#fecal-occult-blood .fobt-h3band {
    margin-bottom: 14px;
    padding: 12px 16px;
  }

  body#fecal-occult-blood .fobt-judge__label {
    margin: 20px 0 14px;
    padding: 11px 14px;
  }

  body#fecal-occult-blood .fobt-polyp__label {
    margin: 22px 0 16px;
    padding: 12px 16px;
  }

  body#fecal-occult-blood .fobt-faq_table tbody th {
    border: 0;
  }

  body#fecal-occult-blood .fobt-faq_table tbody td {
    border: 1px solid var(--border-color);
    border-top: 0;
  }
}

/* =========================================================
   モーション
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .fobt * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
