/* ===============================
   Base / Reset
================================= */
:root{
  --main:#006ab7;
  --white:#ffffff;
  --black:#000000;

  /* fixed nav */
  --fixed-bg: rgba(18, 20, 24, 0.78);
  --fixed-bd: rgba(255,255,255,0.10);
  --fixed-tx: rgba(255,255,255,0.92);
  --fixed-accent: #006ab7;
}

*{ box-sizing:border-box; }
img{ max-width:100%; height:auto; display:block; }

html{ scroll-behavior:smooth; }

.uc-lp{
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.uc-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

/* 折り返し禁止（必要な箇所だけHTMLで使う） */
.uc-nowrap{ white-space: nowrap; }

/* ===============================
   Hero
================================= */

.uc-hero{
  color: var(--white);
  padding: 60px 0 70px;

  /* まず土台色を固定（これがあると真っ白事故が起きにくい） */
  background-color: ;

  /* グラデは background-image に分ける（backgroundの上書き事故を防ぐ） */
  background-image:
    radial-gradient(900px 420px at 20% 10%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(135deg, #696969, #d6d6d6);
}

.uc-heroVisual{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.uc-heroVisual img{
  width: 100%;
  height: auto;
  display: block;
}

.uc-title{
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 12px;
}

/* 強みバッジ：形はそのまま / 目立たせる上書き */
.uc-badge{
  /* 形状は触らない（padding / radius は現状維持） */

  /* 目立たせる4点セット */
  background: rgba(137,195,235,0.28);          /* #89c3eb を薄く敷く */
  border: 1px solid rgba(255,255,255,0.40);    /* 白フチを足して輪郭を出す */
  box-shadow:
    0 10px 22px rgba(0,0,0,0.14),              /* 浮かせる */
    inset 0 1px 0 rgba(255,255,255,0.35);      /* 上にうっすら光 */
  color: #ffffff;                               /* 文字は白で抜く */
  text-shadow: 0 1px 0 rgba(0,0,0,0.18);       /* 白文字が沈むの防止 */
}

/* 左の丸ポチ：光らせて“強み感” */
.uc-badge::before{
  background: #ffffff;                          /* ポチは白固定で締まる */
  box-shadow:
    0 0 0 3px rgba(137,195,235,0.25),           /* #89c3eb の輪 */
    0 6px 14px rgba(0,0,0,0.18);                /* 立体 */
}

/* CTA */
.uc-ctaRow{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:flex-end; /* 下端揃え */
}

.uc-ctaCol{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}

/* Buttons */
.uc-btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, opacity .22s ease;
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
}
.uc-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,0.14);
}
.uc-btn:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(0,0,0,0.10);
}

.uc-btnPrimary{
  background:#ffffff;
  color:#4A5560;
  border:2px solid #ffffff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.uc-btnPrimary:hover{
  background:#f2f4f6;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.uc-btnGhost{
  background: #393e4f;
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  opacity: 1;
}
.uc-btnGhost:hover{
  background:rgba(255,255,255,0.10);
}

/* ※オンラインストアとは？（下線を“残す”） */
.uc-onlineInfo{
  display:inline-block;
  font-size:13px;
  color:rgba(255,255,255,0.88);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  opacity:0.92;
  padding: 0 2px 2px; /* 下端がボタンと気持ち揃う */
  transition: opacity .2s ease;
}
.uc-onlineInfo:hover{ opacity:1; }

/* ===============================
   Sections
================================= */
.uc-section{
  padding:90px 0;
  background:#f9fafb;
}

.uc-h2{
  font-size:28px;
  font-weight:900;
  margin:0 0 30px;
  position:relative;
  padding-bottom:12px;
}
.uc-h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:56px;
  height:4px;
  background:var(--main);
  border-radius:999px;
}

/* ===============================
   Reasons (物足りなさ対策)
================================= */
.uc-reasonGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}

.uc-reasonCard{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}

.uc-reasonIcon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,106,183,0.10);
  margin-bottom:10px;
  font-size:18px;
}

.uc-reasonTitle{
  margin:0 0 6px;
  font-size:15px;
  font-weight:900;
  letter-spacing:.02em;
}

.uc-reasonText{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color: rgba(0,0,0,0.72);
  text-wrap: balance;
}

