* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  color: #1c2430;
  background: #f6f8fb;
  line-height: 1.75;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

.hero {
  background: #2e3440;
  color: #fff;
}

.hero-home {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  background: #1f2933;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 31, 42, 0.94) 0%, rgba(24, 31, 42, 0.78) 48%, rgba(24, 31, 42, 0.34) 100%),
    linear-gradient(180deg, rgba(24, 31, 42, 0.12), rgba(24, 31, 42, 0.46));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 38%;
  opacity: 0.86;
}

.hero-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 24px 48px;
}

.hero-home-inner {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #a7c3e8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: #e5eaf2;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.primary-button {
  background: #f2b84b;
  color: #1d2733;
}

.primary-button:hover {
  background: #ffd06a;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.notice {
  padding: 20px 24px;
  background: #fff7e6;
  border: 1px solid #ffd89a;
  border-left: 6px solid #f59f00;
  border-radius: 8px;
}

.notice h2 {
  margin-bottom: 12px;
  padding: 0;
  border-left: none;
  background: transparent;
  color: #7a4b00;
}

.notice ul {
  margin: 0;
  padding-left: 22px;
}

.notice li {
  margin: 6px 0;
  color: #4d3a16;
}

.section {
  margin-top: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e1e6ef;
  border-radius: 8px;
}

.intro-section,
.guide-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 24px;
  align-items: center;
}

.intro-section p,
.guide-preview p {
  margin: 0;
  color: #526174;
}

.quick-facts {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  padding: 10px 12px;
  border-left: 4px solid #36a37d;
  border-radius: 6px;
  background: #eefaf5;
  color: #263a33;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-item {
  padding: 16px;
  border: 1px solid #e1e6ef;
  border-radius: 8px;
  background: #fbfcfe;
}

.feature-item p {
  margin: 0;
  color: #526174;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: #245fa8;
  font-weight: 700;
}

.guide-preview-image {
  width: min(100%, 320px);
  height: auto;
  justify-self: end;
  border: 1px solid #dfe6f1;
  border-radius: 8px;
  background: #fff;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.link-list a {
  display: block;
  min-height: 112px;
  padding: 16px;
  border: 1px solid #dfe6f1;
  border-radius: 8px;
  background: #fbfcfe;
  color: #1c2430;
  text-decoration: none;
}

.link-list a:hover {
  border-color: #8fb3df;
  background: #f5f9ff;
}

.link-list strong,
.link-list span {
  display: block;
}

.link-list span {
  margin-top: 6px;
  color: #526174;
  font-size: 14px;
}

h2 {
  margin: 0 0 18px;
  padding: 8px 12px;
  border-left: 4px solid #5e81ac;
  border-radius: 6px;
  background: #f1f4f8;
  font-size: 20px;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 56px;
  padding: 12px 12px 12px 58px;
  border: 1px solid #e2e7f0;
  border-radius: 8px;
  background: #fbfcfe;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2f78dc;
  color: #fff;
  font-weight: 700;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  color: #526174;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.step-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 230px);
  gap: 16px;
  align-items: start;
}

.step-row-large {
  grid-template-columns: minmax(330px, 1fr) minmax(260px, 420px);
}

.step-copy {
  min-width: 0;
}

.step-checks {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid #dfe6f1;
  border-radius: 8px;
  background: #f5f9ff;
  list-style: none;
  color: #334155;
  font-size: 14px;
}

