@charset "UTF-8";

/* 既存のブレイクポイントがあればそのまま残す */
@media screen and (max-width: 375px) {}
@media screen and (min-width: 540px) {}
@media screen and (min-width: 640px) {}
@media screen and (min-width: 782px) {}
@media screen and (min-width: 980px) {}

@media screen and (max-width: 375px) {}
@media screen and (max-width: 540px) {}
@media screen and (max-width: 640px) {}
@media screen and (max-width: 782px) {}
@media screen and (max-width: 980px) {}


/*  */
.page-id-356 .breadcrumbs,
.page-id-356 #scroll-to-top,
.page-id-356 header.site-header,
.page-id-356 footer {
  display: none;
}
.parent-pageid-356 .breadcrumbs,
.parent-pageid-356 #scroll-to-top,
.parent-pageid-356 header.site-header,
.parent-pageid-356 footer {
  display: none;
}
.page-id-356 .main-header-clone-show,
.parent-pageid-356 .main-header-clone-show,
.page-id-356 .top-section-btn,
.parent-pageid-356 .top-section-btn,
.page-id-356 .section-sns,
.parent-pageid-356 .section-sns {
  display: none !important;
}
/* =========================================================
  THE BASE 風（CSS 完全版：崩れ対策＋左固定 完全対応）
  - 完全スコープ: .thebaselp-common 配下のみ
  - 角丸なし（border-radius:0）
  - PC：理由パートは左メニュー固定（sticky + JS fallback）
        fixed中でも崩れないよう「右をmarginで逃がす」方式
  - SP：縦積み
========================================================= */

.thebaselp-common{
  --tb-red:#d31f1f;
  --tb-blue:#0f3c63;
  --tb-gray:#cfd3d6;
  --tb-line:#111;
  --tb-text:#111;
  --tb-muted:#555;
  --tb-bg:#fff;
  --tb-max:100%;

  /* JSが上書きする可変値 */
  --tb-sticky-top:80px;
  --tb-fixed-left:0px;
  --tb-fixed-width:470px;
}

/* Reset (scoped) */
.thebaselp-common,
.thebaselp-common *{
  box-sizing:border-box;
  border-radius:0 !important;
}

.thebaselp-common{
  color:var(--tb-text);
  background:var(--tb-bg);
  font-family:-apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  line-height:1.7;
}

.thebaselp-common a{color:inherit;text-decoration:none}
.thebaselp-common img{max-width:100%;height:auto}

/* ===== stickyが死ぬ原因(overflow/transform/filter/perspective)をLP内だけ潰す ===== */
.thebaselp-common,
.thebaselp-common .tb-reasons,
.thebaselp-common .tb-reasons__grid,
.thebaselp-common .tb-reasons__left,
.thebaselp-common .tb-reasons__right{
  overflow: visible !important;
  transform: none !important;
  filter: none !important;
  perspective: none !important;
}

/* =========================================================
  Header
========================================================= */
.thebaselp-common .tb-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
}

.thebaselp-common .tb-header__inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.thebaselp-common .tb-logo{
  font-weight:900;
  letter-spacing:.02em;
  font-size:28px;
}
.thebaselp-common .tb-logo img {
  max-width: 160px;
}
.thebaselp-common .tb-header__nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.thebaselp-common .tb-header__link{
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}

.thebaselp-common .tb-header__sep{color:#000}

.thebaselp-common .tb-header__btn{
  background:var(--tb-red);
  color:#fff;
  font-weight:900;
  padding:10px 45px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--tb-red);
  white-space:nowrap;
}


/* Burger (SP) */
.thebaselp-common .tb-burger{
  display:none !important;
  width:44px;
  height:40px;
  background:#fff;
  padding:0 10px;
  cursor:pointer;

  /* 中身を縦に均等配置（これが一番安定） */
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;

  /* 余計な見た目を消す */
  appearance:none;
  -webkit-appearance:none;
}

.thebaselp-common .tb-burger span{
  display:block;
  width:100%;
  height:2px;
  background:#000;

  /* テーマ側の変な影響を潰す */
  line-height:0;
  font-size:0;
}

/* SPで表示する */
@media (max-width: 980px){
  .thebaselp-common .tb-burger{
    display:flex !important;
  }
}

/* Drawer */
.thebaselp-common .tb-drawer{
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
}
.thebaselp-common .tb-drawer.is-open{display:block}
.thebaselp-common .tb-drawer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
}
.thebaselp-common .tb-drawer__panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(360px, 92vw);
  background:#fff;
  display:flex;
  flex-direction:column;
}
.thebaselp-common .tb-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px;
  border-bottom:1px solid #000;
}
.thebaselp-common .tb-drawer__title {
  font-weight:900;
  width: stretch;
}
.thebaselp-common .tb-drawer__close{
  width:40px;
  height:40px;
  background:#fff;
  cursor:pointer;
  font-size:22px;
  line-height:1;
}
.thebaselp-common .tb-drawer__body{
  padding:14px;
  display:grid;
  gap:10px;
  overflow:auto;
}
.thebaselp-common .tb-drawer__link{
  padding:10px 8px;
  border-bottom:1px solid #ddd;
  font-weight:800;
}
.thebaselp-common .tb-drawer__btn{
  margin-top:6px;
  background:var(--tb-red);
  color:#fff;
  padding:12px 12px;
  font-weight:900;
  display:inline-flex;
  justify-content:center;
  border:1px solid var(--tb-red);
}
.thebaselp-common .tb-drawer__btn--blue{
  background:var(--tb-blue);
  border-color:var(--tb-blue);
}
/* PC hover submenu */
.thebaselp-common .tb-header__dropdown{
  position:relative;
}

.thebaselp-common .tb-header__submenu{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  width:260px;
  background:#fff;
  border:1px solid #111;
  display:none;
  z-index:99999;
}

.thebaselp-common .tb-header__submenu a{
  display:block;
  padding:12px 14px;
  font-size:13px;
  font-weight:800;
  border-bottom:1px solid #ddd;
  color:#111;
  background:#fff;
}

.thebaselp-common .tb-header__submenu a:last-child{
  border-bottom:none;
}

.thebaselp-common .tb-header__dropdown:hover .tb-header__submenu{
  display:block;
}

/* Burger */
.thebaselp-common .tb-burger{
  display:none;
  width:44px;
  height:40px;
  background:#fff;
  padding:0 10px;
  cursor:pointer;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}