.uc-noteBox{
  margin-top:18px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 14px 16px;
}
.uc-noteBoxText{
  margin:0;
  font-size:14px;
  line-height:1.8;
  color: rgba(0,0,0,0.78);
  text-wrap: balance;
}
.uc-inlineLink{
  color: var(--main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===============================
   Car Type Grid (Cards)
================================= */
.uc-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.uc-card{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:130px;
  padding:24px 24px 24px 110px;
  border-radius:16px;
  text-decoration:none;
  color:#111;
  border:1px solid rgba(0,106,183,0.14);
  background:linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow:0 10px 26px rgba(0,0,0,0.06);
  transition: transform .30s cubic-bezier(.4,0,.2,1),
              box-shadow .30s cubic-bezier(.4,0,.2,1),
              border-color .22s ease,
              background .22s ease;
}
.uc-card:hover{
  transform: translateY(-6px) scale(1.02);
  border-color:rgba(0,106,183,0.28);
  background:linear-gradient(180deg, #ffffff 0%, #eef6fc 100%);
  box-shadow:0 18px 44px rgba(0,0,0,0.10);
}

.uc-cardTitle{
  font-weight:800;
  font-size:18px;
  display:block;
  margin-bottom:10px;
}
.uc-cardMeta{
  font-size:14px;
  color:rgba(0,0,0,0.72);
}

/* Card icon */
.uc-card::before{
  content:"";
  position:absolute;
  left:26px;
  top:50%;
  transform:translateY(-50%);
  width:60px;
  height:60px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
}

/* Icon mapping */
.uc-card--compact::before{ background-image:url("../images/icon-compact.png"); }
.uc-card--sedan::before{ background-image:url("../images/icon-sedan.png"); }
.uc-card--minivan::before{ background-image:url("../images/icon-minivan.png"); }
.uc-card--suv::before{ background-image:url("../images/icon-suv.png"); }
.uc-card--hybrid::before{ background-image:url("../images/icon-hybrid.png"); }
.uc-card--lexus::before{ background-image:url("../images/icon-lexus.png"); }

/* Card arrow */
.uc-card::after{
  content:"";
  position:absolute;
  right:22px;
  top:50%;
  transform:translateY(-50%) rotate(45deg);
  width:14px;
  height:14px;
  border-right:2px solid var(--main);
  border-top:2px solid var(--main);
  transition: transform .25s ease;
}
.uc-card:hover::after{
  transform:translateY(-50%) rotate(45deg) translate(4px, -4px);
}

/* ===============================
   Budget (カード風)
================================= */
.uc-gridBudget{ grid-template-columns:repeat(6, 1fr); }

.uc-pill{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:64px;
  padding:16px 18px;
  border-radius:16px;
  font-weight:800;
  color:#111;
  text-decoration:none;

  border:1px solid rgba(0,106,183,0.14);
  background:linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow:0 10px 26px rgba(0,0,0,0.06);

  transition: transform .30s cubic-bezier(.4,0,.2,1),
              box-shadow .30s cubic-bezier(.4,0,.2,1),
              border-color .22s ease,
              background .22s ease;
}
.uc-pill:hover{
  transform:translateY(-4px);
  border-color:rgba(0,106,183,0.28);
  background:linear-gradient(180deg, #ffffff 0%, #eef6fc 100%);
  box-shadow:0 18px 44px rgba(0,0,0,0.10);
}

/* ===============================
   Online section (banner centered)
================================= */
.uc-section--online{ background:#f9fafb; }

.uc-onlineHeader{
  text-align:center;
  margin-bottom:18px;
}

.uc-onlineH2{
  margin:0 0 6px;
  font-size:30px;
  font-weight:900;
  letter-spacing:.02em;
}

.uc-onlineLead{
  margin:0;
  font-size:13px;
  line-height:1.8;
  color: rgba(0,0,0,0.62);
  text-wrap: balance;
}

/* バナー */
.uc-bannerLink{
  display:block;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
  transition:transform .25s ease, box-shadow .25s ease;
}
.uc-bannerLink:hover{
  transform:translateY(-4px);
  box-shadow:0 35px 80px rgba(0,0,0,0.16);
}
.uc-banner{
  width:100%;
  height:auto;
  display:block;
}

/* ===============================
   Trust (既存)
================================= */
.trust-section{
  background:#f4f6f8;
  border-radius:30px;
  padding:80px 30px;
  max-width:1100px;
  margin:60px auto 0;
}

.trust-section h2{
  font-size:28px;
  font-weight:900;
  margin:0 0 40px;
  position:relative;
  padding-bottom:12px;
  letter-spacing: 0.5px;
}

/* 見出し下の線：中央にしたい場合は left:50% + translate を使う*/
.trust-section h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:56px;
  height:4px;
  background:var(--main);
  border-radius:999px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  margin-bottom:60px;
}

.trust-grid a,
.trust-grid div{
  display:block;
  text-decoration:none;
  color:inherit;
  background:#fff;
  border-radius:20px;
  padding:22px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 14px 40px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.trust-grid a:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

.trust-grid img{
  border-radius:14px;
  margin-bottom:15px;
}

.trust-grid p{
  font-size:14px;
  line-height:1.7;
  text-wrap: balance;
}

/* Logos + description cards */
.trust-logos{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:30px;
}
.trust-logoCard{
  display:block;
  text-decoration:none;
  color:inherit;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:16px;
  padding:18px;
  box-shadow:0 10px 34px rgba(0,0,0,0.06);
}
.trust-logos img{ border-radius:12px; }
.trust-logoText{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.7;
  color:rgba(0,0,0,0.75);
  text-wrap: balance;
}

/* ===============================
   Fixed Nav (glass)
================================= */
.uc-fixedNav{
  position:fixed;
  left:0;
  right:0;
  bottom:14px;
  z-index:9999;
  pointer-events:none;
}
.uc-fixedNav__inner{
  pointer-events:auto;
  width:min(1200px, calc(100% - 24px));
  margin:0 auto;
  background:var(--fixed-bg);
  border:1px solid var(--fixed-bd);
  border-radius:18px;
  padding:10px 12px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:0 18px 44px rgba(0,0,0,0.35);
}

.uc-fixedNav__item{
  flex:1 1 0;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  text-decoration:none;
  color:var(--fixed-tx);
  padding:10px 10px;
  border-radius:14px;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.uc-fixedNav__label{
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.uc-fixedNav__item:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-2px);
  box-shadow:0 10px 26px rgba(0,0,0,0.25);
}
.uc-fixedNav__item:active{
  transform:translateY(0);
  box-shadow:0 6px 18px rgba(0,0,0,0.20);
}

/* 固定バー分の余白 */
body{ padding-bottom:110px; }

/* ===============================
   Responsive
================================= */
@media (max-width:1023px){
  .uc-grid{ grid-template-columns:repeat(2, 1fr); }
  .uc-gridBudget{ grid-template-columns:repeat(3, 1fr); }
  .trust-grid{ grid-template-columns:repeat(2, 1fr); }
  .uc-reasonGrid{ grid-template-columns:repeat(2, 1fr); }

  .uc-fixedNav__label{ font-size:12px; }
}

@media (max-width:767px){
  .uc-title{ font-size:26px; }

  .uc-grid,
  .uc-gridBudget,
  .trust-grid,
  .trust-logos{ grid-template-columns:1fr; }

  .uc-reasonGrid{ grid-template-columns:1fr; }

  .uc-ctaRow{ flex-direction:column; align-items:flex-start; }
  .uc-ctaCol{ width:100%; }

  .uc-card{
    padding-left:78px;
    min-height:95px;
  }
  .uc-card::before{
    width:34px;
    height:34px;
    left:20px;
  }

  .uc-pill{ min-height:58px; }

  /* “動きすぎ”防止 */
  .uc-card:hover,
  .uc-pill:hover,
  .uc-btn:hover{ transform:none; }

  /* 固定バー：横スクロール */
  .uc-fixedNav{ bottom:10px; }
  .uc-fixedNav__inner{
    justify-content:flex-start;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    gap:8px;
    padding:10px;
  }
  .uc-fixedNav__item{
    flex:0 0 auto;
    padding:10px 12px;
  }
  body{ padding-bottom:120px; }
}

/* ===============================
   Hero CTA row：ボタン横に注釈リンクを戻す
================================= */
.uc-ctaRow--withNote{
  align-items: flex-end; /* ボタン下端に揃える */
}

.uc-ctaCol{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* ※オンラインストアとは？：下線あり（復活） */
.uc-onlineInfo{
  font-size: 12px;
  color: rgba(255,255,255,0.90);
  text-decoration: underline;     /* ← ここが「下線」本体 */
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  opacity: 0.9;
  transition: opacity .2s ease;
}
.uc-onlineInfo:hover{ opacity: 1; }

/* 店舗一覧リンク（CTA行の右側に置ける、控えめだけど見える） */
.uc-ctaLink{
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.uc-ctaLink:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.38);
}

/* スマホ：CTAを縦並びにしても注釈はボタン直下 */
@media (max-width: 767px){
  .uc-ctaRow--withNote{
    align-items: stretch;
  }
  .uc-ctaLink{
    margin-left: 0;
    width: fit-content;
  }
}

/* ボタン行：下端で揃える */
.uc-ctaRow{
  align-items: flex-end;
}

/* オンラインストアへ + ※オンラインストアとは？ を横並び＆下端揃え */
.uc-ctaPair{
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

/* ※オンラインストアとは？：下線を出す＆ボタン下端に揃うよう微調整 */
.uc-onlineInfo{
  display: inline-block;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  padding-bottom: 10px;  /* ← ここで“ボタンの下部”に揃える */
  font-size: 12px;
  color: rgba(255,255,255,0.90);
  opacity: 0.9;
}

/* スマホ：横幅が足りない時は注釈をボタンの下へ（見やすく） */
@media (max-width: 767px){
  .uc-ctaPair{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .uc-onlineInfo{
    padding-bottom: 0;
  }
}

/* CTA：2段構成で被り防止 */
.uc-ctaBlock{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.uc-ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:flex-end;
}

.uc-ctaPair{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:flex-end;
}

/* ※オンラインストアとは？：ボタン下端に揃える + 下線あり */
.uc-onlineInfo{
  display:inline-block;
  font-size:12px;
  color: rgba(255,255,255,0.92);
  opacity:.9;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  padding-bottom: 10px; /* ボタン下端に揃える */
}

.uc-onlineInfo:hover{ opacity:1; }

/* 店舗一覧：サブボタン */
.uc-ctaSub{ display:flex; }

.uc-btnSub{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.95);
  box-shadow:none;
}

.uc-btnSub:hover{
  background: rgba(255,255,255,0.16);
}

/* スマホ：縦並びで崩れ防止 */
@media (max-width: 767px){
  .uc-ctaRow{ flex-direction:column; align-items:flex-start; }
  .uc-ctaPair{ flex-direction:column; align-items:flex-start; gap:6px; }
  .uc-onlineInfo{ padding-bottom:0; }
}

.uc-badge{
  display:flex;
  align-items:center;
  gap:8px;

  padding:10px 16px;
  border-radius:999px;

  background: linear-gradient(135deg, #006ab7, #1c7fd1);
  border: none;

  color:#ffffff;
  font-weight:800;
  letter-spacing:.02em;

  box-shadow: 0 12px 28px rgba(0,106,183,0.35);
  transform: translateY(0);
  transition: all .25s ease;
}

.uc-badge:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,106,183,0.45);
}

.uc-badge{
  position:relative;
  padding:10px 14px 12px;
  border-radius:14px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);

  color: rgba(255,255,255,0.92);
  font-weight:900;

  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.uc-badge::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:6px;
  height:3px;
  border-radius:999px;
  background: rgba(137,195,235,0.75); /* #89c3eb寄り */
}

.uc-badge::before{ display:none; }

/* 強みバッジ：スクショの形状に戻す（これをCSS末尾に追記） */
.uc-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 16px;
  border-radius: 999px;

  /* スクショっぽい“薄グレー＋内側ハイライト” */
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);

  /* うっすら立体 */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 8px 18px rgba(0,0,0,0.12);

  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 0 rgba(0,0,0,0.18);
}

.uc-badge::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;

  background: rgba(255,255,255,0.90);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
  flex: 0 0 auto;
}

/* DMS上でHero内の余白が潰れる対策 */
.uc-hero .uc-badges{
  margin: 0 0 18px !important;  /* 強み→CTAの間 */
  padding: 0 !important;
}

.uc-hero .uc-ctaRow{
  margin-top: 0 !important;
}


/* ===============================
   Hero: Quick Search chips
================================= */
.uc-quickSearch{
  margin: 0 0 18px;
}
.uc-quickSearch__label{
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}
.uc-quickChips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.uc-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  color:rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.uc-chip:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.34);
}