.step-checks li {
  display: grid;
  grid-template-columns: max-content 18px max-content;
  gap: 8px;
  align-items: baseline;
  min-height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.check-label {
  white-space: nowrap;
}

.check-arrow {
  text-align: center;
}

.step-checks strong {
  white-space: nowrap;
}

.step-checks li::before {
  content: none;
}

.step-image {
  display: block;
  width: min(100%, 450px);
  height: auto;
  margin-top: 12px;
  border: 1px solid #dfe6f1;
  border-radius: 8px;
  background: #fff;
}

.step-image-small {
  width: min(100%, 230px);
  justify-self: end;
}

.step-image-large {
  width: min(100%, 331px);
  justify-self: end;
}

.step-image-wide {
  width: min(100%, 540px);
  justify-self: end;
}

.settings-list {
  display: grid;
  gap: 10px;
}

.setting-item {
  display: grid;
  grid-template-columns: 160px 170px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #e7ebf2;
}

.setting-item:last-child {
  border-bottom: none;
}

.setting-name {
  font-weight: 700;
}

.setting-value {
  display: inline-flex;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 6px;
  background: #f1f4f8;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.setting-item p {
  margin: 0;
  color: #526174;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.info-panel {
  padding: 16px;
  border: 1px solid #cfe1f8;
  border-radius: 8px;
  background: #f5f9ff;
}

.info-panel p {
  margin: 0 0 12px;
  color: #334155;
}

.info-panel ol {
  margin: 0;
  padding-left: 22px;
  color: #526174;
}

.info-panel li {
  margin: 6px 0;
}

.troubles {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid #dfe6f1;
  border-radius: 8px;
  background: #fbfcfe;
}

summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 14px 14px;
  color: #526174;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  h1 {
    font-size: 30px;
  }

  .hero-inner,
  .page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 16px;
  }

  .hero-home,
  .hero-home-inner {
    min-height: 0;
  }

  .hero-bg img {
    object-position: 56% 24%;
  }

  .intro-section,
  .guide-preview,
  .feature-grid,
  .link-list {
    grid-template-columns: 1fr;
  }

  .guide-preview-image {
    justify-self: start;
  }

  .setting-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .setting-value {
    justify-content: flex-start;
  }

  .step-row {
    grid-template-columns: 1fr;
  }

  .step-image-small {
    justify-self: start;
  }

  .step-image-large,
  .step-image-wide {
    justify-self: start;
  }

}

/* === LP (公式トップ) === */
.lp-hero {
  background: linear-gradient(160deg, #ffffff 0%, #eef3fb 55%, #e3ecf8 100%);
  color: #1c2430;
  border-bottom: 1px solid #e1e6ef;
}

.lp-nav {
  border-bottom: 1px solid rgba(31, 41, 55, 0.06);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.lp-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-brand {
  font-weight: 700;
  font-size: 15px;
  color: #1c2430;
  text-decoration: none;
}

.lp-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.lp-nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

.lp-nav-links a:hover {
  background: rgba(46, 79, 130, 0.08);
}

.lp-nav-links a.is-current {
  background: #1c2430;
  color: #fff;
}

.lp-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: center;
}

.lp-hero-copy h1 {
  font-size: 38px;
  line-height: 1.25;
  margin: 6px 0 16px;
  color: #1c2430;
  padding: 0;
  background: transparent;
  border-left: none;
}

.lp-hero .eyebrow {
  color: #2a5da6;
  margin-bottom: 8px;
}

.lp-hero-lead {
  margin: 0;
  font-size: 16px;
  color: #44546c;
  max-width: 540px;
  line-height: 1.8;
}

.lp-hero-copy .hero-actions {
  margin-top: 24px;
}

.lp-hero-copy .primary-button {
  background: #2a5da6;
  color: #fff;
}

.lp-hero-copy .primary-button:hover {
  background: #1f4985;
}

.lp-hero-copy .secondary-button {
  border: 1px solid #c4d1e3;
  color: #1c2430;
}

.lp-hero-copy .secondary-button:hover {
  background: #ffffff;
}

.lp-hero-meta {
  margin: 18px 0 0;
  color: #6a778c;
  font-size: 13px;
}

.lp-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-hero-visual img {
  width: 100%;
  max-width: 320px;
  max-height: 440px;
  object-fit: contain;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 24px 48px -22px rgba(28, 36, 48, 0.32),
    0 4px 12px -4px rgba(28, 36, 48, 0.12);
  background: #fff;
}

.lp-hero-visual img.lp-hero-icon {
  width: 200px;
  height: 200px;
  max-width: 60vw;
  max-height: none;
  border-radius: 36px;
  background: transparent;
  box-shadow:
    0 28px 56px -24px rgba(42, 93, 166, 0.45),
    0 6px 16px -6px rgba(28, 36, 48, 0.18);
}

.lp-page {
  max-width: 1080px;
}

.lp-features-section h2 {
  margin-bottom: 22px;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.lp-steps li {
  position: static;
  min-height: 0;
  padding: 20px;
  border: 1px solid #e1e6ef;
  border-radius: 10px;
  background: #fbfcfe;
  display: flex;
  flex-direction: column;
}

.lp-steps li::before {
  content: none;
}

.lp-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2a5da6;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.lp-steps h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.lp-steps p {
  margin: 0 0 14px;
  color: #526174;
  font-size: 14px;
}

.lp-steps img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 260px;
  height: auto;
  margin-top: auto;
  align-self: center;
  border: 1px solid #e1e6ef;
  border-radius: 8px;
  background: #fff;
}

.lp-cta-row {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.lp-footer {
  margin-top: 24px;
  padding: 28px 0 40px;
  border-top: 1px solid #e1e6ef;
  background: #fff;
}

.lp-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #6a778c;
  font-size: 13px;
}

.lp-footer-inner p {
  margin: 0;
}

.lp-footer-inner nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-footer-inner a {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
}

.lp-footer-inner a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 16px 36px;
    gap: 24px;
  }

  .lp-hero-copy h1 {
    font-size: 28px;
  }

  .lp-hero-visual {
    order: -1;
  }

  .lp-hero-visual img {
    max-width: 260px;
    max-height: 360px;
  }

  .lp-hero-visual img.lp-hero-icon {
    width: 140px;
    height: 140px;
  }

  .lp-nav-inner {
    padding: 12px 16px;
  }

  .lp-steps {
    grid-template-columns: 1fr;
  }

  .lp-steps img {
    max-height: 320px;
  }

  .lp-footer-inner {
    padding: 0 16px;
  }
}

