@charset "UTF-8";
/* テレアポリスト作成 LP 専用スタイル（/teleapo/list-lp） */
/* 全ルールを #tll 配下にスコープし、サイト全体のスタイルと衝突しないようにする */

#tll {
  --tll-orange: #ff8924;
  --tll-orange-dark: #ec7411;
  --tll-blue: #1458e4;
  --tll-blue-dark: #0c3b9e;
  --tll-ink: #19283c;
  --tll-gray: #5b6675;
  --tll-line: #e2e8f0;
  --tll-bg: #f4f7fb;
  color: var(--tll-ink);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

#tll *,
#tll *::before,
#tll *::after {
  box-sizing: border-box;
}

#tll img {
  max-width: 100%;
  height: auto;
}

#tll .tll-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

#tll .tll-section {
  padding: 64px 0;
}

#tll .tll-section.is-gray {
  background: var(--tll-bg);
}

/* セクション見出し */
#tll .tll-heading {
  text-align: center;
  margin: 0 0 40px;
}

#tll .tll-heading h2 {
  font-size: 33px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  margin: 0;
}

#tll .tll-heading h2 .tll-mark {
  color: var(--tll-blue);
}

/* ========== ヘッダー ========== */
#tll .tll-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--tll-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

#tll .tll-header .tll-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

#tll .tll-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

#tll .tll-logo img {
  height: 40px;
  width: auto;
  display: block;
}

#tll .tll-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

#tll .tll-header-tel {
  margin: 0;
  text-align: right;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

#tll .tll-header-tel a {
  color: inherit;
  text-decoration: none;
}

#tll .tll-header-tel i {
  margin-right: 5px;
  font-size: 14px;
}

#tll .tll-header-tel span {
  font-size: 19px;
  letter-spacing: .02em;
}

#tll .tll-header-tel small {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
  font-size: 11px;
}

#tll .tll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  cursor: pointer;
  line-height: 1.3;
  text-align: center;
}

#tll .tll-btn-trial {
  color: #fff;
  background: var(--tll-orange);
  padding: 10px 18px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255, 137, 36, .3);
}

#tll .tll-btn-trial:hover {
  background: var(--tll-orange-dark);
}

/* オレンジ CTA ボタン */
#tll .tll-btn-cta {
  color: #fff;
  background: var(--tll-orange);
  padding: 18px 36px;
  font-size: 19px;
  box-shadow: 0 8px 20px rgba(255, 137, 36, .35);
}

#tll .tll-btn-cta:hover {
  background: var(--tll-orange-dark);
  transform: translateY(-2px);
}

#tll .tll-btn-cta .tll-btn-icon {
  font-size: 17px;
}

#tll .tll-btn-ghost {
  color: var(--tll-blue);
  background: #fff;
  border: 2px solid var(--tll-blue);
  padding: 16px 32px;
  font-size: 17px;
}

#tll .tll-btn-ghost:hover {
  background: #eef3fd;
}

/* ========== ファーストビュー ========== */
#tll .tll-fv {
  background: linear-gradient(180deg, #eaf1fe 0%, #f7faff 100%);
  padding: 56px 0 64px;
}

#tll .tll-fv .tll-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

#tll .tll-fv-text {
  flex: 1 1 52%;
  min-width: 0;
}

#tll .tll-fv-visual {
  flex: 1 1 48%;
  position: relative;
  text-align: center;
}

#tll .tll-badge {
  display: inline-block;
  background: var(--tll-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}

#tll .tll-fv h1 {
  font-size: 37px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 20px;
  letter-spacing: 0;
}

#tll .tll-fv h1 .tll-mark {
  color: var(--tll-blue);
  white-space: nowrap;
}

#tll .tll-fv-lead {
  font-size: 16px;
  color: var(--tll-gray);
  margin: 0 0 24px;
}

#tll .tll-fv-highlight {
  background: #fff;
  border: 2px solid var(--tll-blue);
  border-radius: 10px;
  padding: 16px 22px;
  margin: 0 0 28px;
}