.thebaselp-common .tb-burger span{
  display:block;
  width:100%;
  height:2px;
  background:#000;
  line-height:0;
  font-size:0;
}

/* Drawer */
.thebaselp-common .tb-drawer{
  position:fixed;
  inset:0;
  z-index:999999;
  display:none;
}

.thebaselp-common .tb-drawer.is-open{
  display:block;
}

.thebaselp-common .tb-drawer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
}

.thebaselp-common .tb-drawer__panel{
  position:absolute;
  top:0;
  right:0;
  width:min(360px, 92vw);
  height:100%;
  background:#fff;
  border-left:1px solid #000;
  overflow:auto;
}

body.tb-drawer-open{
  overflow:hidden;
}

@media (max-width:980px){
  .thebaselp-common .tb-header__link,
  .thebaselp-common .tb-header__sep,
  .thebaselp-common .tb-header__btn,
  .thebaselp-common .tb-header__dropdown{
    display:none;
  }

  .thebaselp-common .tb-burger{
    display:flex !important;
  }
}
/* ドロワー上部 */
.thebaselp-common .tb-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ×ボタン位置調整 */
.thebaselp-common .tb-drawer__close{
  width:56px;
  height:56px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  font-size:30px;
  font-weight:400;
  background:#fff;
  cursor:pointer;
  color: #000;
}
.tb-drawer__title img {
  max-width: 40%;
}
/* =========================================================
  共通
========================================================= */
.tb-mid-textindent {

}
.br-sp540 {
  display: none;
}
.br-sp540-pc {
  display: block;
}
@media screen and (max-width: 700px) {
  .br-sp540 {
  display: block;
}
.br-sp540-pc {
  display: none;
}
}
/* ============================================
   Main Visual 完成版
============================================ */
.thebaselp-common .tb-mv2{
  background:#fff;
  padding: 18px 0 14px;
  margin-top: 39px;
}
@media screen and (max-width: 782px) {
  .thebaselp-common .tb-mv2{
  background:#fff;
  padding: 18px 0 14px;
  margin-top: 70px;
}
}
.thebaselp-common .tb-mv2 .tb-mv2__inner{
  width:100%;
  margin:0 auto;
  padding:0 0px 180px; /* ←ロゴ分の逃げ */
  position:relative;
  min-height:620px;
}

/* ===== 左テキスト ===== */
.thebaselp-common .tb-mv2__text{
  position:relative;
  z-index:3;
  width:100%;
  padding-top:60px;
  left: 60px;
}

.thebaselp-common .tb-mv2__head2{
  margin:0 0 16px;
  font-size:55px;
  font-weight:900;
  line-height:1.05;
  letter-spacing:-0.02em;
  text-shadow: 2px 2px 5px #ffffff;
}

.thebaselp-common .tb-mv2__head1 p{
  margin:0;
  font-size:75px;
  font-weight:900;
  line-height:1.0;
}

.thebaselp-common .tb-mv2__head3{
  margin: 23px 0 0;
  font-size: 75px;
  font-weight:900;
  line-height:1.0;
}

.thebaselp-common .tb-mv2__hl span.quote-start {
  display: inline-block;
  margin-left: -0.6em;
}
.thebaselp-common .tb-mv2__hl span.quote-end {
    display: inline-block;
    margin-right: -0.5em;
}
.thebaselp-common .tb-mv2__desc span.quote-start {
  display: inline-block;
  margin-left: -0.5em;
  margin-bottom: 0px;
}
.thebaselp-common .tb-mv2__desc span.quote-end {
    display: inline-block;
    margin-right: -0.5em;
    margin-bottom: 0px;
}
.thebaselp-common .tb-mv2__hl span.underlined-text {
  background: linear-gradient(transparent 80%, var(--tb-red) 70%);
}

/* ===== 右画像 ===== */
.thebaselp-common .tb-mv2__img{
  position:absolute;
  top:0;
  right:0;
  width:55%;        /* ←近さ調整 */
  height:560px;
  overflow:hidden;
  z-index:1;
}

.thebaselp-common .tb-mv2__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* ===== 説明文 ===== */
.thebaselp-common .tb-mv2__desc{
  position:relative;
  z-index:3;
  width: 100%;
  margin-top:30px;
  font-size:32px;
  line-height:1.3;
  font-weight:800;
  left: 60px;
  text-shadow: 2px 2px 5px #ffffff;
}
.thebaselp-common .tb-mv2__desc span {
  font-size: 34px;
  display: block;
  margin: 0px 0 16px;
}
/* ===== ロゴ（写真の上に固定） ===== */
.thebaselp-common .tb-mv2__logoWrap{
  position:absolute;
  bottom:-10px;
  width:650px;   /* ←左幅と一致 */
  z-index:4;
  left: 60px;
}

.thebaselp-common .tb-mv2__logoMain{
  font-size:150px;
  font-weight:900;
  line-height:0.7;
  letter-spacing:1px;
  font-family: 'Josefin Sans', sans-serif !important;
}

.thebaselp-common .tb-mv2__logoBar{
  max-width:500px;
  background:#4a4a4a;
  text-align:center;
  padding:10px 0;
  margin-top:0px;
  color:#fff;
  font-size:14px;
  font-weight:700;
}
@media screen and (max-width: 700px) {
  .thebaselp-common .tb-mv2__logoBar{
    margin: 0 auto;
}
}
.thebase-br {
    display: none;
  }