/* ===============================
   Online Store 강화
================================= */
.uc-onlineActions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin: 18px 0 0;
}
.uc-btnSmall{
  padding: 12px 18px;
  font-size: 14px;
}
.uc-onlinePoints{
  list-style:none;
  padding:0;
  margin: 16px 0 0;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px 14px;
  color: rgba(0,0,0,0.70);
  font-size: 13px;
}
.uc-onlinePoints li{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.04);
}

/* ===============================
   Bottom CTA
================================= */
.uc-bottomCta{
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #f9fafb 0%, #eef2f6 100%);
}
.uc-bottomCta__title{
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
  text-align:center;
}
.uc-bottomCta__lead{
  margin: 0 0 22px;
  text-align:center;
  color: rgba(0,0,0,0.68);
  font-size: 14px;
}
.uc-bottomCta__actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Small screens */
@media (max-width: 767px){
  .uc-quickSearch__label{ font-size: 12px; }
  .uc-chip{ font-size: 12px; padding: 10px 12px; }
  .uc-onlinePoints{ justify-content:flex-start; }
  .uc-bottomCta__title{ font-size: 22px; }
}

/* サービスを詳しくボタンの文字消え対策 */
.uc-onlineActions .uc-btnGhost:hover{
  background:#2f3540;
  color:#ffffff;
  border-color:#2f3540;
}

/* 店舗一覧ボタンを見やすく */
.uc-btnSub{
  background:#ffffff;
  color:#2c3e50;
  border:1px solid rgba(0,0,0,0.12);
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.uc-btnSub:hover{
  background:#f5f7f9;
  color:#000000;
}

.uc-btnSub{
  background:#ffffff;
  color:#2c3e50;
  border:1px solid rgba(0,0,0,0.12);
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.uc-btnGhost:hover{
  background: rgba(0,106,183,0.25);
  color:#ffffff;
}

#by-type, #by-budget { scroll-margin-top: 120px; }