#tll .tll-fv-highlight .tll-fv-highlight-main {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--tll-blue);
  line-height: 1.5;
}

#tll .tll-fv-highlight .tll-fv-highlight-main strong {
  font-size: 28px;
  color: var(--tll-orange);
}

#tll .tll-fv-highlight .tll-fv-highlight-sub {
  display: block;
  font-size: 14px;
  color: var(--tll-ink);
  margin-top: 4px;
}

#tll .tll-fv-note {
  font-size: 15px;
  font-weight: 700;
  color: var(--tll-ink);
  margin: 16px 0 0;
}

#tll .tll-fv-note strong {
  color: var(--tll-orange);
  font-size: 18px;
}

/* FV ビジュアル上のフローティングラベル */
#tll .tll-fv-img {
  width: 100%;
  max-width: 520px;
}

#tll .tll-fv-tags {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

#tll .tll-fv-tags li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--tll-line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(20, 88, 228, .1);
}

#tll .tll-fv-tags li i {
  color: var(--tll-blue);
  font-size: 15px;
}

/* ========== お悩み ========== */
#tll .tll-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#tll .tll-problem-card {
  background: #fff;
  border: 1px solid var(--tll-line);
  border-radius: 12px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .03);
}

#tll .tll-problem-card .tll-problem-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #eef3fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tll-blue);
  font-size: 26px;
}

#tll .tll-problem-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

#tll .tll-problems-conclusion {
  text-align: center;
  margin: 40px 0 0;
  font-size: 24px;
  font-weight: 800;
}

#tll .tll-problems-conclusion .tll-mark {
  color: var(--tll-orange);
}

/* ========== 選ばれる理由 ========== */
#tll .tll-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

#tll .tll-needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

#tll .tll-needs-lead {
  text-align: center;
  margin: 0 0 32px;
  font-size: 16px;
  color: var(--tll-gray);
  line-height: 1.9;
}

#tll .tll-reason-card {
  background: #fff;
  border: 1px solid var(--tll-line);
  border-radius: 12px;
  padding: 30px 22px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

#tll .tll-reason-card .tll-reason-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tll-blue);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

#tll .tll-reason-card .tll-reason-icon {
  text-align: center;
  color: var(--tll-blue);
  font-size: 40px;
  margin: 10px 0 16px;
}

#tll .tll-reason-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.5;
}

#tll .tll-reason-card p {
  margin: 0;
  font-size: 14px;
  color: var(--tll-gray);
  line-height: 1.8;
}

#tll .tll-reason-tags {
  display: flex;
  gap: 8px;
  margin: 0 0 12px;
  flex-wrap: wrap;
}

#tll .tll-reason-tags span {
  background: #eef3fd;
  color: var(--tll-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
}

/* ========== 利用シーン ========== */
#tll .tll-scenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

#tll .tll-scene-card {
  background: #fff;
  border: 1px solid var(--tll-line);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .03);
}

#tll .tll-scene-card .tll-scene-icon {
  color: var(--tll-blue);
  font-size: 38px;
  margin-bottom: 16px;
}

#tll .tll-scene-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

/* ========== 比較表 ========== */
#tll .tll-table-wrap {
  overflow-x: auto;
}

#tll .tll-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
  min-width: 640px;
}

#tll .tll-compare-table th,
#tll .tll-compare-table td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid var(--tll-line);
  font-size: 15px;
}

#tll .tll-compare-table thead th {
  background: var(--tll-ink);
  color: #fff;
  font-weight: 700;
}

#tll .tll-compare-table thead th.is-ours {
  background: var(--tll-blue);
}

#tll .tll-compare-table tbody th {
  background: #f1f5fb;
  font-weight: 700;
  text-align: left;
  width: 22%;
}

#tll .tll-compare-table .is-ours-col {
  background: #eef3fd;
  font-weight: 800;
  color: var(--tll-blue);
}

#tll .tll-compare-conclusion {
  text-align: center;
  margin: 32px 0 0;
  font-size: 20px;
  font-weight: 800;
}

#tll .tll-compare-conclusion .tll-mark {
  color: var(--tll-blue);
}