/* ============================================
   SP
============================================ */
@media (max-width:900px){
  .thebase-br {
    display: block;
  }
  .thebaselp-common .tb-mv2__inner{
    padding:0 16px;
    min-height:auto;
  }
  .thebaselp-common .tb-mv2__text,
  .thebaselp-common .tb-mv2__desc {
    padding: 0 16px;
    left: 0;
  }
  .thebaselp-common .tb-mv2__text,
  .thebaselp-common .tb-mv2__desc{
    width:auto;
  }
.thebaselp-common .tb-mv2__head2{
  margin:0 0 16px;
}
  .thebaselp-common .tb-mv2__head2{
    font-size:28px;
  }

 .thebaselp-common .tb-mv2__head1 p {
    font-size:32px;
  }
  .thebaselp-common .tb-mv2__head3{
    font-size:42px;
  }

  .thebaselp-common .tb-mv2__img{
    position:relative;
    width:100%;
    height:320px;
    margin-top:-15px;
  }

  .thebaselp-common .tb-mv2__logoWrap{
    position:relative;
    left:auto;
    bottom:auto;
    width:auto;
    margin-top:14px;
  }

  .thebaselp-common .tb-mv2__logoMain{
    font-size:84px;
  }
  .thebaselp-common .tb-mv2__hl span.underlined-text {
    font-size: 46px;  
  }
  .thebaselp-common .tb-mv2__head3{
  margin: 16px 0 0;
}
.thebaselp-common .tb-mv2__desc {
  font-size: 21px;
}
.thebaselp-common .tb-mv2__desc span {
  font-size: 31px;
  display: block;
  margin: 8px 0 24px;
}
.thebaselp-common .tb-mv2__logoWrap {
  padding: 0 16px;
}
.thebaselp-common .tb-mv2 .tb-mv2__inner {
  padding: 0 0px 10px;
}
}