/* Slim hero variant (guide / help サブページ用) */
.lp-hero-slim .lp-hero-inner {
  display: block;
  padding: 36px 24px 36px;
}

.lp-hero-slim-inner {
  max-width: 1080px;
}

.lp-hero-slim .lp-hero-copy h1 {
  font-size: 30px;
  margin: 4px 0 12px;
}

.lp-hero-slim .lp-hero-lead {
  max-width: 760px;
}

/* 目次 */
.lp-toc {
  margin-top: 22px;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid #e1e6ef;
  border-radius: 8px;
}

.lp-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #44546c;
  letter-spacing: 0.04em;
}

.lp-toc ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.lp-toc li {
  counter-increment: toc;
}

.lp-toc a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid #dfe6f1;
  border-radius: 999px;
  background: #fbfcfe;
  color: #1c2430;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.lp-toc a::before {
  content: counter(toc);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2a5da6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.lp-toc a:hover {
  background: #f5f9ff;
  border-color: #8fb3df;
}

/* セクション内アンカーへジャンプ時の上余白 */
.lp-page section[id] {
  scroll-margin-top: 16px;
}

/* Chrome に追加 ボタン */
.install-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 20px 8px 14px;
  border-radius: 8px;
  background: #1a73e8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 6px 14px -6px rgba(26, 115, 232, 0.6),
    0 2px 4px -2px rgba(28, 36, 48, 0.18);
  transition: background 0.15s ease, transform 0.05s ease;
}

.install-button:hover {
  background: #155ec1;
}

.install-button:active {
  transform: translateY(1px);
}

.install-button-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.lp-install-note {
  margin: 10px 0 0;
  color: #8a5a00;
  background: #fff7e6;
  border: 1px solid #ffd89a;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  display: inline-block;
}

/* 更新情報（控えめ表示） */
.lp-updates-section {
  margin-top: 16px;
  padding: 4px 4px;
  background: transparent;
  border: none;
  border-radius: 0;
}

.lp-updates-section h2 {
  margin: 0 0 10px;
  padding: 0;
  background: transparent;
  border-left: none;
  font-size: 13px;
  font-weight: 700;
  color: #6a778c;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-updates {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2px;
}

.lp-updates li {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 6px 0;
  border: none;
}