#tll .tll-compare-note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--tll-gray);
  text-align: right;
}

/* ========== 導入企業の声 ========== */
#tll .tll-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#tll .tll-voice-card {
  background: #fff;
  border: 1px solid var(--tll-line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
  position: relative;
}

#tll .tll-voice-card .tll-voice-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

#tll .tll-voice-card .tll-voice-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef3fd;
  color: var(--tll-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

#tll .tll-voice-card .tll-voice-name {
  font-size: 16px;
  font-weight: 700;
}

#tll .tll-voice-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--tll-ink);
}

/* ========== 料金プラン ========== */
#tll .tll-plans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}

#tll .tll-plan-card {
  background: #fff;
  border: 1px solid var(--tll-line);
  border-radius: 12px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}

#tll .tll-plan-card.is-free {
  border: 2px solid var(--tll-orange);
  box-shadow: 0 6px 20px rgba(255, 137, 36, .15);
}

#tll .tll-plan-label {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 2px;
}

#tll .tll-plan-card.is-free .tll-plan-label {
  color: var(--tll-orange);
}

#tll .tll-plan-target {
  font-size: 11px;
  color: var(--tll-gray);
  text-align: center;
  margin: 0 0 14px;
  min-height: 30px;
}

#tll .tll-plan-price {
  text-align: center;
  margin: 0 0 4px;
  line-height: 1.2;
}

#tll .tll-plan-price .tll-yen {
  font-size: 16px;
  font-weight: 700;
}

#tll .tll-plan-price .tll-amount {
  font-size: 30px;
  font-weight: 800;
  color: var(--tll-ink);
}

#tll .tll-plan-price .tll-per {
  font-size: 13px;
  color: var(--tll-gray);
}

#tll .tll-plan-spec {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--tll-blue);
  background: #eef3fd;
  border-radius: 6px;
  padding: 6px 4px;
  margin: 10px 0 14px;
}

#tll .tll-plan-card.is-free .tll-plan-spec {
  color: var(--tll-orange-dark);
  background: #fff1e2;
}

#tll .tll-plan-feats {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1 1 auto;
}

#tll .tll-plan-feats li {
  position: relative;
  padding: 0 0 8px 20px;
  font-size: 12.5px;
  line-height: 1.6;
}

#tll .tll-plan-feats li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--tll-blue);
  font-size: 11px;
}

#tll .tll-plan-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  border-radius: 8px;
  padding: 12px 8px;
  transition: background-color .15s ease;
}

#tll .tll-plan-btn.is-free {
  background: var(--tll-orange);
  color: #fff;
}

#tll .tll-plan-btn.is-free:hover {
  background: var(--tll-orange-dark);
}

#tll .tll-plan-btn.is-paid {
  background: var(--tll-blue);
  color: #fff;
}

#tll .tll-plan-btn.is-paid:hover {
  background: var(--tll-blue-dark);
}

#tll .tll-plan-note {
  max-width: 520px;
  margin: 30px auto 0;
  text-align: center;
}

#tll .tll-plan-note .tll-initial-cost {
  display: inline-block;
  border: 1px solid var(--tll-blue);
  color: var(--tll-blue);
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 16px;
}

#tll .tll-plan-note .tll-tax-note {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--tll-gray);
}

/* ========== プラン比較表 ========== */
#tll .tll-plantable {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 760px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

#tll .tll-plantable th,
#tll .tll-plantable td {
  border: 1px solid var(--tll-line);
  padding: 14px 10px;
  text-align: center;
  font-size: 13.5px;
}

#tll .tll-plantable thead th {
  background: var(--tll-ink);
  color: #fff;
  font-weight: 700;
}

#tll .tll-plantable thead th.is-free {
  background: var(--tll-orange);
}

#tll .tll-plantable tbody th {
  background: #f1f5fb;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

/* /price 準拠の料金比較表 */
#tll .tll-pricetable {
  min-width: 940px;
}

#tll .tll-pricetable thead th,
#tll .tll-pricetable tfoot td {
  vertical-align: middle;
}

#tll .tll-pricetable .tll-th-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

