:root {
  --main: #2a67ff;
  --main-deep: #1448c7;
  --accent: #ff7a00;
  --accent-deep: #e56700;
  --line: #06c755;
  --line-deep: #00a744;
  --dark: #21242d;
  --text: #3e4653;
  --muted: #6e7788;
  --white: #ffffff;
  --bg: #f7f9fd;
  --bg-soft: #fff8f2;
  --bg-blue: #eef4ff;
  --border: #dce5f2;
  --shadow: 0 18px 44px rgba(22, 40, 84, 0.10);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.ak-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ak-section-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--main);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.ak-section-kicker--light {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.ak-section-title {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
}

.ak-section-note {
  margin: 0 auto 28px;
  max-width: 820px;
  text-align: center;
  color: var(--muted);
}

/* ボタン */
.ak-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  transition: transform .2s ease, opacity .2s ease;
}

.ak-btn span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.92;
}

.ak-btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.ak-btn--tel {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.ak-btn--mail {
  background: linear-gradient(180deg, var(--main), var(--main-deep));
  color: #fff;
}

.ak-btn--line {
  background: linear-gradient(180deg, var(--line), var(--line-deep));
  color: #fff;
}

/* プレースホルダー */
.ak-img-placeholder {
  width: 100%;
  border: 2px dashed #b6c5de;
  background:
    linear-gradient(135deg, #f5f8fd 0%, #edf3fb 100%);
  color: #60728f;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  font-weight: 800;
  line-height: 1.6;
}

.ak-img-placeholder--hero { min-height: 620px; }
.ak-img-placeholder--square { min-height: 500px; }
.ak-img-placeholder--card { min-height: 260px; }
.ak-img-placeholder--case { min-height: 340px; }
.ak-img-placeholder--map { min-height: 520px; }
.ak-img-placeholder--portrait { min-height: 620px; }
.ak-img-placeholder--portrait-sm { min-height: 480px; }

/* 固定CTA */
.ak-float-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ak-float-cta a {
  min-width: 146px;
  padding: 14px 16px;
  border-radius: 999px;
  text-align: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.ak-float-cta__tel { background: var(--accent); }
.ak-float-cta__mail { background: var(--main); }
.ak-float-cta__line { background: var(--line); }

/* トップバー */
.ak-topbar {
  position: relative;
  padding: 18px 0 16px;
  background:
    linear-gradient(180deg, #fff7f0 0%, #fff 100%);
  border-bottom: 1px solid #f0e3d3;
}

.ak-topbar__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.ak-brand__lead {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.ak-brand__logo {
  margin: 0;
  color: var(--dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.ak-payments-mini {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.ak-payments-mini__title {
  margin: 0 0 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
}

.ak-payments-mini__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.ak-payments-mini__list span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 12px;
  background: #f7f9fd;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 800;
}

.ak-contact-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.ak-contact-box__time {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.ak-contact-box__tel {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--line);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.ak-contact-box__note {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
}

.ak-contact-box__cta {
  display: flex;
  gap: 12px;
}

.ak-contact-box__cta .ak-btn {
  flex: 1;
}

/* HERO */
.ak-hero {
  position: relative;
  padding: 54px 0 34px;
  background:
    radial-gradient(circle at top right, rgba(255,122,0,0.10), transparent 26%),
    radial-gradient(circle at left top, rgba(42,103,255,0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
  overflow: hidden;
}

.ak-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.ak-hero__label {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #e8f0ff;
  color: var(--main);
  font-size: 13px;
  font-weight: 900;
}

.ak-hero__title {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.18;
}

.ak-hero__desc {
  margin: 0 0 22px;
  max-width: 640px;
  color: var(--text);
  font-size: 16px;
}

.ak-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.ak-hero__badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 20px rgba(22, 40, 84, 0.05);
  font-weight: 800;
  font-size: 13px;
}

.ak-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ak-hero__visual {
  position: relative;
}

.ak-hero-merit {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ak-hero-merit__item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.ak-hero-merit__head {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd9b7, #ffb876);
  color: #7a3d00;
  font-weight: 900;
}

.ak-hero-merit__item h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 21px;
}

.ak-hero-merit__item p {
  margin: 0;
}

/* 共通section */
.ak-worries,
.ak-reasons,
.ak-features,
.ak-pricing,
.ak-cases,
.ak-compare,
.ak-area,
.ak-payments,
.ak-company,
.ak-staff,
.ak-flow,
.ak-faq,
.ak-contact {
  padding: 88px 0;
}

/* 悩み */
.ak-worries {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.ak-worries__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.ak-check-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.ak-check-list li {
  position: relative;
  padding: 18px 18px 18px 58px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.ak-check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--line), var(--line-deep));
  color: #fff;
  font-weight: 900;
}

/* 理由 */
.ak-reasons {
  background: var(--bg);
}

.ak-reasons .ak-section-kicker,
.ak-reasons .ak-section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ak-reasons__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.ak-reason-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
}

.ak-reason-card__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #dce8ff, #bfd4ff);
  color: var(--main-deep);
  font-weight: 900;
}

.ak-reason-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.35;
}

.ak-reason-card p {
  margin: 0;
  font-size: 14px;
}

/* CTA帯 */
.ak-cta-band {
  padding: 28px 0;
  background:
    radial-gradient(circle at left, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(135deg, #254fcd 0%, #2a67ff 100%);
  color: #fff;
}

.ak-cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.ak-cta-band__lead {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.ak-cta-band__text h2 {
  margin: 0;
  font-size: clamp(26px, 3.8vw, 40px);
  line-height: 1.3;
}

.ak-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 特徴 */
.ak-features {
  background: #fff;
}

.ak-features .ak-section-kicker,
.ak-features .ak-section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ak-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ak-feature-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.ak-feature-card h3 {
  margin: 18px 0 10px;
  color: var(--dark);
  font-size: 23px;
  line-height: 1.35;
}

.ak-feature-card p {
  margin: 0;
}

/* 料金 */
.ak-pricing {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.ak-pricing .ak-section-kicker,
.ak-pricing .ak-section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ak-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ak-price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.ak-price-card h3 {
  margin: 18px 0 10px;
  color: var(--dark);
  font-size: 24px;
}

.ak-price-card__main {
  margin: 0 0 4px;
  color: var(--accent-deep);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.ak-price-card__sub {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

/* 実績 */
.ak-cases {
  background: #fffaf6;
}

.ak-cases .ak-section-kicker,
.ak-cases .ak-section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ak-case + .ak-case {
  margin-top: 28px;
}

.ak-case {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.ak-case__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ak-case__head h3 {
  margin: 0;
  color: var(--dark);
  font-size: 24px;
}

.ak-case__tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--main);
  font-size: 12px;
  font-weight: 900;
}

.ak-case__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ak-voice {
  margin-top: 16px;
  padding: 18px;
  background: #f7f9fd;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.ak-voice h4 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 18px;
}

.ak-voice p {
  margin: 0;
}

/* 比較 */
.ak-compare {
  background: var(--bg);
}

.ak-compare .ak-section-kicker,
.ak-compare .ak-section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ak-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.ak-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.ak-compare-table th,
.ak-compare-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.ak-compare-table thead th {
  background: #f1f6ff;
  color: var(--dark);
  font-weight: 900;
}

.ak-compare-table tbody th {
  background: #fffaf5;
  font-weight: 800;
}

.ak-compare-table tbody td:nth-child(2) {
  background: #fff;
  color: var(--main-deep);
  font-weight: 900;
}

/* エリア */
.ak-area {
  background: #fff;
}

.ak-area__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.ak-area__lead {
  margin: 0 0 18px;
}

.ak-area__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ak-area__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid #d7e4ff;
  font-size: 13px;
  font-weight: 800;
}

/* 支払い */
.ak-payments {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.ak-payments .ak-section-kicker,
.ak-payments .ak-section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ak-payments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ak-pay-card {
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-weight: 900;
  font-size: 18px;
}

/* 会社 */
.ak-company {
  background: #fffaf6;
}

.ak-company__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.ak-company__desc {
  margin: 0 0 18px;
}

.ak-company__info {
  margin: 0;
  display: grid;
  gap: 10px;
}

.ak-company__info div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.ak-company__info dt {
  font-weight: 900;
  color: var(--dark);
}

.ak-company__info dd {
  margin: 0;
}

/* スタッフ */
.ak-staff {
  background: #fff;
}

.ak-staff .ak-section-kicker,
.ak-staff .ak-section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ak-staff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ak-staff-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.ak-staff-card h3 {
  margin: 18px 0 10px;
  color: var(--dark);
  font-size: 23px;
}

.ak-staff-card p {
  margin: 0;
}

/* 流れ */
.ak-flow {
  background: var(--bg);
}

.ak-flow .ak-section-kicker,
.ak-flow .ak-section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ak-flow__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ak-flow-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 18px;
  box-shadow: var(--shadow);
}

.ak-flow-card__step {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--main), var(--main-deep));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.ak-flow-card h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 21px;
}

.ak-flow-card p {
  margin: 0;
  font-size: 14px;
}

/* FAQ */
.ak-faq {
  background: #fff;
}

.ak-faq .ak-section-kicker,
.ak-faq .ak-section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ak-faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ak-faq__item + .ak-faq__item {
  margin-top: 16px;
}

.ak-faq__question {
  width: 100%;
  padding: 22px 60px 22px 22px;
  border: none;
  background: #fff;
  text-align: left;
  color: var(--dark);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}

.ak-faq__question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--main);
  font-weight: 900;
}

.ak-faq__item.is-open .ak-faq__question::after {
  content: "−";
}

.ak-faq__item.is-open .ak-faq__answer {
  display: block;
}

.ak-faq__answer p {
  margin: 0;
}

/* 最終CTA */
.ak-contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.10), transparent 22%),
    linear-gradient(135deg, var(--main-deep) 0%, var(--main) 100%);
  color: #fff;
}

.ak-contact__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.ak-contact__title {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.25;
}

.ak-contact__desc {
  margin: 0;
  max-width: 700px;
}

.ak-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* フッターの上詰まり調整 */
.ak-lp {
  position: relative;
}

/* レスポンシブ */
@media (max-width: 1180px) {
  .ak-topbar__inner,
  .ak-hero__inner,
  .ak-worries__inner,
  .ak-area__inner,
  .ak-company__inner {
    grid-template-columns: 1fr;
  }

  .ak-contact-box__cta,
  .ak-contact__actions,
  .ak-cta-band__actions {
    justify-content: flex-start;
  }

  .ak-reasons__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ak-flow__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .ak-hero-merit,
  .ak-features__grid,
  .ak-pricing__grid,
  .ak-staff__grid,
  .ak-payments__grid,
  .ak-case__images {
    grid-template-columns: 1fr 1fr;
  }

  .ak-reasons__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ak-flow__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ak-contact__inner,
  .ak-cta-band__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ak-topbar,
  .ak-hero,
  .ak-worries,
  .ak-reasons,
  .ak-features,
  .ak-pricing,
  .ak-cases,
  .ak-compare,
  .ak-area,
  .ak-payments,
  .ak-company,
  .ak-staff,
  .ak-flow,
  .ak-faq,
  .ak-contact {
    padding: 64px 0;
  }

  .ak-container {
    width: min(100% - 20px, 100%);
  }

  .ak-brand__logo {
    font-size: 26px;
  }

  .ak-payments-mini__list,
  .ak-hero-merit,
  .ak-features__grid,
  .ak-pricing__grid,
  .ak-staff__grid,
  .ak-payments__grid,
  .ak-flow__grid,
  .ak-case__images,
  .ak-reasons__grid {
    grid-template-columns: 1fr;
  }

  .ak-contact-box__cta,
  .ak-hero__cta,
  .ak-contact__actions,
  .ak-cta-band__actions {
    flex-direction: column;
  }

  .ak-btn {
    width: 100%;
  }

  .ak-company__info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ak-float-cta {
    right: 10px;
    left: 10px;
    bottom: 10px;
    flex-direction: row;
  }

  .ak-float-cta a {
    min-width: auto;
    flex: 1;
    padding: 12px 6px;
    font-size: 12px;
  }

  .ak-img-placeholder--hero {
    min-height: 360px;
  }

  .ak-img-placeholder--map,
  .ak-img-placeholder--portrait {
    min-height: 320px;
  }

  .ak-img-placeholder--square,
  .ak-img-placeholder--case,
  .ak-img-placeholder--portrait-sm {
    min-height: 260px;
  }
}
/* ===== スマホFVの文字量を圧縮して参考LP寄りにする調整 ===== */
@media (max-width: 767px) {

  /* 上部全体をコンパクト化 */
  .ak-topbar {
    padding: 10px 0 8px;
  }

  .ak-topbar__inner {
    gap: 10px;
  }

  .ak-brand__lead {
    margin: 0 0 2px;
    font-size: 11px;
    text-align: center;
    line-height: 1.4;
  }

  .ak-brand__logo {
    font-size: 24px;
    text-align: center;
    line-height: 1.2;
  }

  /* 決済エリアを“文字の塊”ではなくコンパクトなチップ風に */
  .ak-payments-mini {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .ak-payments-mini__title {
    margin: 0 0 8px;
    font-size: 11px;
    line-height: 1.4;
  }

  .ak-payments-mini__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .ak-payments-mini__list span {
    min-height: 34px;
    padding: 6px 4px;
    font-size: 11px;
    border-radius: 10px;
  }

  /* 連絡カードを圧縮 */
  .ak-contact-box {
    padding: 14px 12px;
    border-radius: 16px;
  }

  .ak-contact-box__time {
    margin: 0 0 4px;
    font-size: 11px;
    text-align: center;
    line-height: 1.4;
  }

  .ak-contact-box__tel {
    display: block;
    margin-bottom: 4px;
    font-size: 28px;
    text-align: center;
    line-height: 1.05;
  }

  .ak-contact-box__note {
    margin: 0 0 8px;
    font-size: 11px;
    text-align: center;
    line-height: 1.4;
  }

  /* 上部カード内CTAは隠して、導線の重複を減らす */
  .ak-contact-box__cta {
    display: none;
  }

  /* HERO全体を圧縮 */
  .ak-hero {
    padding: 24px 0 18px;
  }

  .ak-hero__inner {
    gap: 18px;
  }

  .ak-hero__label {
    margin: 0 0 10px;
    padding: 7px 12px;
    font-size: 11px;
  }

  .ak-hero__title {
    margin: 0 0 12px;
    font-size: 29px;
    line-height: 1.22;
    letter-spacing: -0.02em;
  }

  .ak-hero__desc {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.7;
  }

  /* HERO内ボタン3連を消して、固定CTAに役割を集約 */
  .ak-hero__cta {
    display: none;
  }

  /* 強みバッジを詰める */
  .ak-hero__badges {
    gap: 8px;
    margin-bottom: 14px;
  }

  .ak-hero__badges span {
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.35;
  }

  /* ヒーロー画像プレースホルダーを少し小さく */
  .ak-img-placeholder--hero {
    min-height: 240px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  /* 3つの特徴カードも少し締める */
  .ak-hero-merit {
    margin-top: 14px;
    gap: 10px;
  }

  .ak-hero-merit__item {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .ak-hero-merit__head {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .ak-hero-merit__item h3 {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.35;
  }

  .ak-hero-merit__item p {
    font-size: 13px;
    line-height: 1.65;
  }

  /* 下部固定CTAを“スマホらしく”整理 */
  .ak-float-cta {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    gap: 8px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
  }

  .ak-float-cta a {
    min-width: auto;
    flex: 1;
    padding: 10px 4px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.25;
    box-shadow: none;
  }
}

/* =========================================================
   第三版 追記CSS
   front-page.php 第三版に合わせた上書き用
   ※ style.css の一番下に追記
========================================================= */

/* ---------- 全体の見え方を少しLP寄りに調整 ---------- */
.ak-lp {
  overflow: hidden;
}

.ak-lp .ak-section-title {
  letter-spacing: -0.02em;
}

.ak-lp .ak-section-note,
.ak-lp .ak-area__lead,
.ak-lp .ak-company__desc,
.ak-lp .ak-hero__desc {
  line-height: 1.9;
}

.ak-lp .ak-worries,
.ak-lp .ak-reasons,
.ak-lp .ak-features,
.ak-lp .ak-pricing,
.ak-lp .ak-cases,
.ak-lp .ak-compare,
.ak-lp .ak-area,
.ak-lp .ak-payments,
.ak-lp .ak-company,
.ak-lp .ak-staff,
.ak-lp .ak-flow,
.ak-lp .ak-faq,
.ak-lp .ak-contact {
  position: relative;
}

.ak-lp .ak-worries::before,
.ak-lp .ak-reasons::before,
.ak-lp .ak-features::before,
.ak-lp .ak-pricing::before,
.ak-lp .ak-cases::before,
.ak-lp .ak-compare::before,
.ak-lp .ak-area::before,
.ak-lp .ak-payments::before,
.ak-lp .ak-company::before,
.ak-lp .ak-staff::before,
.ak-lp .ak-flow::before,
.ak-lp .ak-faq::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1180px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(42,103,255,0.12), rgba(0,0,0,0));
  transform: translateX(-50%);
}

/* ---------- ヘッダー ---------- */
.ak-topbar {
  padding: 14px 0;
  background:
    radial-gradient(circle at left top, rgba(255,122,0,0.08), transparent 24%),
    linear-gradient(180deg, #fff6ee 0%, #fff 100%);
  border-bottom: 1px solid #efe4d9;
}

.ak-topbar__inner {
  grid-template-columns: 0.9fr 1.15fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.ak-brand,
.ak-payments-mini,
.ak-contact-box {
  height: 100%;
}

.ak-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ak-brand__lead {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #6f7786;
}

.ak-brand__logo {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.ak-payments-mini {
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #dfe8f4;
  box-shadow: 0 16px 36px rgba(22, 40, 84, 0.08);
}

.ak-payments-mini__title {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  color: #2d3440;
}

.ak-payments-mini__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ak-payments-mini__list span {
  min-height: 44px;
  padding: 6px 4px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfdff, #f1f6ff);
  border: 1px solid #dbe5f3;
  color: #243245;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.ak-contact-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dfe8f4;
  box-shadow: 0 16px 36px rgba(22, 40, 84, 0.08);
}

.ak-contact-box__time {
  font-size: 12px;
  font-weight: 800;
  color: #6f7786;
}

.ak-contact-box__tel {
  margin: 4px 0 6px;
  color: #07b153;
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.ak-contact-box__note {
  margin-bottom: 14px;
  color: #2d3440;
  font-size: 12px;
  font-weight: 800;
}

.ak-contact-box__cta {
  gap: 10px;
}

.ak-contact-box__cta .ak-btn {
  min-height: 56px;
  border-radius: 14px;
}

/* ---------- 共通ボタン強化 ---------- */
.ak-btn {
  border: none;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.ak-btn--tel {
  box-shadow: 0 12px 28px rgba(255,122,0,0.22);
}

.ak-btn--mail {
  box-shadow: 0 12px 28px rgba(42,103,255,0.22);
}

.ak-btn--line {
  box-shadow: 0 12px 28px rgba(6,199,85,0.22);
}

.ak-btn:hover {
  transform: translateY(-3px);
}

/* ---------- FV ---------- */
.ak-hero {
  padding: 38px 0 36px;
  background:
    radial-gradient(circle at right top, rgba(255,122,0,0.13), transparent 26%),
    radial-gradient(circle at left top, rgba(42,103,255,0.11), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.ak-hero__inner {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.ak-hero__label {
  margin-bottom: 14px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: #eaf1ff;
  color: #275ee7;
}

.ak-hero__title {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.14;
}

.ak-hero__desc {
  max-width: 560px;
  margin-bottom: 18px;
  color: #667084;
  font-size: 14px;
}

.ak-hero__badges {
  gap: 10px;
  margin-bottom: 0;
}

.ak-hero__badges span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #dbe5f3;
  background: #fff;
  color: #223147;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(22, 40, 84, 0.06);
}

.ak-hero__visual {
  position: relative;
}

.ak-hero__visual::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 82%;
  height: 82%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(42,103,255,0.10), rgba(255,122,0,0.10));
  z-index: 0;
}

.ak-hero__visual .ak-img-placeholder--hero {
  position: relative;
  z-index: 1;
  min-height: 640px;
  border-radius: 28px;
  border: 2px dashed #b8c7de;
  background: linear-gradient(135deg, #fbfdff 0%, #eef4ff 100%);
  box-shadow: 0 20px 48px rgba(22, 40, 84, 0.12);
  font-size: 16px;
}

/* ---------- 悩み ---------- */
.ak-worries {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.ak-worries__inner {
  align-items: center;
  gap: 42px;
}

.ak-check-list {
  gap: 16px;
}

.ak-check-list li {
  padding: 20px 18px 20px 60px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(22, 40, 84, 0.08);
}

.ak-check-list li::before {
  width: 30px;
  height: 30px;
}

/* ---------- 理由 ---------- */
.ak-reasons {
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.ak-reasons__grid {
  gap: 20px;
  align-items: stretch;
}

.ak-reason-card {
  padding: 26px 20px 22px;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(22, 40, 84, 0.08);
}

.ak-reason-card__num {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  font-size: 15px;
}

.ak-reason-card h3 {
  min-height: 3em;
  font-size: 20px;
}

.ak-reason-card p {
  color: #667084;
  line-height: 1.8;
}

/* ---------- CTA帯 ---------- */
.ak-cta-band {
  padding: 34px 0;
  background:
    radial-gradient(circle at left center, rgba(255,255,255,0.10), transparent 24%),
    linear-gradient(135deg, #1f4ccd 0%, #2a67ff 100%);
}

.ak-cta-band__inner {
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.ak-cta-band__lead {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.ak-cta-band__text h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.28;
}

.ak-cta-band__actions {
  gap: 12px;
}

.ak-cta-band__actions .ak-btn {
  min-width: 188px;
}

/* ---------- 3特徴 ---------- */
.ak-features {
  background: #fff;
}

.ak-features__grid {
  gap: 24px;
}

.ak-feature-card {
  padding: 18px;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(22, 40, 84, 0.08);
}

.ak-feature-card h3 {
  font-size: 22px;
}

.ak-feature-card p {
  color: #667084;
}

.ak-feature-card .ak-img-placeholder--card {
  border-radius: 18px;
}

/* ---------- 料金 ---------- */
.ak-pricing {
  background: linear-gradient(180deg, #f7fbff 0%, #fff7f1 100%);
}

.ak-pricing__grid {
  gap: 24px;
}

.ak-price-card {
  padding: 18px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(22, 40, 84, 0.08);
}

.ak-price-card h3 {
  font-size: 24px;
}

.ak-price-card__main {
  font-size: 31px;
  letter-spacing: -0.02em;
}

.ak-price-card__sub {
  font-size: 13px;
  color: #6f7786;
}

/* ---------- 実績 ---------- */
.ak-cases {
  background: linear-gradient(180deg, #fffaf5 0%, #fff 100%);
}

.ak-case {
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 38px rgba(22, 40, 84, 0.08);
}

.ak-case__tag {
  background: #eef3ff;
  color: #2458da;
  font-size: 12px;
}

.ak-case__head h3 {
  font-size: 26px;
}

.ak-voice {
  padding: 20px;
  border-radius: 18px;
}

/* ---------- 比較表 ---------- */
.ak-compare {
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}

.ak-table-wrap {
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(22, 40, 84, 0.08);
}

.ak-compare-table th,
.ak-compare-table td {
  padding: 18px 14px;
  font-size: 14px;
  line-height: 1.7;
}

.ak-compare-table thead th {
  font-size: 14px;
}

.ak-compare-table tbody td:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

/* ---------- エリア ---------- */
.ak-area {
  background: #fff;
}

.ak-area__chips {
  gap: 10px;
  margin-top: 18px;
}

.ak-area__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

/* ---------- 支払い方法 ---------- */
.ak-payments {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.ak-payments__grid {
  gap: 18px;
}

.ak-pay-card {
  min-height: 116px;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 32px rgba(22, 40, 84, 0.08);
  font-size: 19px;
  letter-spacing: 0.01em;
}

/* ---------- 会社紹介 ---------- */
.ak-company {
  background: linear-gradient(180deg, #fffaf5 0%, #fff 100%);
}

.ak-company__inner {
  gap: 36px;
}

.ak-company__info {
  gap: 12px;
}

.ak-company__info div {
  padding: 15px 16px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(22, 40, 84, 0.04);
}

.ak-company__info dt {
  font-size: 14px;
}

.ak-company__info dd {
  line-height: 1.8;
}

/* ---------- スタッフ ---------- */
.ak-staff {
  background: #fff;
}

.ak-staff__grid {
  gap: 24px;
}

.ak-staff-card {
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(22, 40, 84, 0.08);
}

.ak-staff-card h3 {
  font-size: 22px;
}

.ak-staff-card p {
  color: #667084;
}

/* ---------- 流れ ---------- */
.ak-flow {
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}

.ak-flow__grid {
  gap: 18px;
}

.ak-flow-card {
  padding: 24px 18px;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(22, 40, 84, 0.08);
}

.ak-flow-card__step {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.ak-flow-card h3 {
  font-size: 20px;
}

.ak-flow-card p {
  color: #667084;
}

/* ---------- FAQ ---------- */
.ak-faq {
  background: #fff;
}

.ak-faq__item {
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(22, 40, 84, 0.08);
}

.ak-faq__question {
  padding: 24px 60px 24px 22px;
  font-size: 18px;
  line-height: 1.6;
}

.ak-faq__answer {
  padding: 0 22px 22px;
}

.ak-faq__answer p {
  color: #667084;
  line-height: 1.9;
}

/* ---------- 最終CTA ---------- */
.ak-contact {
  padding: 74px 0;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,0.10), transparent 20%),
    linear-gradient(135deg, #1d47bb 0%, #2a67ff 100%);
}

.ak-contact__title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ak-contact__desc {
  color: rgba(255,255,255,0.92);
  line-height: 1.9;
}

.ak-contact__actions {
  gap: 12px;
}

.ak-contact__actions .ak-btn {
  min-width: 188px;
}

/* ---------- プレースホルダー見え方 ---------- */
.ak-img-placeholder {
  font-weight: 800;
  color: #60708a;
  border-color: #b9c7dc;
}

.ak-img-placeholder--card,
.ak-img-placeholder--case,
.ak-img-placeholder--map,
.ak-img-placeholder--portrait,
.ak-img-placeholder--portrait-sm {
  border-radius: 18px;
}

/* ---------- 固定CTA ---------- */
.ak-float-cta {
  right: 14px;
  bottom: 14px;
  gap: 10px;
}

.ak-float-cta a {
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

/* =========================================================
   タブレット以下
========================================================= */
@media (max-width: 1180px) {
  .ak-topbar__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ak-brand {
    text-align: center;
  }

  .ak-payments-mini__list {
    grid-template-columns: repeat(6, 1fr);
  }

  .ak-contact-box__cta {
    justify-content: center;
  }

  .ak-hero__inner,
  .ak-worries__inner,
  .ak-area__inner,
  .ak-company__inner {
    grid-template-columns: 1fr;
  }

  .ak-hero__content {
    text-align: center;
  }

  .ak-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .ak-hero__badges {
    justify-content: center;
  }

  .ak-hero__visual::after {
    display: none;
  }

  .ak-cta-band__inner,
  .ak-contact__inner {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   スマホ調整
========================================================= */
@media (max-width: 767px) {

  /* セクション余白 */
  .ak-worries,
  .ak-reasons,
  .ak-features,
  .ak-pricing,
  .ak-cases,
  .ak-compare,
  .ak-area,
  .ak-payments,
  .ak-company,
  .ak-staff,
  .ak-flow,
  .ak-faq,
  .ak-contact {
    padding: 60px 0;
  }

  .ak-container {
    width: min(100% - 20px, 100%);
  }

  /* ヘッダー */
  .ak-topbar {
    padding: 10px 0 8px;
  }

  .ak-topbar__inner {
    gap: 10px;
  }

  .ak-brand__lead {
    margin-bottom: 2px;
    font-size: 11px;
    text-align: center;
  }

  .ak-brand__logo {
    font-size: 24px;
    text-align: center;
    line-height: 1.15;
  }

  .ak-payments-mini {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .ak-payments-mini__title {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .ak-payments-mini__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .ak-payments-mini__list span {
    min-height: 34px;
    padding: 5px 4px;
    font-size: 10px;
    border-radius: 10px;
  }

  .ak-contact-box {
    padding: 12px;
    border-radius: 16px;
  }

  .ak-contact-box__time {
    margin-bottom: 3px;
    font-size: 11px;
    text-align: center;
  }

  .ak-contact-box__tel {
    display: block;
    margin-bottom: 4px;
    font-size: 28px;
    text-align: center;
    line-height: 1.05;
  }

  .ak-contact-box__note {
    margin-bottom: 0;
    font-size: 11px;
    text-align: center;
  }

  /* スマホではヘッダー内の重いCTAを消して、固定CTAに集約 */
  .ak-contact-box__cta {
    display: none;
  }

  /* FV */
  .ak-hero {
    padding: 22px 0 18px;
  }

  .ak-hero__inner {
    gap: 16px;
  }

  .ak-hero__label {
    margin-bottom: 8px;
    padding: 7px 12px;
    font-size: 10px;
  }

  .ak-hero__title {
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 1.2;
  }

  .ak-hero__desc {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.75;
  }

  .ak-hero__badges {
    gap: 8px;
    margin-bottom: 0;
  }

  .ak-hero__badges span {
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.35;
  }

  .ak-hero__visual .ak-img-placeholder--hero {
    min-height: 260px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.6;
  }

  /* 理由・特徴・料金・スタッフ */
  .ak-reason-card,
  .ak-feature-card,
  .ak-price-card,
  .ak-staff-card,
  .ak-flow-card {
    border-radius: 18px;
  }

  .ak-reason-card {
    padding: 20px 16px 18px;
  }

  .ak-reason-card h3,
  .ak-feature-card h3,
  .ak-staff-card h3 {
    font-size: 18px;
  }

  .ak-price-card__main {
    font-size: 26px;
  }

  .ak-case {
    padding: 18px;
    border-radius: 18px;
  }

  .ak-case__head {
    gap: 8px;
    align-items: flex-start;
    flex-direction: column;
  }

  .ak-case__head h3 {
    font-size: 20px;
  }

  .ak-compare-table th,
  .ak-compare-table td {
    padding: 14px 10px;
    font-size: 12px;
  }

  .ak-company__info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ak-faq__question {
    padding: 18px 48px 18px 16px;
    font-size: 16px;
  }

  .ak-faq__answer {
    padding: 0 16px 18px;
  }

  .ak-contact {
    padding: 54px 0 84px;
  }

  /* CTA帯は縦並び */
  .ak-cta-band {
    padding: 24px 0;
  }

  .ak-cta-band__lead {
    text-align: center;
  }

  .ak-cta-band__text h2 {
    font-size: 24px;
    text-align: center;
  }

  .ak-cta-band__actions .ak-btn,
  .ak-contact__actions .ak-btn {
    width: 100%;
    min-width: 0;
  }

  /* 固定CTA */
  .ak-float-cta {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    flex-direction: row;
    gap: 8px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 -8px 18px rgba(0,0,0,0.08);
  }

  .ak-float-cta a {
    min-width: auto;
    flex: 1;
    padding: 10px 4px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.25;
    box-shadow: none;
  }
}

/* =========================================================
   決済ロゴ画像用 追記CSS
========================================================= */

/* 共通ロゴ見え方 */
.ak-payment-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ak-payment-logo img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ヘッダー上部のミニロゴ */
.ak-payment-logo--mini {
  min-height: 44px;
  padding: 6px 8px;
}

.ak-payment-logo--mini img {
  max-height: 26px;
}

/* 中盤セクションのロゴカード */
.ak-payment-logo--card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.ak-payment-logo--card img {
  max-height: 42px;
}

/* 銀行振込だけ画像が細長い・小さい場合の保険 */
.ak-payment-logo--mini img[alt="銀行振込"],
.ak-payment-logo--card img[alt="銀行振込"] {
  max-height: 24px;
}

/* スマホで少しだけコンパクトに */
@media (max-width: 767px) {
  .ak-payment-logo--mini {
    min-height: 34px;
    padding: 4px 6px;
  }

  .ak-payment-logo--mini img {
    max-height: 20px;
  }

  .ak-payment-logo--card {
    padding: 10px;
  }

  .ak-payment-logo--card img {
    max-height: 32px;
  }

  .ak-payment-logo--mini img[alt="銀行振込"],
  .ak-payment-logo--card img[alt="銀行振込"] {
    max-height: 18px;
  }
}
/* =========================================================
   決済ロゴ：1枠に全アイコンを横並び
========================================================= */

/* 親の1枠 */
.ak-payment-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #d9e5ff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(42, 103, 255, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* スクロールバーを細く */
.ak-payment-strip::-webkit-scrollbar {
  height: 6px;
}
.ak-payment-strip::-webkit-scrollbar-thumb {
  background: rgba(42, 103, 255, 0.22);
  border-radius: 999px;
}
.ak-payment-strip::-webkit-scrollbar-track {
  background: transparent;
}

/* 子アイテムは「個別カード」にしない */
.ak-payment-strip .ak-payment-logo,
.ak-payment-strip .ak-payment-logo--mini,
.ak-payment-strip .ak-payment-logo--card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* ロゴ画像サイズ */
.ak-payment-strip .ak-payment-logo img,
.ak-payment-strip .ak-payment-logo--mini img,
.ak-payment-strip .ak-payment-logo--card img {
  display: block;
  width: auto;
  height: auto;
  max-height: 28px;
  max-width: 92px;
  object-fit: contain;
}

/* 銀行振込だけ縦横バランス保険 */
.ak-payment-strip img[alt="銀行振込"] {
  max-height: 24px;
  max-width: 110px;
}

/* ヘッダー側 */
.ak-payment-strip--header {
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 14px;
}

/* 支払い方法セクション側 */
.ak-payment-strip--section {
  margin-top: 18px;
  justify-content: center;
  gap: 18px;
  padding: 18px 22px;
}

/* タイトルとの間 */
.ak-payments-mini__title {
  margin: 0 0 8px;
}

/* もし既存の grid 指定が残っていても無効化 */
.ak-payments-mini__list,
.ak-payments__list,
.ak-payments__grid {
  display: block;
}

/* スマホ調整 */
@media (max-width: 767px) {
  .ak-payment-strip {
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .ak-payment-strip .ak-payment-logo img,
  .ak-payment-strip .ak-payment-logo--mini img,
  .ak-payment-strip .ak-payment-logo--card img {
    max-height: 20px;
    max-width: 72px;
  }

  .ak-payment-strip img[alt="銀行振込"] {
    max-height: 18px;
    max-width: 90px;
  }

  .ak-payment-strip--section {
    margin-top: 14px;
    padding: 12px 14px;
  }
}
/* 決済ロゴ中央寄せ 上書き */
.ak-payment-strip {
  justify-content: center !important;
}

.ak-payment-strip--header {
  justify-content: center !important;
}

.ak-payment-strip--section {
  justify-content: center !important;
}
/* =========================================
   FV画像差し替え用
========================================= */

.ak-hero__image {
  width: 100%;
}

.ak-hero__image picture,
.ak-hero__image img {
  display: block;
  width: 100%;
}

.ak-hero__image img {
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(19, 54, 122, 0.12);
  object-fit: cover;
}

@media (min-width: 768px) {
  .ak-hero__image img {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  .ak-hero__image img {
    border-radius: 18px;
  }
}
/* =========================================
   FV最終調整：枠なし + 上載せバッジ + 犬横CTA
========================================= */

/* セクション全体 */
.ak-hero {
  padding: 8px 0 24px;
  background: transparent;
}

.ak-hero .ak-container {
  max-width: 1180px;
}

/* FV本体 */
.ak-hero__media {
  position: relative;
}

/* 枠感を消す */
.ak-hero__image {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.ak-hero__image picture,
.ak-hero__image img {
  display: block;
  width: 100%;
}

.ak-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: none !important;
  box-shadow: none !important;
  object-fit: cover;
}

/* 上の帯とバッジを画像上に重ねる */
.ak-hero__overlay-top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.ak-hero__label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #2a67ff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(42, 103, 255, 0.10);
  backdrop-filter: blur(6px);
}

.ak-hero__badges--overlay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  pointer-events: none;
}

.ak-hero__badges--overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(42, 103, 255, 0.12);
  border-radius: 999px;
  color: #1d2a44;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(42, 103, 255, 0.08);
  backdrop-filter: blur(6px);
}

/* 犬キャラ横のCTA */
.ak-hero__floating-cta {
  position: absolute;
  right: clamp(100px, 12vw, 170px);
  bottom: 26px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 150px;
}

.ak-hero__floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 12px 22px rgba(20, 33, 61, 0.14);
  transition: transform .2s ease, opacity .2s ease;
}

.ak-hero__floating-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.ak-hero__floating-btn--tel {
  background: #2a67ff;
  color: #fff;
}

.ak-hero__floating-btn--mail {
  background: #ff8f2b;
  color: #fff;
}

.ak-hero__floating-btn--line {
  background: #19c94d;
  color: #fff;
}

/* もし画像外の古いFV文言が残っている場合に消す */
.ak-hero > .ak-container > .ak-hero__label,
.ak-hero > .ak-container > .ak-hero__badges,
.ak-hero > .ak-container > .ak-hero__title,
.ak-hero > .ak-container > .ak-hero__desc {
  display: none !important;
}

/* スマホ調整 */
@media (max-width: 767px) {
  .ak-hero {
    padding: 6px 0 18px;
  }

  .ak-hero__image img {
    border-radius: 20px;
  }

  .ak-hero__overlay-top {
    top: 12px;
    left: 12px;
    right: 12px;
    gap: 8px;
  }

  .ak-hero__label {
    padding: 8px 14px;
    font-size: 11px;
  }

  .ak-hero__badges--overlay {
    gap: 8px;
  }

  .ak-hero__badges--overlay span {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 11px;
  }
/* =========================================
   ヘッダー上部：社名の横に支払い方法
========================================= */

.ak-topbar__brand-pay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ak-topbar__brand-pay .ak-brand {
  flex: 0 0 auto;
}

.ak-topbar__brand-pay .ak-payments-mini {
  flex: 1 1 auto;
  margin: 0;
}

.ak-topbar__brand-pay .ak-payments-mini__title {
  margin: 0 0 8px;
  text-align: center;
}

.ak-topbar__brand-pay .ak-payment-strip--header {
  justify-content: center !important;
}

@media (max-width: 767px) {
  .ak-topbar__brand-pay {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 10px;
    align-items: center;
  }

  .ak-topbar__brand-pay .ak-brand__lead {
    margin: 0 0 2px;
    font-size: 11px;
    line-height: 1.3;
  }

  .ak-topbar__brand-pay .ak-brand__logo {
    font-size: 28px;
    line-height: 1.05;
  }

  .ak-topbar__brand-pay .ak-payments-mini {
    padding: 10px 10px !important;
    border-radius: 18px !important;
  }

  .ak-topbar__brand-pay .ak-payments-mini__title {
    margin: 0 0 6px;
    font-size: 11px;
    line-height: 1.3;
  }

  .ak-topbar__brand-pay .ak-payment-strip--header {
    padding: 8px 10px !important;
    gap: 8px !important;
  }

  .ak-topbar__brand-pay .ak-payment-strip__item img {
    max-height: 18px !important;
    max-width: 52px !important;
  }

  .ak-topbar__brand-pay .ak-payment-strip__item img[alt="銀行振込"] {
    max-height: 16px !important;
    max-width: 60px !important;
  }
}
/* =========================================
   お悩みセクション：チェックリスト型
========================================= */

.ak-worries {
  padding: 56px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 120, 80, 0.06), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(42, 103, 255, 0.05), transparent 24%),
    #f8f8f6;
}

.ak-worries__title {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  font-weight: 900;
  color: #222;
  letter-spacing: -0.02em;
}

.ak-worries__title span {
  color: #ff4b32;
}

.ak-worries__panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 18px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #edf1f7;
  box-shadow: 0 14px 34px rgba(26, 48, 86, 0.08);
}

.ak-worries__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ak-worries__list li {
  position: relative;
  margin: 0;
  padding: 19px 16px 19px 62px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #222;
  border-bottom: 1px dashed #bfc8d4;
}

.ak-worries__list li:last-child {
  border-bottom: none;
}

.ak-worries__list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 26px;
  height: 26px;
  border: 2px solid #d4dbe5;
  border-radius: 4px;
  background: #fff;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.ak-worries__list li::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 13px;
  height: 7px;
  border-left: 4px solid #ff3b30;
  border-bottom: 4px solid #ff3b30;
  transform: translateY(-72%) rotate(-45deg);
}

@media (max-width: 991px) {
  .ak-worries {
    padding: 46px 0;
  }

  .ak-worries__title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .ak-worries__list li {
    font-size: 20px;
    padding: 17px 14px 17px 56px;
  }
}

@media (max-width: 767px) {
  .ak-worries {
    padding: 34px 0;
  }

  .ak-worries__title {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.4;
  }

  .ak-worries__panel {
    padding: 12px 12px;
    border-radius: 16px;
  }

  .ak-worries__list li {
    padding: 14px 10px 14px 44px;
    font-size: 14px;
    line-height: 1.55;
  }

  .ak-worries__list li::before {
    left: 12px;
    width: 20px;
    height: 20px;
  }

  .ak-worries__list li::after {
    left: 18px;
    width: 10px;
    height: 5px;
    border-left-width: 3px;
    border-bottom-width: 3px;
  }
}
/* =========================================
   選ばれる理由：右上画像差し込み版
========================================= */

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

.ak-reasons__item {
  position: relative;
  padding: 26px 24px 24px;
  padding-top: 34px;
  padding-right: 150px; /* 右上画像ぶんの余白 */
  background: #fff;
  border: 1px solid #dce8fb;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(42, 103, 255, 0.07);
}

.ak-reasons__num {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dce9ff;
  color: #2f57c8;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.ak-reasons__image {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  background: transparent;
  border: none;
  box-shadow: none;
}

.ak-reasons__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
}

.ak-reasons__item h3 {
  margin: 64px 0 18px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  color: #202635;
}

.ak-reasons__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #55627a;
}

/* タブレット */
@media (max-width: 991px) {
  .ak-reasons__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ak-reasons__item {
    padding-right: 140px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .ak-reasons__item {
    padding: 22px 18px 18px;
    padding-top: 28px;
    padding-right: 118px;
    border-radius: 20px;
  }

  .ak-reasons__num {
    top: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .ak-reasons__image {
    top: 14px;
    right: 14px;
    width: 84px;
    height: 84px;
  }

  .ak-reasons__item h3 {
    margin: 58px 0 14px;
    font-size: 17px;
  }

  .ak-reasons__item p {
    font-size: 13px;
    line-height: 1.8;
  }
}
/* 3つの特徴 画像 */
.ak-features__image {
  margin: 0 0 16px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.ak-features__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .ak-features__image {
    margin-bottom: 12px;
  }

  .ak-features__image img {
    border-radius: 14px;
  }
}
/* 3つの特徴 画像サイズ調整 */
.ak-features__image {
  max-width: 180px !important;
  margin: 0 auto 14px !important;
}

.ak-features__image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 16px !important;
  object-fit: contain !important;
}

@media (max-width: 767px) {
  .ak-features__image {
    max-width: 120px !important;
    margin: 0 auto 12px !important;
  }

  .ak-features__image img {
    border-radius: 12px !important;
  }
}
/* =========================================
   3つの特徴：画像に枠追加 + 文字幅調整
========================================= */

.ak-features__item {
  text-align: center;
}

.ak-features__image {
  max-width: 170px !important;
  margin: 0 auto 10px !important;
  padding: 10px !important;
  background: #f8fbff !important;
  border: 1px solid #d9e6fb !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 18px rgba(42, 103, 255, 0.06) !important;
}

.ak-features__image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 120px !important;
  object-fit: contain !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 12px !important;
}

.ak-features__item h3 {
  max-width: 290px;
  margin: 0 auto 10px !important;
  line-height: 1.45;
}

.ak-features__item p {
  max-width: 290px;
  margin: 0 auto !important;
  line-height: 1.8;
}

/* スマホ */
@media (max-width: 767px) {
  .ak-features__image {
    max-width: 138px !important;
    margin: 0 auto 8px !important;
    padding: 8px !important;
    border-radius: 16px !important;
  }

  .ak-features__image img {
    max-height: 92px !important;
    border-radius: 10px !important;
  }

  .ak-features__item h3 {
    max-width: 240px;
    margin: 0 auto 8px !important;
    font-size: 17px !important;
  }

  .ak-features__item p {
    max-width: 240px;
    font-size: 13px !important;
    line-height: 1.75 !important;
  }
}
/* =========================================
   3つの特徴：カード全体だけ枠あり / 画像枠なし 上書き版
========================================= */

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

.ak-features__item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 22px 18px 20px !important;
  background: #fff !important;
  border: 1px solid #d9e6fb !important;
  border-radius: 22px !important;
  box-shadow: 0 10px 24px rgba(42, 103, 255, 0.06) !important;
  text-align: center !important;
}

.ak-features__item-title,
.ak-features__item h3 {
  margin: 0 0 14px !important;
  max-width: 250px !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
  font-weight: 800 !important;
  color: #2a3142 !important;
}

.ak-features__image {
  width: 100% !important;
  max-width: 150px !important;
  margin: 0 auto 14px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.ak-features__image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 110px !important;
  object-fit: contain !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.ak-features__item-text,
.ak-features__item p {
  margin: 0 !important;
  max-width: 250px !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #55627a !important;
}

/* タブレット以下 */
@media (max-width: 991px) {
  .ak-features__grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .ak-features__item {
    padding: 20px 16px 18px !important;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .ak-features__item {
    padding: 18px 14px 16px !important;
    border-radius: 18px !important;
  }

  .ak-features__item-title,
  .ak-features__item h3 {
    margin-bottom: 12px !important;
    max-width: 220px !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  .ak-features__image {
    max-width: 120px !important;
    margin-bottom: 12px !important;
  }

  .ak-features__image img {
    max-height: 88px !important;
  }

  .ak-features__item-text,
  .ak-features__item p {
    max-width: 220px !important;
    font-size: 13px !important;
    line-height: 1.75 !important;
  }
}
/* =========================================
   料金目安：小さめ画像 + カード横並び + スマホ横スクロール
========================================= */

.ak-pricing__scroll {
  overflow: visible;
}

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

.ak-pricing__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 20px;
  background: #fff;
  border: 1px solid #d9e6fb;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(42, 103, 255, 0.06);
  text-align: center;
}

.ak-pricing__title {
  margin: 0 0 14px;
  max-width: 240px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  color: #2a3142;
}

.ak-pricing__image {
  width: 100%;
  max-width: 120px;
  margin: 0 auto 14px;
}

.ak-pricing__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  border: none;
  box-shadow: none;
  background: transparent;
}

.ak-pricing__price {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  color: #ff6a3d;
}

.ak-pricing__range {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #6a778f;
}

.ak-pricing__text {
  margin: 0;
  max-width: 250px;
  font-size: 14px;
  line-height: 1.8;
  color: #55627a;
}

/* タブレット */
@media (max-width: 991px) {
  .ak-pricing__track {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 16px;
  }

  .ak-pricing__title {
    font-size: 18px;
  }

  .ak-pricing__price {
    font-size: 26px;
  }
}

/* スマホ：横スクロール */
@media (max-width: 767px) {
  .ak-pricing__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .ak-pricing__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    width: max-content;
  }

  .ak-pricing__item {
    width: 260px;
    flex: 0 0 260px;
    padding: 18px 14px 16px;
    border-radius: 18px;
  }

  .ak-pricing__title {
    margin-bottom: 12px;
    max-width: 200px;
    font-size: 16px;
  }

  .ak-pricing__image {
    max-width: 180px;
    margin-bottom: 12px;
  }

  .ak-pricing__image img {
    max-height: 68px;
  }

  .ak-pricing__price {
    margin-bottom: 6px;
    font-size: 24px;
  }

  .ak-pricing__range {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .ak-pricing__text {
    max-width: 200px;
    font-size: 13px;
    line-height: 1.75;
  }
}
/* 料金目安 画像サイズ再調整 */
.ak-pricing__image {
  max-width: 180px !important;
  margin-bottom: 12px !important;
}

.ak-pricing__image img {
  width: 100% !important;
  height: auto !important;
  max-height: 140px !important;
  object-fit: contain !important;
}

@media (max-width: 767px) {
  .ak-pricing__image {
    max-width: 180px !important;
    margin-bottom: 12px !important;
  }

  .ak-pricing__image img {
    max-height: 140px !important;
  }
}
/* =========================================
   作業実績：Before / After
========================================= */

.ak-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ak-cases__item {
  padding: 22px 18px 20px;
  background: #fff;
  border: 1px solid #d9e6fb;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(42, 103, 255, 0.06);
}

.ak-cases__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 800;
  color: #2a3142;
  text-align: center;
}

.ak-cases__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #55627a;
  text-align: center;
}

.ak-cases__compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ak-cases__photo {
  display: flex;
  flex-direction: column;
}

.ak-cases__label {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 82px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.ak-cases__label--before {
  background: #eef3fb;
  color: #4d5d78;
}

.ak-cases__label--after {
  background: #fff0ea;
  color: #ff6a3d;
}

.ak-cases__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #d9e6fb;
  box-shadow: 0 8px 18px rgba(42, 103, 255, 0.05);
}

/* PCでは2事例を横並びにしてもOK */
@media (min-width: 992px) {
  .ak-cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .ak-cases__item {
    padding: 18px 14px 16px;
    border-radius: 18px;
  }

  .ak-cases__title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .ak-cases__text {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.75;
  }

  .ak-cases__compare {
    gap: 10px;
  }

  .ak-cases__label {
    min-width: 70px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .ak-cases__photo img {
    border-radius: 14px;
  }
}
/* =========================================
   対応エリア
========================================= */

.ak-area__box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid #d9e6fb;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(42, 103, 255, 0.06);
}

.ak-area__title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 800;
  color: #2a3142;
}

.ak-area__lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.9;
  color: #55627a;
}

.ak-area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.ak-area__list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  background: #f8fbff;
  border: 1px solid #d9e6fb;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #2f4d86;
}

.ak-area__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #7a869d;
}

.ak-area__map {
  width: 100%;
}

.ak-area__map img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid #d9e6fb;
  box-shadow: 0 8px 18px rgba(42, 103, 255, 0.05);
}

/* タブレット */
@media (max-width: 991px) {
  .ak-area__box {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .ak-area__title {
    font-size: 22px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .ak-area__box {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .ak-area__title {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .ak-area__lead {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.8;
  }

  .ak-area__list {
    gap: 8px;
    margin-bottom: 12px;
  }

  .ak-area__list li {
    min-height: 34px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .ak-area__note {
    font-size: 11px;
  }

  .ak-area__map img {
    border-radius: 16px;
  }
}
/* =========================================
   会社紹介：左ビジュアル + 右カード 横並び
========================================= */

.ak-company__box {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.ak-company__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ak-company__visual img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}

.ak-company__card {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid #d9e6fb;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(42, 103, 255, 0.08);
}

.ak-company__heading {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #ff8a3d;
}

.ak-company__ruby {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: #555;
}

.ak-company__name {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  color: #222;
  letter-spacing: -0.02em;
}

.ak-company__lead {
  margin-bottom: 22px;
}

.ak-company__lead p {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #333;
}

.ak-company__info-title {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  color: #222;
}

.ak-company__info-title::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ff8a1f;
  flex: 0 0 auto;
}

.ak-company__table {
  margin: 0;
  padding-top: 14px;
  border-top: 2px solid #ff8a3d;
}

.ak-company__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 8px 0;
}

.ak-company__row dt {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
  color: #333;
}

.ak-company__row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* タブレット */
@media (max-width: 991px) {
  .ak-company__box {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ak-company__visual img {
    max-width: 300px;
  }

  .ak-company__name {
    font-size: 34px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .ak-company__box {
    gap: 14px;
  }

  .ak-company__visual img {
    max-width: 180px;
  }

  .ak-company__card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .ak-company__heading {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .ak-company__ruby {
    margin-bottom: 2px;
    font-size: 11px;
  }

  .ak-company__name {
    font-size: 24px;
    line-height: 1.15;
  }

  .ak-company__lead {
    margin-bottom: 16px;
  }

  .ak-company__lead p {
    font-size: 13px;
    line-height: 1.85;
  }

  .ak-company__info-title {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .ak-company__table {
    padding-top: 10px;
  }

  .ak-company__row {
    grid-template-columns: 82px 1fr;
    gap: 8px;
    padding: 6px 0;
  }

  .ak-company__row dt,
  .ak-company__row dd {
    font-size: 13px;
    line-height: 1.65;
  }
}
/* =========================================
   スタッフ紹介：横並びカード
========================================= */

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

.ak-staff__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d9e6fb;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(42, 103, 255, 0.06);
  overflow: hidden;
}

.ak-staff__image {
  background: #f8fbff;
}

.ak-staff__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
}

.ak-staff__body {
  padding: 18px 16px 18px;
  text-align: center;
}

.ak-staff__role {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  color: #ff8a3d;
  letter-spacing: 0.04em;
}

.ak-staff__name {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
  color: #2a3142;
}

.ak-staff__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #55627a;
}

/* タブレット */
@media (max-width: 991px) {
  .ak-staff__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .ak-staff__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ak-staff__item {
    border-radius: 18px;
  }

  .ak-staff__body {
    padding: 16px 14px;
  }

  .ak-staff__role {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .ak-staff__name {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .ak-staff__text {
    font-size: 13px;
    line-height: 1.8;
  }
}
/* =========================================
   スタッフ紹介：2人用 / 写真小さめ / 横並び
========================================= */

.ak-staff__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  max-width: 860px;
  margin: 0 auto;
}

.ak-staff__item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 20px 18px 18px !important;
  background: #fff !important;
  border: 1px solid #d9e6fb !important;
  border-radius: 22px !important;
  box-shadow: 0 10px 24px rgba(42, 103, 255, 0.06) !important;
  overflow: visible !important;
  text-align: center !important;
}

.ak-staff__image {
  width: 100% !important;
  max-width: 170px !important;
  margin: 0 auto 14px !important;
  background: #f8fbff !important;
  border: 1px solid #d9e6fb !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

.ak-staff__image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
}

.ak-staff__body {
  padding: 0 !important;
  text-align: center !important;
}

.ak-staff__role {
  margin: 0 0 4px !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  color: #ff8a3d !important;
}

.ak-staff__name {
  margin: 0 0 10px !important;
  font-size: 20px !important;
  line-height: 1.3 !important;
  font-weight: 900 !important;
  color: #2a3142 !important;
}

.ak-staff__text {
  margin: 0 auto !important;
  max-width: 280px !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #55627a !important;
}

/* スマホ */
@media (max-width: 767px) {
  .ak-staff__grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    max-width: none;
  }

  .ak-staff__item {
    padding: 18px 14px 16px !important;
    border-radius: 18px !important;
  }

  .ak-staff__image {
    max-width: 130px !important;
    margin-bottom: 12px !important;
    border-radius: 16px !important;
  }

  .ak-staff__name {
    margin-bottom: 8px !important;
    font-size: 18px !important;
  }

  .ak-staff__text {
    max-width: 240px !important;
    font-size: 13px !important;
    line-height: 1.75 !important;
  }
}
/* =========================================
   不用品回収の流れ
========================================= */

.ak-flow__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.ak-flow__item {
  position: relative;
  padding: 22px 16px 18px;
  background: #fff;
  border: 1px solid #d9e6fb;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(42, 103, 255, 0.06);
  text-align: center;
}

.ak-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: #dce9ff;
  color: #2f57c8;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.ak-flow__title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 800;
  color: #2a3142;
}

.ak-flow__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #55627a;
}

/* PCでカード間に矢印っぽさを少し出す */
@media (min-width: 992px) {
  .ak-flow__item:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    color: #b8c8ea;
  }
}

/* タブレット */
@media (max-width: 991px) {
  .ak-flow__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .ak-flow__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ak-flow__item {
    padding: 18px 14px 16px;
    border-radius: 18px;
  }

  .ak-flow__num {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    font-size: 16px;
  }

  .ak-flow__title {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .ak-flow__text {
    font-size: 13px;
    line-height: 1.75;
  }
}
/* =========================================
   FAQ：開閉式アコーディオン
========================================= */

.ak-faq__list {
  display: grid;
  gap: 14px;
}

.ak-faq__item {
  background: #fff;
  border: 1px solid #d9e6fb;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(42, 103, 255, 0.06);
  overflow: hidden;
}

.ak-faq__item summary {
  list-style: none;
}

.ak-faq__item summary::-webkit-details-marker {
  display: none;
}

.ak-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 56px 20px 18px;
  cursor: pointer;
}

.ak-faq__question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef4ff;
  color: #2f57c8;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.ak-faq__item[open] .ak-faq__question::after {
  content: "−";
}

.ak-faq__q,
.ak-faq__a {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.ak-faq__q {
  background: #dce9ff;
  color: #2f57c8;
}

.ak-faq__a {
  background: #fff0ea;
  color: #ff6a3d;
}

.ak-faq__question-text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
  color: #2a3142;
}

.ak-faq__answer {
  padding: 0 18px 18px;
}

.ak-faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 2px;
  border-top: 1px dashed #d8e2f4;
}

.ak-faq__answer-inner p {
  margin: 0;
  padding-top: 14px;
  font-size: 14px;
  line-height: 1.9;
  color: #55627a;
}

/* スマホ */
@media (max-width: 767px) {
  .ak-faq__list {
    gap: 12px;
  }

  .ak-faq__item {
    border-radius: 16px;
  }

  .ak-faq__question {
    gap: 10px;
    padding: 16px 48px 16px 14px;
  }

  .ak-faq__question::after {
    right: 14px;
    width: 26px;
    height: 26px;
    font-size: 18px;
  }

  .ak-faq__q,
  .ak-faq__a {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .ak-faq__question-text {
    font-size: 15px;
    line-height: 1.45;
  }

  .ak-faq__answer {
    padding: 0 14px 14px;
  }

  .ak-faq__answer-inner {
    gap: 10px;
  }

  .ak-faq__answer-inner p {
    padding-top: 12px;
    font-size: 13px;
    line-height: 1.8;
  }
}
/* =========================================
   TOP下部 お問い合わせフォーム
========================================= */

.ak-contact-form-section {
  padding: 56px 0 64px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 138, 61, 0.10), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(42, 103, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.ak-contact-form-section__box {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 28px 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d9e6fb;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(42, 103, 255, 0.10);
}

.ak-contact-form-section__kicker {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 18px;
  background: #dce9ff;
  border-radius: 999px;
  color: #2f57c8;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.ak-contact-form-section__title {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.35;
  font-weight: 900;
  color: #222;
  letter-spacing: -0.02em;
}

.ak-contact-form-section__lead {
  margin: 0 auto 22px;
  max-width: 720px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: #55627a;
}

.ak-contact-form-section__form {
  margin-top: 8px;
}

/* ================================
   Contact Form 7 LP風デザイン
================================ */

.ak-contact-form-section .cf7-ak-form {
  display: grid;
  gap: 22px;
}

.ak-contact-form-section .cf7-ak-group {
  display: grid;
  gap: 10px;
}

.ak-contact-form-section .cf7-ak-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.ak-contact-form-section .cf7-ak-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.ak-contact-form-section .cf7-ak-badge--required {
  background: #ff8a1f;
  color: #fff;
}

.ak-contact-form-section .cf7-ak-badge--optional {
  background: #4da3ff;
  color: #fff;
}

.ak-contact-form-section input[type="text"],
.ak-contact-form-section input[type="email"],
.ak-contact-form-section input[type="tel"],
.ak-contact-form-section select,
.ak-contact-form-section textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9e6fb;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
}

.ak-contact-form-section textarea {
  min-height: 180px;
  resize: vertical;
}

.ak-contact-form-section .cf7-ak-address {
  display: grid;
  gap: 10px;
}

.ak-contact-form-section .wpcf7-list-item {
  display: block;
  margin: 0 0 10px;
}

.ak-contact-form-section .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.ak-contact-form-section .cf7-ak-submit input[type="submit"] {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 999px;
  background: #ff8f2b;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 143, 43, 0.24);
}

.ak-contact-form-section .cf7-ak-submit input[type="submit"]:hover {
  opacity: 0.95;
}

.ak-contact-form-section .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}

/* スマホ */
@media (max-width: 767px) {
  .ak-contact-form-section {
    padding: 36px 0 44px;
  }

  .ak-contact-form-section__box {
    padding: 22px 14px 18px;
    border-radius: 20px;
  }

  .ak-contact-form-section__kicker {
    min-height: 30px;
    margin-bottom: 8px;
    padding: 5px 14px;
    font-size: 11px;
  }

  .ak-contact-form-section__title {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.45;
  }

  .ak-contact-form-section__lead {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.8;
  }

  .ak-contact-form-section .cf7-ak-form {
    gap: 18px;
  }

  .ak-contact-form-section .cf7-ak-label {
    font-size: 13px;
  }

  .ak-contact-form-section input[type="text"],
  .ak-contact-form-section input[type="email"],
  .ak-contact-form-section input[type="tel"],
  .ak-contact-form-section select,
  .ak-contact-form-section textarea {
    padding: 11px 12px;
    font-size: 13px;
  }

  .ak-contact-form-section .cf7-ak-submit input[type="submit"] {
    min-height: 48px;
    font-size: 14px;
  }
}
/* contactページ整え用 */
.ak-contact-page {
  max-width: 860px;
  margin: 40px auto;
  padding: 34px 28px 32px;
  background: #fff;
  border: 1px solid #d9e6fb;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(42, 103, 255, 0.10);
}

.ak-contact-page h2 {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.35;
  font-weight: 900;
  color: #222;
}

.ak-contact-page > p {
  margin: 0 auto 22px;
  max-width: 720px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: #55627a;
}

.ak-contact-page .cf7-ak-form {
  display: grid;
  gap: 22px;
}

@media (max-width: 767px) {
  .ak-contact-page {
    margin: 24px auto;
    padding: 22px 14px 18px;
    border-radius: 20px;
  }

  .ak-contact-page h2 {
    font-size: 22px;
    line-height: 1.45;
  }

  .ak-contact-page > p {
    font-size: 13px;
    line-height: 1.8;
  }
}
/* =========================================
   FVボタン 最終固定版
========================================= */
@media (max-width: 767px) {
  .ak-hero__media,
  .ak-hero__image {
    position: relative !important;
  }
  .ak-hero__floating-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 34px !important;
    padding: 8px 10px !important;
    font-size: 11px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 41 !important;
    pointer-events: auto !important;
  }
}
/* =========================================
   追従CTAを画面下に固定
========================================= */
.ak-sticky-cta,
.ak-follow-cta,
.ak-bottom-cta,
.ak-fixed-cta {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: auto !important;
  width: 100% !important;
  z-index: 9998 !important;
  margin: 0 !important;
}

.ak-sticky-cta a,
.ak-follow-cta a,
.ak-bottom-cta a,
.ak-fixed-cta a {
  pointer-events: auto !important;
}

/* 下部固定で本文が隠れないように */
body {
  padding-bottom: 74px;
}
/* =========================================
   追従CTA 完成版
========================================= */

/* 追従バー本体 */
.ak-sticky-cta,
.ak-follow-cta,
.ak-bottom-cta,
.ak-fixed-cta {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: auto !important;
  width: 100% !important;
  z-index: 9998 !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* ボタン共通 */
.ak-sticky-cta a,
.ak-follow-cta a,
.ak-bottom-cta a,
.ak-fixed-cta a,
.ak-sticky-cta__btn,
.ak-follow-cta__btn,
.ak-bottom-cta__btn,
.ak-fixed-cta__btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 58px !important;
  padding: 10px 8px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  pointer-events: auto !important;
}
/* hover */
.ak-sticky-cta__btn--tel:hover,
.ak-follow-cta__btn--tel:hover,
.ak-bottom-cta__btn--tel:hover,
.ak-fixed-cta__btn--tel:hover {
  background: #1f56e0 !important;
}

.ak-sticky-cta__btn--mail:hover,
.ak-follow-cta__btn--mail:hover,
.ak-bottom-cta__btn--mail:hover,
.ak-fixed-cta__btn--mail:hover {
  background: #ea7d18 !important;
}

.ak-sticky-cta__btn--line:hover,
.ak-follow-cta__btn--line:hover,
.ak-bottom-cta__btn--line:hover,
.ak-fixed-cta__btn--line:hover {
  background: #13b842 !important;
}

/* 3分割の境目 */
.ak-sticky-cta a + a,
.ak-follow-cta a + a,
.ak-bottom-cta a + a,
.ak-fixed-cta a + a {
  box-shadow: inset 1px 0 0 rgba(255,255,255,0.25) !important;
}

/* スマホで下に隠れないよう余白 */
body {
  padding-bottom: 62px !important;
}

@media (max-width: 767px) {
  .ak-sticky-cta,
  .ak-follow-cta,
  .ak-bottom-cta,
  .ak-fixed-cta {
    min-height: 58px !important;
  }

  .ak-sticky-cta a,
  .ak-follow-cta a,
  .ak-bottom-cta a,
  .ak-fixed-cta a,
  .ak-sticky-cta__btn,
  .ak-follow-cta__btn,
  .ak-bottom-cta__btn,
  .ak-fixed-cta__btn {
    min-height: 58px !important;
    font-size: 13px !important;
    padding: 8px 6px !important;
  }
}
/* =========================================
   CTA色 統一最終版
   青=電話 / オレンジ=メール / 緑=LINE
========================================= */

:root{
  --ak-blue:#2a67ff;
  --ak-orange:#ff8f2b;
  --ak-green:#19c94d;
  --ak-blue-hover:#1f56e0;
  --ak-orange-hover:#ea7d18;
  --ak-green-hover:#13b842;
}

/* =========================
   FV内ボタン
========================= */
.ak-hero__floating-btn--tel{
  background:var(--ak-blue)!important;
  color:#fff!important;
}
.ak-hero__floating-btn--mail{
  background:var(--ak-orange)!important;
  color:#fff!important;
}
.ak-hero__floating-btn--line{
  background:var(--ak-green)!important;
  color:#fff!important;
}

.ak-hero__floating-btn--tel:hover{
  background:var(--ak-blue-hover)!important;
}
.ak-hero__floating-btn--mail:hover{
  background:var(--ak-orange-hover)!important;
}
.ak-hero__floating-btn--line:hover{
  background:var(--ak-green-hover)!important;
}

/* =========================
   途中CTA
========================= */
.ak-cta-band .ak-btn--tel{
  background:var(--ak-blue)!important;
  color:#fff!important;
  border-color:var(--ak-blue)!important;
}
.ak-cta-band .ak-btn--mail{
  background:var(--ak-orange)!important;
  color:#fff!important;
  border-color:var(--ak-orange)!important;
}
.ak-cta-band .ak-btn--line{
  background:var(--ak-green)!important;
  color:#fff!important;
  border-color:var(--ak-green)!important;
}

.ak-cta-band .ak-btn--tel:hover{
  background:var(--ak-blue-hover)!important;
  border-color:var(--ak-blue-hover)!important;
}
.ak-cta-band .ak-btn--mail:hover{
  background:var(--ak-orange-hover)!important;
  border-color:var(--ak-orange-hover)!important;
}
.ak-cta-band .ak-btn--line:hover{
  background:var(--ak-green-hover)!important;
  border-color:var(--ak-green-hover)!important;
}

/* =========================
   追従ボタン
   ※ 1個目=電話 / 2個目=メール / 3個目=LINE 前提
========================= */
.ak-sticky-cta > a:nth-child(1),
.ak-follow-cta > a:nth-child(1),
.ak-bottom-cta > a:nth-child(1),
.ak-fixed-cta > a:nth-child(1),
.ak-sticky-cta__btn:nth-child(1),
.ak-follow-cta__btn:nth-child(1),
.ak-bottom-cta__btn:nth-child(1),
.ak-fixed-cta__btn:nth-child(1){
  background:var(--ak-blue)!important;
  color:#fff!important;
}

.ak-sticky-cta > a:nth-child(2),
.ak-follow-cta > a:nth-child(2),
.ak-bottom-cta > a:nth-child(2),
.ak-fixed-cta > a:nth-child(2),
.ak-sticky-cta__btn:nth-child(2),
.ak-follow-cta__btn:nth-child(2),
.ak-bottom-cta__btn:nth-child(2),
.ak-fixed-cta__btn:nth-child(2){
  background:var(--ak-orange)!important;
  color:#fff!important;
}

.ak-sticky-cta > a:nth-child(3),
.ak-follow-cta > a:nth-child(3),
.ak-bottom-cta > a:nth-child(3),
.ak-fixed-cta > a:nth-child(3),
.ak-sticky-cta__btn:nth-child(3),
.ak-follow-cta__btn:nth-child(3),
.ak-bottom-cta__btn:nth-child(3),
.ak-fixed-cta__btn:nth-child(3){
  background:var(--ak-green)!important;
  color:#fff!important;
}

.ak-sticky-cta > a:nth-child(1):hover,
.ak-follow-cta > a:nth-child(1):hover,
.ak-bottom-cta > a:nth-child(1):hover,
.ak-fixed-cta > a:nth-child(1):hover{
  background:var(--ak-blue-hover)!important;
}

.ak-sticky-cta > a:nth-child(2):hover,
.ak-follow-cta > a:nth-child(2):hover,
.ak-bottom-cta > a:nth-child(2):hover,
.ak-fixed-cta > a:nth-child(2):hover{
  background:var(--ak-orange-hover)!important;
}

.ak-sticky-cta > a:nth-child(3):hover,
.ak-follow-cta > a:nth-child(3):hover,
.ak-bottom-cta > a:nth-child(3):hover,
.ak-fixed-cta > a:nth-child(3):hover{
  background:var(--ak-green-hover)!important;
}
/* =========================================
   PCだけ整える用
========================================= */
@media (min-width: 768px) {

  /* FVの3ボタンをPCでは右下に置く */
  .ak-hero__media,
  .ak-hero__image {
    position: relative !important;
  }

  .ak-hero__floating-cta {
    position: absolute !important;
    left: auto !important;
    right: 24px !important;
    bottom: 24px !important;
    transform: none !important;
    width: 160px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    z-index: 40 !important;
  }

  .ak-hero__floating-btn {
    width: 100% !important;
    min-height: 40px !important;
    font-size: 13px !important;
    text-align: center !important;
  }

  /* 途中CTAをPCでは横並びに戻す */
  .ak-cta-band__actions,
  .ak-contact__actions {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 16px !important;
  }

  .ak-cta-band__actions .ak-btn,
  .ak-contact__actions .ak-btn {
    width: auto !important;
    min-width: 240px !important;
    max-width: 320px !important;
  }
}