*{
  margin:0;
  padding:0;
  line-height: 1.3em;
} 
/* time-schedule */
.time-schedule {
  min-width: 400px;
  max-width: 80%x;
  list-style: none;
  margin: 0 auto 0 6em;
  padding-left: 20px;
  //border-left: 6px solid #a7be18;
  //border-left: 6px solid #6B4523;
  border-left: 6px solid #9c693b;
  box-sizing: border-box;
}

.time-schedule li {
  width: 100%;
  margin: 0 0;
  padding: 5px 0;
  position: relative;
}

.time-schedule span.time {
  width: 5em;
  display: inline-block;
  margin-left: -8em;
  padding: 0 0 5px;
  margin-top: 15px;
  vertical-align: top;
  position: relative;
  text-align: right;
  box-sizing: border-box;
}

.time-schedule span.time::after {
  content: "";
  position: absolute;
  right: -31px;
  top: 0;
  //background: #a7be18;
  //background: #6B4523;
  background: #9c693b;
  width: 18px;
  height: 18px;
  border-radius: 10px;
}

.time-schedule .sch_box {
  display: inline-block;
  width: 100%;
  margin-left: 30px;
  padding: 15px 10px 15px 10px;
  vertical-align: middle;
  //background: #efefef;
  //background: #bababa;
  //background: #d9d9d9;
  background: #e0e0e0;
  box-sizing: border-box;
  border-radius: 6px;
}

.time-schedule .sch_title {
  font-size: 16px;
  font-weight: 700;
}

.time-schedule .sch_tx {
  font-size: 14px;
  font-weight: normal;
}

/* =================================================
   追従申込ボタン
   2026.02.16
   ================================================= */

/* ===== 追従CTA ===== */
.floating-entry{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8000; /* ★9999→8000 に変更 */
  padding: 10px 12px;
  background: rgba(255,255,255,0.92);
  border-top: 1px solid #ddd;
}

.floating-entry__btn{
  display: block;
  text-align: center;
  padding: 16px 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  background: #e65c00;
  color: #fff;
}
.floating-entry__btn:hover{ opacity: 0.9; }

/* 本文が追従バーに隠れない */
body{ padding-bottom: 110px; }

/* pagetop：CTAより上、ヘッダーより下 */
#pagetop{
  z-index: 9000; /* ★10000/14000 じゃなく 9000 に統一 */
}

/* ★ fixedの時だけ、CTA分だけ上に上げる */
#pagetop.pagetop--above-cta{
  bottom: 110px;
}

/* ===== 上部マスク：ヘッダーは触らず、pagetopだけ隠す ===== */
:root{
  --header-mask-h: 120px;
}

body::before{
  content:"";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-mask-h);
  pointer-events: none;
  z-index: 9500; /* ★pagetop(9000)より上、でもヘッダーよりは下にしたい */
}