#tll .tll-pricetable thead th {
  background: var(--tll-blue);
}

#tll .tll-pricetable thead th.is-free {
  background: var(--tll-blue);
}

#tll .tll-pricetable thead th.is-recommend {
  background: var(--tll-blue);
}

#tll .tll-pricetable .tll-th-ribbon {
  display: inline-block;
  background: #fff;
  color: var(--tll-blue);
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  padding: 2px 12px;
  margin-bottom: 8px;
}

#tll .tll-pricetable .is-recommend {
  background: #eef3fd;
}

#tll .tll-pricetable tbody td.is-recommend {
  font-weight: 700;
}

#tll .tll-th-btn {
  display: inline-block;
  background: var(--tll-orange);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 8px;
  padding: 7px 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}

#tll .tll-th-btn:hover {
  opacity: .85;
}

#tll .tll-th-btn.is-free {
  background: var(--tll-orange);
}

#tll .tll-pricetable .tll-price-amount {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: var(--tll-ink);
}

#tll .tll-pricetable td.is-recommend .tll-price-amount {
  color: var(--tll-blue);
}

#tll .tll-pricetable .tll-price-note,
#tll .tll-pricetable .tll-cell-note {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--tll-gray);
  margin-top: 2px;
}

#tll .tll-pricetable .tll-sitelist {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

#tll .tll-pricetable .tll-sitelist li {
  position: relative;
  padding-left: 14px;
  font-size: 12.5px;
  line-height: 1.7;
}

#tll .tll-pricetable .tll-sitelist li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--tll-blue);
}

#tll .tll-pricetable .tll-yes {
  color: var(--tll-blue);
  font-size: 18px;
}

#tll .tll-pricetable .tll-no {
  color: #c2c9d6;
  font-size: 16px;
}

/* ========== FAQ ========== */
#tll .tll-faq-list {
  max-width: 860px;
  margin: 0 auto;
}

#tll .tll-faq-item {
  background: #fff;
  border: 1px solid var(--tll-line);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

#tll .tll-faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

#tll .tll-faq-item > summary::-webkit-details-marker {
  display: none;
}

#tll .tll-faq-item > summary .tll-faq-q {
  color: var(--tll-blue);
  font-weight: 800;
  flex: 0 0 auto;
}

#tll .tll-faq-item > summary::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--tll-gray);
  font-size: 13px;
  transition: transform .2s ease;
}

#tll .tll-faq-item[open] > summary::after {
  transform: rotate(180deg);
}

#tll .tll-faq-body {
  padding: 0 20px 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

#tll .tll-faq-body .tll-faq-a {
  color: var(--tll-orange);
  font-weight: 800;
  flex: 0 0 auto;
}

#tll .tll-faq-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--tll-ink);
}

/* ========== 下部 CTA バナー ========== */
#tll .tll-cta-banner {
  background: linear-gradient(135deg, var(--tll-blue) 0%, var(--tll-blue-dark) 100%);
  color: #fff;
  padding: 52px 0;
  text-align: center;
}

#tll .tll-cta-banner h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
}

#tll .tll-cta-banner h2 i {
  margin-right: 10px;
}

#tll .tll-cta-banner p {
  margin: 0 0 24px;
  font-size: 15px;
}

#tll .tll-cta-banner p strong {
  color: #ffd9a8;
}

/* 中間CTA */
#tll .tll-cta-center {
  text-align: center;
  margin-top: 44px;
}

#tll .tll-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 安心バッジ（FV CTA下） */
#tll .tll-assurance {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

#tll .tll-assurance li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tll-ink);
}

#tll .tll-assurance li i {
  color: #2a9d63;
  font-size: 14px;
}

/* 実績バー */
#tll .tll-trustbar {
  background: var(--tll-blue);
  padding: 26px 0;
}

#tll .tll-trustbar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

#tll .tll-trustbar-list li {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .25);
  padding: 4px 8px;
}

#tll .tll-trustbar-list li:last-child {
  border-right: none;
}

#tll .tll-trust-label {
  display: block;
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