@media screen and (max-width: 700px) {
  .thebaselp-common .tb-mv2__hl span.underlined-text {
    font-size: 40px;  
  }
  .thebaselp-common .tb-mv2__head2{
    font-size:32px;
    line-height: 1.2;
  }
  .thebaselp-common .tb-mv2__head3{
    font-size:44px;
    text-shadow: 2px 2px 5px #ffffff;
  }
  .thebaselp-common .tb-mv2__img{
    height:260px;
  }
  .thebaselp-common .tb-mv2__desc {
    text-align: center;
    font-size: 24px;
  }
  .thebaselp-common .tb-mv2__desc span {
    font-size: 26px;
  }
  .thebaselp-common .tb-mv2__desc span.tb-mv2__desc-strong,
  .thebaselp-common .tb-mv2__desc span.tb-mv2__desc-strong2 {
    display: inline-block;
    border: solid 2px #333;
    padding: 5px 14px;
    margin: 5px;
    font-size: 22px;
  }
  .thebaselp-common .tb-mv2__desc span.tb-mv2__desc-strong2 {
    margin-bottom: 3px;
  }
  .tb-mid01__inner .flexbox {
    gap: 0;
  }
  .thebaselp-common .tb-mv2__logoWrap {
    margin-top: 36px;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .thebaselp-common .tb-mv2__hl span.underlined-text {
    font-size: 38px;  
  }
  .thebaselp-common .tb-mv2__head2{
    font-size: 32px;
  }
}
/* =========================================================
  mid01
========================================================= */
.thebaselp-common .tb-mid01{
  padding: 70px 0 140px;
}
.thebaselp-common .tb-mid01__inner .flex-mid01 h2 {
  font-size: 40px;
  color: var(--tb-red);
  line-height: 1.4;
}
.thebaselp-common .tb-mid01__inner .flex-mid01 p {
  font-size: 17px;
  margin-bottom: 8px;
}
.thebaselp-common .tb-mid01__inner .flex-mid01 .tb-mid-textindent {
    display: inline-block;
    text-indent: -15px;
}
/* ============================================
   SP
============================================ */
@media (max-width:900px){
  .thebaselp-common .tb-mid01{
  padding: 30px 0 70px;
}
.thebaselp-common .tb-mid01__inner .flex-mid01 h2 {
  font-size: 25px;
  margin-bottom: 10px;
}
.thebaselp-common .tb-mid01__inner .flex-mid01 p {
  font-size: 16px;
  margin-bottom: 8px;
}
}
/* =========================================================
  mid02
========================================================= */
.thebaselp-common .tb-mid02{
  padding: 32px 0;
  background-color: #e5eaed;
  text-align: center;
}
.thebaselp-common .tb-mid02__inner{

}
.thebaselp-common .tb-mid02-img img {
  max-width: 65%;
  margin: 0 auto;
}
.thebaselp-common .flex-mid02 img {
  max-width: 85%;
}
.thebaselp-common .tb-mid02 .tb-mid02-text {
  margin: 32px 0;
}
.thebaselp-common .tb-mid02 .tb-mid02-text p {
  color: #333;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 150%;
}
.thebaselp-common .tb-mid02 .tb-mid02-text p span {
  color: var(--tb-red);
}
/* =========================================================
  mid02：result-img1.png を境界にまたがせる
========================================================= */

/* mid02側は画像を引き上げる分、上paddingを増やす */
.thebaselp-common .tb-mid02{
  padding: 120px 0 32px;  /* ←上だけ増やす（調整可） */
  background-color: #e5eaed;
  text-align: center;
  position: relative;     /* z-index制御用 */
  z-index: 1;
}

/* 画像の親 */
.thebaselp-common .tb-mid02-img{
  position: relative;
  z-index: 5;             /* グレー背景より前面 */
}

/* 画像本体：上に引き上げて、mid01(白)へ跨らせる */
.thebaselp-common .tb-mid02-img img{
  max-width: 75%;
  height: auto;
  display: block;

  /* ここが本体：境界を跨ぐ */
  margin: -200px auto 16px;  /* ← -90px を調整 */
}

/* 念のため：WPの aligncenter が変なmarginを持つテーマ対策 */
.thebaselp-common .tb-mid02-img img.aligncenter{
  margin-left: auto !important;
  margin-right: auto !important;
}
/* ============================================
   SP
============================================ */
@media (max-width:900px){
  /* mid02側は画像を引き上げる分、上paddingを増やす */
.thebaselp-common .tb-mid02{
  padding: 160px 0 32px;  /* ←上だけ増やす（調整可） */
  background-color: #e5eaed;
  text-align: center;
  position: relative;     /* z-index制御用 */
  z-index: 1;
}
/* 画像本体：上に引き上げて、mid01(白)へ跨らせる */
.thebaselp-common .tb-mid02-img img{
  max-width: 100%;
  height: auto;
  display: block;

  /* ここが本体：境界を跨ぐ */
  margin: -200px auto 16px;  /* ← -90px を調整 */
}
.thebaselp-common .tb-mid02 .tb-mid02-text {
  margin: 16px 0;
}
.thebaselp-common .tb-mid02 .tb-mid02-text p {
  font-size: 140%;
  text-align: left;
}
}
@media screen and (max-width: 540px) {
  .thebaselp-common .tb-mid02 .tb-mid02-text p {
  font-size: 130%;
  text-align: left;
}
}
/* =========================================================
  mid03
========================================================= */
.thebaselp-common .tb-mid03{
  padding: 0px 0 48px;
  text-align: center;
}
.thebaselp-common .tb-mid03 img {
  max-width: 120px;
  margin: 0 auto;
}
.thebaselp-common .flex-mid03 {
  margin-top: 32px;
  text-align: center;
}
/* 4つの丸：中身を少し下げて配置（見本に近い） */
.thebaselp-common .tb-mid03 .flex-mid03-inner{
  width: 250px;
  height: 250px;
  background-color: #d31f1f;
  border-radius: 50% !important;
  margin: 0 auto;
  text-align: center;

  /* line-heightは使わない */
  line-height: normal;

  /* 上から積む */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  /* ここで全体位置を下げる（要調整ポイント） */
  padding: 75px 16px 18px;

  color: #fff;
  font-weight: 900;
}

/* 番号 */
.thebaselp-common .tb-mid03 .flex-mid03-inner span{
  display: block;
  font-size: 44px;
  line-height: 1;
  margin: 0 0 18px;
}

/* 本文 */
.thebaselp-common .tb-mid03 .flex-mid03-inner{
  font-size: 20px;
  line-height: 1.55;
}

.thebaselp-common .tb-mid03 p.mid03-p01,
.thebaselp-common .tb-mid03 p.mid03-p02,
.thebaselp-common .tb-mid03 p.mid03-p03 {
  color: #333;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 150%;
}
.thebaselp-common .tb-mid03 p.mid03-p01 {
  margin-top: 32px;
}
.thebaselp-common .tb-mid03 p.mid03-p02 {
  font-size: 190%;
}
.thebaselp-common .tb-mid03 p.mid03-p03 {
  font-size: 190%;
  margin-top: 8px;
}
.thebaselp-common .tb-mid03 p.mid03-p02 span.quote-start {
  display: inline-block;
  margin-left: -0.5em;
}
.thebaselp-common .tb-mid03 p.mid03-p02 span.quote-end {
    display: inline-block;
    margin-right: -0.5em;
}
.thebaselp-common .tb-mid03 p.mid03-p02 span.underlined-text {
  font-size: 100%;
  border-bottom: solid 4px #333;
  padding-bottom: 3px;
}
@media screen and (max-width: 640px) {
  .thebaselp-common .tb-mid03 p.mid03-p02 span.underlined-text {
  font-size: 100%;
  border-bottom: solid 4px #333;
  padding-bottom: 0px;
}
}
/* ============================================
   SP
============================================ */
@media (max-width:900px){
  /* 4つの丸：中身を少し下げて配置（見本に近い） */
.thebaselp-common .tb-mid03 .flex-mid03-inner{
  width: 160px;
  height: 160px;
  padding: 35px 16px 18px;
}
.thebaselp-common .tb-mid03 .flex-mid03-inner span {
  font-size: 22px;
  margin: 0 0 8px;
}
.thebaselp-common .tb-mid03 .flex-mid03-inner {
  font-size: 14px;
}
.thebaselp-common .tb-mid03 p.mid03-p01,
.thebaselp-common .tb-mid03 p.mid03-p02 {
  font-size: 130%;
}
.thebaselp-common .tb-mid03 p.mid03-p02 span.underlined-text {
  font-size: 110%;
}
}
@media screen and (max-width: 540px) {
  .thebaselp-common .tb-mid03 p.mid03-p01,
  .thebaselp-common .tb-mid03 p.mid03-p02 {
    font-size: 170%;
  }
  .thebaselp-common .tb-mid03 p.mid03-p02 span.underlined-text {
    font-size: 100%;
  }
  .thebaselp-common .tb-mid03 p.mid03-p03 {
    font-size: 250%;
  }
}

/* =========================================================
  mid04
========================================================= */
.thebaselp-common .tb-mid04{
  padding: 0px 0 58px;
  background-image: url(https://lifex-house.jp/wp-content/uploads/2026/05/bg-payless.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  text-align: center;
}
.thebaselp-common .tb-mid04 img {
  max-width: 120px;
  margin: 0 auto;
}
.thebaselp-common .tb-mid04 p {
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 150%;
}
.thebaselp-common .tb-mid04 p.mid04-p01 {
  margin-top: 32px;
}
.thebaselp-common .tb-mid04 p.mid04-p02 {

}
.thebaselp-common .tb-mid04 p.mid04-p03 {
  font-size: 210%;
  line-height: 1.4;
  margin-top: 16px;
}
.thebaselp-common .tb-mid04 p.mid04-p03 span.quote-start {
  display: inline-block;
  margin-left: -0.5em;
}
.thebaselp-common .tb-mid04 p.mid04-p03 span.quote-end {
    display: inline-block;
    margin-right: -0.5em;
}
.thebaselp-common .tb-mid04 p.mid04-p03 span.underlined-text {
  font-size: 130%;
  border-bottom: solid 4px #fff;
  padding-bottom: 3px;
  display: inline-block;
  margin-bottom: 6px;
}
.thebaselp-common .tb-mid04__inner{

}

/* ============================================
   SP
============================================ */
@media (max-width:900px){
  .thebaselp-common .tb-mid04 p.mid04-p03 span.underlined-text {
  font-size: 115%;
  line-height: 0;
}
.thebaselp-common .tb-mid04 p.mid04-p03 {
  font-size: 220%;
  margin-top: 16px;
}
}
@media screen and (max-width: 700px) {
  .thebaselp-common .tb-mid04 p.mid04-p03 {
  font-size: 170%;
  margin-top: 32px;
}
  .thebaselp-common .tb-mid04 p.mid04-p03 span.underlined-text {
  font-size: 125%;
  border-bottom: solid 4px #fff;
  padding-bottom: 3px;
  display: inline-block;
  margin: 12px auto;
  line-height: 1.4;
}
.mid04-p03-strongtext {
  display: inline-block;
  border: solid 1px #fff;
  margin: 3px;
  /* color: red; */
  width: max-content;
  padding: 6px 22px;
}
}
/* =========================================================
  mid05
========================================================= */
.thebaselp-common .contact {
    overflow: hidden;
}
.thebaselp-common .contact-wrap {
    padding: 6rem 0 4rem;
    background-image: url(https://lifex-house.jp/wp-content/uploads/2026/05/contact-bg1.png);
    background-position: top center;
}
.thebaselp-common .bg-img-cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.thebaselp-common ._before, .thebaselp-common ._after {
    position: relative;
}
.thebaselp-common .contact-wrap .inner {
    z-index: 1;
    position: relative;
}
.thebaselp-common .contact h4 {
    font-size: 3rem;
    margin-bottom: 0;
}
.thebaselp-common .contact h4 span {
    font-weight: 600;
    padding: 2px 1rem;
    display: inline-block;
    margin: 5px;
}
.thebaselp-common .bg-dark_blue {
    background-color: #333;
    color: #fff;
}
.thebaselp-common .contact .txt_1 {
    padding: 1rem 0 0;
}
.thebaselp-common .txt-ac {
    text-align: center;
}
.thebaselp-common .contact .txt_1 img {
    width: 60%;
}
.thebaselp-common .contact-wrap::after {
    z-index: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(https://lifex-house.jp/wp-content/uploads/2026/05/contact-overlay.png) no-repeat bottom center;
    background-size: cover;
}
.thebaselp-common ._before::before, .thebaselp-common ._after::after {
    display: block;
    content: '';
    z-index: 0;
    margin: auto;
    position: absolute;
}
.thebaselp-common .contact .inner_box {
    padding-bottom: 3rem;
}
.thebaselp-common .contact .red_box {
    padding: 4rem 0 10%;
}
.thebaselp-common .bg-red {
    background-color: #D81C16;
    color: #fff;
}
.thebaselp-common .bg-white {
    background-color: #fff;
}
.thebaselp-common .pos-r {
    position: relative;
}
.thebaselp-common .contact .red_box_wrap {
    width: 88%;
    max-width: 1080px;
    margin: auto;
    position: relative;
    z-index: 2;
}
.thebaselp-common .fx-sb {
    justify-content: space-between;
}
.thebaselp-common .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.thebaselp-common .contact .red_box .decor1 {
    width: 47%;
    max-width: 509px;
    top: -21%;
    left: -4%;
    z-index: 0;
    position: absolute;
}
.thebaselp-common .contact .red_box .col_l {
    width: 60%;
    padding-top: 5.5rem;
    position: relative;
    z-index: 2;
}
.thebaselp-common .contact .red_box .col_l .ttl {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.5;
}
.thebaselp-common .contact .red_box .col_l .txt {
    font-size: 1.8rem;
    padding: 1rem 0 0;
}
.thebaselp-common .contact .red_box figure {
    width: 35%;
}
.thebaselp-common .contact .red_box .decor2 {
    width: 100%;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    position: absolute;
}
.thebaselp-common .contact .lower_box {
    padding: 2rem 0 0;
    max-width: 1200px;
    width: 88%;
    margin: auto;
    color: #000;
}
.thebaselp-common .contact .lower_box .ttl {
    font-size: 5rem;
    font-weight: 600;
    padding-bottom: 1rem;
}
.thebaselp-common .fx-ai-center {
    align-items: center;
}
.thebaselp-common .fx-ai-center {
    align-items: center;
}
.thebaselp-common .fx-sb {
    justify-content: space-between;
}
.thebaselp-common .contact .lower_box .col_l {
    width: 52%;
}
.thebaselp-common .contact .lower_box figure {
    width: 44%;
}
.thebaselp-common .contact .lower_box .btn_wrap {
    padding: 0.75rem 0;
    margin-bottom: 0;
}
.thebaselp-common .contact .lower_box .btn_wrap .lower_btn {
    text-align: center;
    width: 100%;
}
.thebaselp-common .btn_wrap .lower_btn {
    border: none;
    padding: 0 2rem;
    font-size: 1rem;
    height: 55px;
    line-height: 54px;
    display: inline-block;
    box-sizing: border-box;
}
.thebaselp-common .btn_wrap .lower_btn.style1 {
    line-height: 150%;
    height: auto;
    padding: 1rem;
    font-size: 1.5rem;
    font-size: clamp(1rem, 1.75vw, 1.5rem);
    font-weight: 700;
    box-shadow: 5px 5px #9B9FA3;
}
.thebaselp-common .btn_wrap .lower_btn img {
    width: 20px;
    vertical-align: middle;
}
.thebaselp-common .contact .lower_box .btn_wrap .lower_btn img {
    width: 15%;
    max-width: 97px;
}
.thebaselp-common .contact .lower_box .btn_wrap .lower_btn span {
    display: inline-block;
    padding-left: 1rem;
    font-size: 3.5rem;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    vertical-align: middle;
}
.thebaselp-common .bg-blue {
    background-color: #003F75;
    color: #fff;
}
.thebaselp-common .contact .lower_box .btn_wrap .contact_btn span {
    font-size: 2.25rem;
}
.thebaselp-common .contact .lower_box .btn_wrap .contact_btn {
    padding: 0;
    padding: 1.5rem 0;
    height: auto;
}
@media screen and (max-width: 540px) {
  .thebaselp-common .contact .red_box .col_l .ttl {
    font-size: 2.3rem;
  }
  .thebaselp-common .contact .lower_box .ttl {
    font-size: 3.2rem;
}
.thebaselp-common .contact .red_box .col_l {
  padding-top: 2.5rem;
}
.thebaselp-common .contact .red_box .decor1 {
  top: -16%;
}
.thebaselp-common .contact .lower_box .btn_wrap .lower_btn span {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}
.thebaselp-common .contact .lower_box .btn_wrap .contact_btn span {
  font-size: 1.8rem;
}
}
/* =========================================================
  問い合わせ
========================================================= */
.lower_tel-box {
  margin: 60px 0 25px;
}
.lower_tel-box p {
  margin-bottom: 0;
}
.lower_tel-box a {
  display: inline-block;
  line-height: 1.4;
}
.lower_tel-box a:hover {
  color:var(--tb-red);
}
.lower_tel {
  font-size: 65px;
}

/* =========================================================
  footer
========================================================= */
.thebaselp-common .thebaselp-footer {
  background: #555;
  padding: 48px 0;
  text-align: center;
}
.thebaselp-common .thebaselp-footer .thebaselp-footer__inner-logo img {
  max-width: 170px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .thebaselp-common .thebaselp-footer .thebaselp-footer__inner-logo img {
  max-width: 130px;
  margin: 0 auto;
}
}
.thebaselp-common .thebaselp-footer .thebaselp-footer__inner-area {
  margin-top: 20px;
  margin-bottom: 20px;
}
.thebaselp-common .thebaselp-footer .thebaselp-footer__inner-addrres {
  margin: 18px 0 16px;
}
.thebaselp-common .thebaselp-footer .thebaselp-footer__inner-addrres p.thebaselp-footer__inner-addrres-company {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;
}
.thebaselp-common .thebaselp-footer p {
  margin-bottom: 0;
  color: #fff;
}
/* =========================================================
  Reasons split（崩れ対策：fixed中は右をmarginで逃がす）
========================================================= */
.thebaselp-common .tb-reasons{
  border-bottom:1px solid #000;
  background:var(--tb-gray);
}

/* 通常時：2カラム grid */
.thebaselp-common .tb-reasons__grid{
  display:grid;
  grid-template-columns: 420px 1fr;
  min-height:100vh;
  position:relative;

  /* テーマの中央寄せ影響を吸収して崩れにくくする */
  max-width:var(--tb-max);
  margin:0 auto;
}

/* 左：sticky（効く環境はこれでOK） */
.thebaselp-common .tb-reasons__left{
  background:var(--tb-gray);
  padding:58px 48px;
  align-self:start;
  position:sticky;
  top:var(--tb-sticky-top);
}

/* fixed中：grid解除 + 右をmarginで避ける（崩れ防止の要） */
.thebaselp-common .tb-reasons__grid.is-left-fixed{
  display:block;
}
.thebaselp-common .tb-reasons__grid.is-left-fixed .tb-reasons__right{
  margin-left: var(--tb-fixed-width);
}

/* fixed本体：leftは grid 左端に合わせる（JSが --tb-fixed-left を入れる） */
.thebaselp-common .tb-reasons__left.is-fixed{
  position:fixed !important;
  top:var(--tb-sticky-top) !important;
  left:var(--tb-fixed-left) !important;
  width:var(--tb-fixed-width) !important;
  z-index:20;
}

/* 最下部：grid内下端にabsoluteで貼り付く */
.thebaselp-common .tb-reasons__left.is-bottom{
  position:absolute !important;
  top:auto !important;
  bottom:0 !important;
  left:0 !important;
  width:420px;
  z-index:10;
}

/* 左タイトル */
.thebaselp-common .tb-left__titleTop,
.thebaselp-common .tb-left__titleMid{
  font-weight:900;
  font-size:34px;
  line-height:1.05;
}
.thebaselp-common .tb-left__titleBig{
  margin-top:10px;
  font-weight:900;
  font-size:60px;
  line-height:1;
  color:var(--tb-red);
  font-family: "Noto Sans JP", sans-serif;
}

/* 左ナビ */
.thebaselp-common .tb-left__nav{
  margin-top:16px;
  border-top:1px solid #c00;
}
.thebaselp-common .tb-left__item{
  display:grid;
  grid-template-columns:60px 1fr;
  gap:10px;
  padding: 20px 0;
  border-bottom:1px solid #c00;
}
.thebaselp-common .tb-left__num{
  font-weight:900;
  color:var(--tb-red);
  font-size:32px;
  line-height:1;
}
.thebaselp-common .tb-left__name{
  font-weight:900;
  color:var(--tb-red);
  font-size:16px;
  line-height:1.2;

}
.thebaselp-common .tb-left__name small{
  display:block;
  font-weight:800;
  font-size:18px;
  color:var(--tb-red);
  margin-top: 9px;
  line-height: 1.3;
}
.thebaselp-common .tb-left__item.is-active{
  background:rgba(255,255,255,.35);
}

/* 左ボタン */
.thebaselp-common .tb-left__buttons{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.thebaselp-common .tb-ctaBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 12px;
  font-weight:900;
  border:1px solid #000;
}
.thebaselp-common .tb-ctaBtn--red{
  background:var(--tb-red);
  color:#fff;
  border-color:var(--tb-red);
}
.thebaselp-common .tb-ctaBtn--blue{
  background:var(--tb-blue);
  color:#fff;
  border-color:var(--tb-blue);
}
@media screen and (max-width: 640px) {
.thebaselp-common .tb-ctaBtn{
  font-size: 17px;
}
}
/* 右 */
.thebaselp-common .tb-reasons__right{
  background:#fff;
}

/* Right top block */
.thebaselp-common .tb-rightTop{
  border-bottom:1px solid #000;
  padding:18px 20px;
}
.thebaselp-common .tb-rightTop__cap{
  font-weight:700;
  color:#333;
  margin-bottom:10px;
}
.thebaselp-common .tb-rightTop__box{
  border:1px solid #000;
  padding:14px;
}
.thebaselp-common .tb-rightTop__label{
  font-weight:900;
  margin-bottom:10px;
}
.thebaselp-common .tb-rightTop__chart{
  display:grid;
  grid-template-columns:220px 220px 1fr;
  gap:14px;
  align-items:end;
}
.thebaselp-common .tb-bar{
  height:120px;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  font-weight:900;
  color:#fff;
  padding-bottom:10px;
}
.thebaselp-common .tb-bar--gray{background:#777}
.thebaselp-common .tb-bar--red{background:var(--tb-red)}
.thebaselp-common .tb-bar__minus{
  position:absolute;
  top:-26px;
  left:50%;
  transform:translateX(-50%);
  border:2px dashed var(--tb-red);
  padding:4px 10px;
  color:#111;
  background:#fff;
  font-weight:900;
  font-size:12px;
}
.thebaselp-common .tb-balloon{
  border:2px solid var(--tb-red);
  padding:14px;
  font-weight:900;
  color:#111;
  position:relative;
  word-break:break-word;
}
.thebaselp-common .tb-balloon:before{
  content:"";
  position:absolute;
  left:-10px;
  top:50%;
  width:0;
  height:0;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-right:10px solid var(--tb-red);
  transform:translateY(-50%);
}

/* =========================================================
  Reason sections
========================================================= */
.thebaselp-common .tb-reasonSec{
  padding: 48px;
  border-bottom: 1px solid #333;
}
.thebaselp-common .tb-reasonSec:last-child {
  border-bottom: none;
}
.thebaselp-common .tb-reasonSec__num{
  font-weight:900;
  font-size:80px;
  line-height:1;
  color:var(--tb-red);
}

.thebaselp-common .tb-reasonSec__ttl{
  margin:6px 0 0;
  font-weight:900;
  font-size:44px;
  color:var(--tb-red);
  line-height:1.3;
}

.thebaselp-common .tb-reasonSec__sub{
  margin-top: 24px;
  font-weight:900;
  color: #000;
  font-size: 36px;
  line-height: 1.4;
}

.thebaselp-common .tb-reasonSec__lead{
  margin: 14px auto 30px;
  padding: 16px 20px;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  background: #d31f1f;
  text-align: center;
  position: relative;
  max-width: 900px; /* 幅調整（お好みで） */
}

/* 下の三角 */
.thebaselp-common .tb-reasonSec__lead::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;

  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #d31f1f;
}

.thebaselp-common .tb-reasonSec__content{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:start;
}

.thebaselp-common .tb-text p{margin:0 0 10px}
.thebaselp-common .tb-text ul{margin:0;padding-left:18px}
.thebaselp-common .tb-text li{margin:6px 0}

.thebaselp-common .tb-reasonSec p.text-p {
  font-size: 16px;
  margin-bottom: 8px;
}
/* 18 grid */
.thebaselp-common .tb-grid18{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:8px;
}
.tb-grid18-notice {
  margin-top: 10px;
}
.tb-grid18-notice p {
  font-size: 14px;
  color: #888;
}
/* card */
.thebaselp-common .tb-gridItem{
  border:2px solid var(--tb-red);
  padding: 20px 10px;
  min-height:120px;
  display:flex;
  flex-direction:column;
  gap:10px;
  height:100%;
  background:#fff;
}

/* heading */
.thebaselp-common .tb-gridItem__head{
  display:flex;
  align-items:center;
  gap:10px;
}

/* number */
.thebaselp-common .tb-gridItem__n{
  width: 40px;
  height: 60px;
  flex:0 0 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color:var(--tb-red);
  color:#fff;
  font-weight:700;
  font-size:23px;
  line-height:1;
}

/* title */
.thebaselp-common .tb-gridItem__t{
  font-weight:900;
  color:var(--tb-red);
  font-size:20px;
  line-height:1.35;
}
.thebaselp-common .tb-gridItem__t span {
  display: block;
  font-size: 15px;
}
/* description */
.thebaselp-common .tb-gridItem__d{
  font-size:14px;
  line-height:1.6;
  margin:0;
  color:#333;
  font-weight:700;
}

/* image */
.thebaselp-common .tb-gridItem__i{
  margin-top:auto;
}

.thebaselp-common .tb-gridItem__i img{
  width:100%;
  height:auto;
  display:block;
}

/* tablet / smartphone: 2 columns */
@media (max-width:900px){
  .thebaselp-common .tb-grid18{
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
  }

  .thebaselp-common .tb-gridItem{
    padding:10px;
  }

  .thebaselp-common .tb-gridItem__n{
    width:36px;
    height:36px;
    flex-basis:36px;
    font-size:14px;
  }

  .thebaselp-common .tb-gridItem__t{
    font-size:15px;
  }

  .thebaselp-common .tb-gridItem__d{
    font-size:14px;
  }
}

@media screen and (max-width: 540px) {
  .thebaselp-common .tb-reasonSec__sub{
  font-size: 22px;
}
.thebaselp-common .tb-reasonSec p.text-p {
  font-size: 15px;
  margin-bottom: 8px;
}
}
/* very small device: 1 column */
@media (max-width:480px){
  .thebaselp-common .tb-grid18{
    grid-template-columns:1fr;
  }
}
.thebaselp-common #tb-02 img {
  max-width: 60%;
  margin: 0 auto;
}
@media (max-width:600px){
.thebaselp-common #tb-02 img {
  max-width: 100%;
}
}
.thebaselp-common .tb-reasonSec-img {
  margin-top: 24px;
}
/* =========================================================
  Bottom CTA / Contact
========================================================= */
.thebaselp-common .tb-bottomCta{
  padding:26px 0;
  background:var(--tb-red);
  color:#fff;
}
.thebaselp-common .tb-bottomCta__inner{
  max-width:var(--tb-max);
  margin:0 auto;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.thebaselp-common .tb-bottomCta__title{font-weight:900}
.thebaselp-common .tb-bottomCta__btns{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.thebaselp-common .tb-bottomBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  font-weight:900;
  border:1px solid #fff;
  color:#fff;
}
.thebaselp-common .tb-bottomBtn--red{background:transparent}
.thebaselp-common .tb-bottomBtn--blue{
  background:var(--tb-blue);
  border-color:var(--tb-blue);
}

.thebaselp-common .tb-contact{padding:26px 0}
.thebaselp-common .tb-contact__inner{
  max-width:var(--tb-max);
  margin:0 auto;
  padding:0 16px;
}
.thebaselp-common .tb-contact__box{
  border:1px solid #000;
  padding:18px;
}
.thebaselp-common .tb-contact__label{font-weight:900}
.thebaselp-common .tb-contact__tel{
  font-weight:900;
  font-size:28px;
  margin-top:8px;
}
.thebaselp-common .tb-contact__note{
  color:var(--tb-muted);
  font-weight:700;
  margin-top:6px;
}

/* =========================================================
  Responsive
========================================================= */
@media (max-width: 980px){
  .thebaselp-common .tb-header__link,
  .thebaselp-common .tb-header__sep{display:none}
  .thebaselp-common .tb-burger{display:inline-flex}
  .thebaselp-common .tb-header__btn{padding:10px 12px}

  .thebaselp-common .tb-fv__inner{grid-template-columns:1fr}
  .thebaselp-common .tb-mid01__inner{grid-template-columns:1fr}
    .thebaselp-common .tb-mid02__inner{grid-template-columns:1fr}
      .thebaselp-common .tb-mid03__inner{grid-template-columns:1fr}
        .thebaselp-common .tb-mid04__inner{grid-template-columns:1fr}

  /* 縦積み */
  .thebaselp-common .tb-reasons__grid{
    display:block;
    min-height:auto;
    max-width:none;
    margin:0;
  }
  .thebaselp-common .tb-reasons__grid.is-left-fixed .tb-reasons__right{
    margin-left:0;
  }
  .thebaselp-common .tb-reasons__left{
    position:static !important;
    top:auto !important;
    left:auto !important;
    width:auto !important;
    border-right:0;
    border-bottom:1px solid #000;
    padding:18px 16px;
  }
  .thebaselp-common .tb-reasons__left.is-fixed,
  .thebaselp-common .tb-reasons__left.is-bottom{
    position:static !important;
  }

  .thebaselp-common .tb-left__titleTop,
  .thebaselp-common .tb-left__titleMid{font-size:26px}
  .thebaselp-common .tb-left__titleBig{font-size:52px}
  .thebaselp-common .tb-left__buttons{
    grid-template-columns:1fr;
    gap:10px;
  }

  .thebaselp-common .tb-rightTop__chart{
    grid-template-columns:1fr;
    align-items:start;
  }
  .thebaselp-common .tb-balloon:before{display:none}

  .thebaselp-common .tb-reasonSec__content{grid-template-columns:1fr}
  .thebaselp-common .tb-grid18{grid-template-columns:repeat(3, 1fr)}
}

@media (max-width: 540px){
  .thebaselp-common .tb-logo{font-size:24px}
  .thebaselp-common .tb-reasonSec__num{font-size:64px}
  .thebaselp-common .tb-reasonSec__ttl{font-size:30px}
  .thebaselp-common .tb-reasonSec__lead 
  {
    font-size:16px;
    margin-top: 16px;
  }
  .thebaselp-common .tb-grid18 {
    grid-template-columns:repeat(1, 1fr);
  }
  .thebaselp-common .tb-gridItem {
    padding: 16px;
  }
  .thebaselp-common .tb-gridItem__n{
    width:45px;
    height:50px;
    flex-basis:45px;
    font-size:16px;
  }
  .thebaselp-common .tb-gridItem__t {
    font-size: 19px;
  }
  .tb-mid03__inner .flexbox {
    gap: 10px;
  }
  .thebaselp-common .tb-mid03 .flex-mid03-inner span {
    font-size: 22px;
    border-bottom: solid 1px #fff;
    padding-bottom: 7px;
  }
  .thebaselp-common .tb-mid03 .flex-mid03-inner {
    font-size: 17px;
    line-height: 1.4;
  }
}
/* ===============================
  Header を確実に追従固定（fixed）
=============================== */
.thebaselp-common .tb-header{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: #fff;
  box-shadow: 2px 2px 5px #999;
}

/* ヘッダー分の余白（JSで --tb-header-h を入れる） */
.thebaselp-common{
  padding-top: var(--tb-header-h, 0px);
}
/* 左カラム幅は常に同じ（fixed時だけ変わらないように） */
.thebaselp-common .tb-reasons__left{
  width: var(--tb-fixed-width) !important;
  flex: 0 0 var(--tb-fixed-width);
}

/* gridの左列も同じ値に揃える */
.thebaselp-common .tb-reasons__grid{
  grid-template-columns: var(--tb-fixed-width) 1fr !important;
}

/* bottom時の幅も同じ */
.thebaselp-common .tb-reasons__left.is-bottom{
  width: var(--tb-fixed-width) !important;
}
/* ============================================
   SP
============================================ */
@media (max-width:900px){
  .thebaselp-common .tb-reasons__left{
  width: 100% !important;
  flex: 0 0 var(--tb-fixed-width);
}
.thebaselp-common .tb-reasons__left{
    position:static !important;
    top:auto !important;
    left:auto !important;
    width:auto !important;
    border-right:0;
    border-bottom:1px solid #000;
    padding: 40px 24px;
  }
.thebaselp-common .tb-left__titleBig {
  font-size:46px
}
.thebaselp-common .tb-left__titleTop,
.thebaselp-common .tb-left__titleBig {
  text-align: center;
}
.thebaselp-common .tb-left__title {
  margin-bottom: 24px;
}
.thebaselp-common .tb-reasonSec {
  padding: 48px 16px;
}
.thebaselp-common .contact h4 {
  font-size: 1.5rem;
}
.thebaselp-common .contact .txt_1 img {
    width: 85%;
    margin: 10px auto;
}
.thebaselp-common .contact .red_box .decor1 {
  width: 100%;
}
.thebaselp-common .contact .red_box .col_l {
  width: 100%;
}
.thebaselp-common .contact .red_box .col_l .txt {
  font-size: clamp(.9rem, 1.5vw, 1.5rem);
}
.thebaselp-common .contact .red_box figure {
  width: 60%;
  margin: 0px auto 24px;
}
.thebaselp-common .contact .lower_box .col_l {
  width: 100%;
}
.thebaselp-common .contact .lower_box .btn_wrap {
  padding: 0.35rem 0;
}
.thebaselp-common .contact .lower_box .btn_wrap .contact_btn span {
    font-size: 1.5rem;
}
.thebaselp-common .contact .lower_box figure {
  width: 100%;
  margin-top: 24px;
}
.lower_tel {
    font-size: 38px;
}
.thebaselp-common .thebaselp-footer .thebaselp-footer__inner-logo img {
  max-width: 130px;
}
}
@media screen and (max-width: 540px) {
.thebaselp-common .contact .red_box .col_l .txt {
    font-size: clamp(2rem, 1.5vw, 1.5rem);
    line-height: 1.4;
    margin-top: 16px;
  }
.thebaselp-common .contact h4 {
  font-size: 2.2rem;
}
}

/* フローティングバナーセクション */
@media screen and (max-width: 640px) {
    .page-id-356 .flex-floating .flex-box-inner,
    .parent-pageid-356 .flex-floating .flex-box-inner {
        width: 100%;
        -webkit-flex-basis: 100%;
        flex-basis: 100%;
    }
    .page-id-356 .flex-floating a,
    .parent-pageid-356 .flex-floating a {
    display: block;
    padding: 1rem 0.25rem;
    font-weight: bold;
}
.page-id-356 .flex-floating a:hover,
.parent-pageid-356 .flex-floating a:hover {
    background: #CB356B;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #CB356B, #BD3F32);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #CB356B, #BD3F32);
color: #fff;
}
    .page-id-356 .flex-floating .floating-text,
    .parent-pageid-356 .flex-floating .floating-text {
    display: inline-block;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0px;
}
    .page-id-356 .flex-floating i,
    .parent-pageid-356 .flex-floating i {
        font-size: 19px;
        line-height: 1;
        padding-left: 3px;
    }
    .flex-floating .inner-thebase {
    background: #CB356B;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #BD3F32, #CB356B);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #BD3F32, #CB356B);
}
}