.lp-update-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-update-meta time {
  font-weight: 600;
  color: #6a778c;
  font-size: 13px;
  letter-spacing: 0;
}

.lp-update-tag {
  display: inline-flex;
  align-items: center;
  padding: 1px 7px;
  border-radius: 999px;
  background: #eef1f5;
  color: #6a778c;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.lp-updates p {
  margin: 0;
  color: #6a778c;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .lp-updates li {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 6px 0;
  }
}

/* 文書ページ（プライバシーポリシー等） */
.lp-doc {
  max-width: 820px;
}

.lp-doc article {
  padding: 8px 4px 24px;
  color: #1c2430;
  font-size: 15px;
  line-height: 1.9;
}

.lp-doc h2 {
  margin: 32px 0 10px;
  padding: 0;
  background: transparent;
  border-left: none;
  border-radius: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1c2430;
  letter-spacing: 0;
}

.lp-doc h2:first-child {
  margin-top: 8px;
}

.lp-doc p {
  margin: 0 0 12px;
  color: #2f3a4a;
}

.lp-doc ul,
.lp-doc ol {
  margin: 0 0 12px;
  padding-left: 22px;
}

.lp-doc li {
  margin: 4px 0;
  color: #2f3a4a;
}

.lp-doc code {
  padding: 1px 6px;
  border-radius: 4px;
  background: #f1f4f8;
  color: #1c2430;
  font-size: 13.5px;
}

.lp-doc a {
  color: #2a5da6;
}

@media (max-width: 720px) {
  .lp-doc article {
    font-size: 14.5px;
  }

  .lp-doc h2 {
    font-size: 17px;
    margin-top: 28px;
  }
}

/* コーヒー支援フローティングボタン（5日以上訪問で表示） */
.coffee-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
}

.coffee-float[hidden] {
  display: none;
}

/* フッターが画面に入った時に bottom 位置を動的に上げるので、
   その変化を滑らかにする */
.coffee-float {
  transition: bottom 0.2s ease;
}

.coffee-icon {
  display: block;
  width: 62px;
  height: 62px;
  border: 1px solid #ead3a6;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 6px 18px rgba(138, 90, 18, 0.18);
  object-fit: contain;
  padding: 4px;
  transition: transform 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.coffee-float:hover .coffee-icon {
  border-color: #ddb767;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(138, 90, 18, 0.24);
}

.coffee-float:focus-visible .coffee-icon {
  outline: 3px solid rgba(94, 129, 172, 0.35);
  outline-offset: 3px;
}

.coffee-bubble {
  position: absolute;
  right: 72px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  border: 1px solid #ead3a6;
  border-radius: 999px;
  background: #fff;
  color: #8a5a12;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  box-shadow: 0 4px 14px rgba(138, 90, 18, 0.12);
  transform: translate(8px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.coffee-bubble::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  margin-top: -4.5px;
  width: 9px;
  height: 9px;
  background: #fff;
  border-right: 1px solid #ead3a6;
  border-bottom: 1px solid #ead3a6;
  transform: rotate(-45deg);
}

.coffee-float:hover .coffee-bubble,
.coffee-float:focus-visible .coffee-bubble {
  opacity: 1;
  transform: translate(0, -50%);
}

@media (max-width: 720px) {
  .coffee-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .coffee-icon {
    width: 52px;
    height: 52px;
  }
}

/* 問い合わせ CTA */
.lp-contact-cta {
  margin: 16px 0 0;
}

.lp-contact-cta .primary-button {
  background: #2a5da6;
  color: #fff;
}

.lp-contact-cta .primary-button:hover {
  background: #1f4985;
}

@media (max-width: 720px) {
  .lp-hero-slim .lp-hero-inner {
    padding: 28px 16px 28px;
  }

  .lp-hero-slim .lp-hero-copy h1 {
    font-size: 24px;
  }

  .lp-toc {
    padding: 14px 16px;
  }

  .lp-toc ol {
    flex-direction: column;
    gap: 6px;
  }

  .lp-toc a {
    width: 100%;
  }
}