#tll .tll-trust-value {
  display: block;
  color: var(--tll-orange);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

#tll .tll-trust-note {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
}

/* 導入企業ロゴ */
#tll .tll-logos {
  padding: 44px 0;
}

#tll .tll-logos-heading {
  text-align: center;
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--tll-gray);
}

#tll .tll-logos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 20px;
  align-items: center;
}

#tll .tll-logos-list li {
  display: flex;
  align-items: center;
  justify-content: center;
}

#tll .tll-logos-list img {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  filter: grayscale(0);
  opacity: 1;
  transition: filter .2s ease, opacity .2s ease;
}

#tll .tll-logos-list img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ご利用の流れ 3ステップ */
#tll .tll-flow-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
}

#tll .tll-flow-card {
  flex: 1 1 0;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--tll-line);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}

#tll .tll-flow-step {
  display: inline-block;
  background: var(--tll-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

#tll .tll-flow-icon {
  color: var(--tll-blue);
  font-size: 34px;
  margin-bottom: 12px;
}

#tll .tll-flow-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

#tll .tll-flow-card p {
  margin: 0;
  font-size: 14px;
  color: var(--tll-gray);
  line-height: 1.8;
}

#tll .tll-flow-arrow {
  display: flex;
  align-items: center;
  color: var(--tll-line);
  font-size: 24px;
  flex: 0 0 auto;
}

/* CTA下マイクロコピー */
#tll .tll-cta-microcopy {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--tll-gray);
}

#tll .tll-cta-microcopy.is-light {
  color: rgba(255, 255, 255, .85);
}

/* 追従CTA */
#tll-stickycta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: #fff;
  box-shadow: 0 -2px 14px rgba(0, 0, 0, .12);
  border-top: 1px solid var(--tll-line);
  transform: translateY(110%);
  transition: transform .3s ease;
}

#tll-stickycta.is-visible {
  transform: translateY(0);
}

#tll-stickycta .tll-stickycta-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#tll-stickycta .tll-stickycta-text {
  margin: 0;
  line-height: 1.3;
}

#tll-stickycta .tll-stickycta-lead {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--tll-ink);
}

#tll-stickycta .tll-stickycta-sub {
  display: block;
  font-size: 12px;
  color: var(--tll-orange-dark);
  font-weight: 700;
}

#tll-stickycta .tll-btn-cta {
  padding: 13px 28px;
  font-size: 16px;
  box-shadow: none;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* ページトップ */
#tll-pagetop {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 900;
  display: none;
}

#tll-pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tll-ink);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

/* ========== レスポンシブ ========== */
@media screen and (max-width: 1024px) {
  #tll .tll-fv h1 { font-size: 34px; }
  #tll .tll-problems-grid { grid-template-columns: repeat(2, 1fr); }
  #tll .tll-reasons-grid { grid-template-columns: repeat(2, 1fr); }
  #tll .tll-needs-grid { grid-template-columns: repeat(2, 1fr); }
  #tll .tll-voices-grid { grid-template-columns: repeat(2, 1fr); }
  #tll .tll-plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  #tll { font-size: 15px; }
  #tll .tll-section { padding: 48px 0; }
  #tll .tll-heading h2 { font-size: 23px; }

  #tll .tll-header .tll-inner { height: 58px; }
  #tll .tll-logo img { height: 30px; }
  #tll .tll-header-tel { display: none; }
  #tll .tll-btn-trial { padding: 9px 15px; font-size: 13px; }

  #tll .tll-fv { padding: 36px 0 44px; }
  #tll .tll-fv .tll-inner { flex-direction: column; gap: 28px; }
  #tll .tll-fv-text { flex-basis: auto; width: 100%; }
  #tll .tll-fv-visual { flex-basis: auto; width: 100%; order: -1; }
  #tll .tll-fv h1 { font-size: 28px; }
  #tll .tll-fv-highlight .tll-fv-highlight-main { font-size: 17px; }
  #tll .tll-fv-highlight .tll-fv-highlight-main strong { font-size: 23px; }

  #tll .tll-btn-cta { width: 100%; font-size: 17px; padding: 16px 20px; }

  #tll .tll-problems-conclusion { font-size: 20px; }
  #tll .tll-scenes-grid { grid-template-columns: 1fr; }
  #tll .tll-voices-grid { grid-template-columns: 1fr; }

  #tll .tll-reasons-grid { gap: 28px; }

  #tll .tll-cta-banner h2 { font-size: 21px; }
  #tll .tll-cta-buttons { flex-direction: column; align-items: stretch; }
  #tll .tll-btn-ghost { width: 100%; }

  #tll .tll-assurance { justify-content: center; }
  #tll .tll-trustbar-list { grid-template-columns: repeat(2, 1fr); gap: 18px 8px; }
  #tll .tll-trustbar-list li:nth-child(2) { border-right: none; }
  #tll .tll-trust-value { font-size: 21px; }
  #tll .tll-logos-list { grid-template-columns: repeat(3, 1fr); gap: 22px 16px; }
  #tll .tll-flow-grid { flex-direction: column; align-items: center; gap: 0; }
  #tll .tll-flow-card { width: 100%; max-width: 420px; }
  #tll .tll-flow-arrow { transform: rotate(90deg); padding: 10px 0; }

  #tll-stickycta .tll-stickycta-inner { padding: 8px 14px; }
  #tll-stickycta .tll-stickycta-text { display: none; }
  #tll-stickycta .tll-btn-cta { flex: 1 1 auto; width: 100%; padding: 14px 16px; font-size: 15px; }
  #tll-pagetop { bottom: 78px; right: 16px; }
}

@media screen and (max-width: 480px) {
  #tll .tll-problems-grid { grid-template-columns: 1fr; }
  #tll .tll-reasons-grid { grid-template-columns: 1fr; }
  #tll .tll-needs-grid { grid-template-columns: 1fr; }
  #tll .tll-plans-grid { grid-template-columns: 1fr; }
  #tll .tll-plan-target { min-height: 0; }
  #tll .tll-logos-list { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 操作画面・機能イメージ（#tll-tool） ===== */
#tll .tll-tool-lead {
  text-align: center;
  margin: 0 0 28px;
  font-size: 16px;
  color: var(--tll-gray);
  line-height: 1.9;
}
#tll .tll-tool-movie {
  max-width: 760px;
  margin: 0 auto 36px;
}
#tll .tll-tool-movie-label {
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--tll-orange);
  margin: 0 0 14px;
}
#tll .tll-tool-movie-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
  background: #000;
}
#tll .tll-tool-movie-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
#tll .tll-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
#tll .tll-tool-card {
  background: #fff;
  border: 1px solid var(--tll-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}
#tll .tll-tool-img {
  background: #fff;
  padding: 16px 16px 0;
}
#tll .tll-tool-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
#tll .tll-tool-card p {
  margin: 0;
  padding: 14px 18px 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: var(--tll-ink);
}

@media screen and (max-width: 1024px) {
  #tll .tll-tool-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px) {
  #tll .tll-tool-grid { grid-template-columns: 1fr; }
  #tll .tll-tool-movie-label { font-size: 16px; }
}

/* ===== 料金表「こんな方におすすめ」行を強調（#tll-pricing） ===== */
#tll .tll-pricetable tbody tr.tll-plan-persona th,
#tll .tll-pricetable tbody tr.tll-plan-persona td {
  background: #eef4ff;
  font-weight: 700;
  color: var(--tll-ink);
  font-size: 14px;
  line-height: 1.6;
  border-top: 2px solid var(--tll-blue);
  border-bottom: 2px solid var(--tll-blue);
}
#tll .tll-pricetable tbody tr.tll-plan-persona th {
  color: var(--tll-blue);
  font-weight: 800;
  white-space: nowrap;
}
#tll .tll-pricetable tbody tr.tll-plan-persona th .fa-star {
  margin-right: 6px;
  color: var(--tll-orange);
}
#tll .tll-pricetable tbody tr.tll-plan-persona td.is-recommend {
  background: #fff3e6;
  color: var(--tll-orange-dark);
}
