/* ================================================================
   CARDS LP — style-new.css  (Tailwind-free)
================================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy: #18085c;
  --dark-navy: #0e043a;
  --red: #ff3600;
  --brand: #231815;
  --gray-bg: #f2f3f3;
  --border: #e4e4e4;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-mono: "Roboto", sans-serif;
  --font-jost: "Jost", sans-serif;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: var(--font-sans);
}
body {
  background: #f2f3f3;
}
img {
  display: block;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
p {
  margin: 0;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ================================================================
   Page Layout
================================================================ */
.page-outer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.lp-wrap {
  max-width: 640px;
  width: 100%;
  background: white;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* ================================================================
   PC: Left logo column + right sidebar
================================================================ */
.pc-left {
  display: none;
}
.pc-nav {
  display: none;
}

@media (min-width: 641px) and (max-width: 899px) {
  body {
    padding: 40px 20px;
  }
  .page-outer {
    justify-content: center;
  }
  /* lp-wrap は既定どおり width:100% / max-width:640px（390px固定しない） */
}

@media (min-width: 900px) {
  body {
    outline: 1px solid #18085c;
    outline-offset: -40px;
  }
  .page-outer {
    gap: 5%;
    align-items: flex-start;
  }
  .lp-wrap {
    width: 390px;
    max-width: 390px;
    flex-shrink: 0;
    margin: 0;
  }

  .pc-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 156px;
    flex-shrink: 0;
    position: sticky;
    top: calc(50vh - 24px);
  }
  .pc-left-logo {
    width: 156px;
    height: auto;
  }

  .pc-nav {
    display: flex;
    flex-direction: column;
    width: 230px;
    flex-shrink: 0;
    position: sticky;
    top: 50%;
    overflow: hidden;
    transform: translateY(-50%);

    overflow: hidden;
  }
  .pc-nav-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
  }
  .pc-nav-badge {
    background: var(--navy);
    color: white;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.9px;
    padding: 6px 24px;
    width: 100%;
    text-align: center;
  }
  .pc-nav-title {
    font-weight: 700;
    font-size: 24px;
    color: #333;
    text-align: center;
    letter-spacing: 2px;
    padding: 8px 0 0;
  }
  .pc-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 16px;
  }
  .pc-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.48px;
    font-weight: 500;
    padding: 0 0 0 16px;
    transition: color 0.2s;
  }
  .pc-nav-item.active {
    font-weight: 700;
    color: var(--navy);
    padding-left: 0;
  }
  .nav-arrow {
    display: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
  }
  .pc-nav-item.active .nav-arrow {
    display: block;
  }
  .pc-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(to right, #ff6300, #e93a00);
    color: white;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.7px;
    padding: 12px 16px;
    border-radius: 4px;
  }
  .pc-nav-cta .badge-free-sm {
    background: white;
    color: #fd5f00;
    font-weight: 900;
    font-size: 11px;
    padding: 3px 4px;
    border-radius: 2px;
    white-space: nowrap;
  }
}

/* ================================================================
   Section wrapper
================================================================ */
.sec {
  padding: 48px 24px;
  padding: 0 24px 48px 24px;
  background: white;
}
.sec--gray {
  background: var(--gray-bg);
}
.sec--navy {
  background: var(--navy);
  padding: 68px 24px;
}
.sec--edge {
  padding-left: 0;
  padding-right: 0;
}
.sec--edge .sec-head {
  padding: 0 24px;
}

/* ---- Section heading group ---- */
.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.sec-head--sm {
  margin-bottom: 25px;
}
.sec-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  letter-spacing: 1.2px;
  line-height: 1.8;
}
.sec-bar {
  width: 100px;
  height: 2px;
  background: var(--navy);
}
.sec-sub {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.42px;
  color: var(--brand);
  text-align: center;
  margin-top: 8px;
}
.sec-sub.left {
  text-align: left;
}

/* ================================================================
   Color helpers
================================================================ */
.hl-red {
  color: var(--red);
}
.hl-navy {
  color: var(--navy);
}

/* ================================================================
   CTA Button
================================================================ */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to right, #ff6300, #e93a00);
  color: white;
  font-weight: 900;
  border-radius: 8px;
  padding: 14px 40px;
  width: 100%;
}
.btn-cta--sm {
  border-radius: 4px;
  padding: 14px 16px;
}
.btn-cta--lg {
  border-radius: 8px;
  padding: 16px 40px;
  max-width: 360px;
}

.btn-cta .badge-free {
  background: white;
  color: #fd5f00;
  font-weight: 900;
  font-size: 12px;
  padding: 4px;
  border-radius: 2px;
  white-space: nowrap;
}
.btn-cta--lg .badge-free {
  font-size: 16px;
  padding: 6px 5px;
}

.btn-cta .btn-text {
  font-size: 16px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.btn-cta--sm .btn-text {
  font-size: 14px;
  letter-spacing: 0.7px;
}
.btn-cta--lg .btn-text {
  font-size: 20px;
  letter-spacing: 1px;
}

/* ---- CTA block (deco + button) ---- */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.cta-label {
  display: flex;
  align-items: center;
  gap: 4px;
  text-align: center;
  width: 100%;
  justify-content: space-between;
}
.cta-label p {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-navy);
  /* white-space: nowrap; */
  /* margin-left: -8px; */
}

/* ================================================================
   Decorative diagonal slash  （二重平行斜線）
================================================================ */
/* cta-label は align-items: stretch で wrap 高さをテキストに合わせる */
.cta-label {
  display: flex;
  align-items: stretch;
  gap: 4px;
  text-align: center;
}
.cta-label p {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-navy);
}

.deco-slash-wrap {
  width: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
/* 1本線: 縦の細い棒を skewX で斜めに傾ける */
.deco-slash {
  display: block;
  width: 0;
  height: 100%;
  min-height: 28px;
  border-left: 1px solid var(--dark-navy);
}
.deco-slash--left {
  transform: skewX(19deg);
} /* \ 左側 */
.deco-slash--right {
  transform: skewX(-19deg);
} /* / 右側 */

/* ================================================================
   MV / HERO  Section
================================================================ */
.mv {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: auto;
  background: var(--gray-bg);
  overflow: hidden;
  margin-bottom: 48px;
  container-type: inline-size;
  container-name: mv;
}

/* 390px 基準のヒーローをラップし、コンテナ幅に常に合わせて等倍スケール（375px等では縮小、タブレットでは拡大） */
.mv-stage {
  position: relative;
  width: 390px;
  height: 702px;
  margin-inline: auto;
}

@container mv (min-width: 0px) {
  .mv-stage {
    zoom: calc(100cqw / 390px);
  }
}

/* container 非対応ブラウザ */
@supports not (container-type: inline-size) {
  @media (max-width: 640px) {
    .mv-stage {
      zoom: calc(min(640px, 100vw) / 390px);
    }
  }
  @media (min-width: 641px) and (max-width: 899px) {
    .mv-stage {
      zoom: calc(min(640px, 100vw - 40px) / 390px);
    }
  }
}

/* Laptop background */
.mv-laptop-wrap {
  position: absolute;
  left: 0;
  top: 61px;
  width: 400px;
  height: 317px;
  overflow: hidden;
}
.mv-laptop-img {
  position: absolute;
  width: 122.21%;
  height: 125.26%;
  left: 0;
  top: -22.23%;
  max-width: none;
  object-fit: cover;
}
.mv-laptop-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #f2f3f3 22.4%,
    rgba(242, 243, 243, 0) 72.8%
  );
}

/* 楽天運用代行 banner */
.mv-banner {
  position: absolute;
  left: 0;
  top: 25px;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 3.78px 24px 7.56px;
}
.mv-banner-text {
  font-weight: 700;
  font-size: 20px;
  color: white;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

/* CARDS logo (header) */
.mv-logo-wrap {
  position: absolute;
  left: 278px;
  top: 27px;
  width: 92px;
  height: 28px;
}
.mv-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

/* Headlines */
.mv-headline-1 {
  position: absolute;
  left: 18px;
  top: 75px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.434;
  letter-spacing: 0.84px;
  color: var(--navy);
  white-space: nowrap;
}
.mv-headline-2 {
  position: absolute;
  left: 18px;
  top: 120px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.16;
  white-space: nowrap;
}

/* Dashboard screenshot */
.mv-dashboard-wrap {
  position: absolute;
  left: 77px;
  top: 167px;
  width: 354px;
  height: 221px;
  overflow: hidden;
}
.mv-dashboard-img {
  position: absolute;
  width: 111.15%;
  height: 124.2%;
  left: -11.13%;
  top: -24.2%;
  max-width: none;
  object-fit: cover;
}

/* Feature badges (広告運用 / SALE対応) */
.mv-badges {
  position: absolute;
  left: 0;
  top: 208px;
  width: 155px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mv-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(to right, white 77%, rgba(255, 255, 255, 0));
}
.mv-badge-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.mv-badge-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--brand);
  white-space: nowrap;
}

/* Circle badge (戦闘型運用代行) */
.mv-circle-badge {
  position: absolute;
  left: 304px;
  top: 160px;
  width: 73.6px;
  height: 73.6px;
  border-radius: 50%;
  background: var(--gray-bg);
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-circle-badge-text {
  text-align: center;
  font-weight: 700;
  font-size: 14.4px;
  color: var(--brand);
  line-height: 1.4;
}

/* Stats bar */
.mv-stats {
  position: absolute;
  left: 0;
  top: 378px;
  width: 100%;
}
.mv-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--navy);
  height: 145px;
  color: white;
}
.mv-stats-col {
  position: relative;
  overflow: visible;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.mv-stats-col:last-child {
  border-right: none;
}
.mv-stats-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 63px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
}
.mv-stats-num {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 86px;
  display: flex;
  align-items: flex-end;
  gap: 1px;
  white-space: nowrap;
}
.mv-stats-big {
  font-family: var(--font-jost);
  font-size: 41px;
  font-weight: 500;
  letter-spacing: -1.64px;
  line-height: 1;
}
.mv-stats-unit {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  padding-bottom: 4px;
}
.mv-stats-unit--lg {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  padding-bottom: 4px;
}
.mv-footnote-mark {
  font-size: 8px;
  padding-bottom: 4px;
}
.mv-stats-note {
  position: absolute;
  left: 112px;
  top: 114px;
  font-size: 8px;
  line-height: 1.2;
}

/* Stats icon wrappers */
.mv-stat-building-icon {
  position: absolute;
  left: 40px;
  top: 22px;
  width: 51px;
  height: 30px;
  object-fit: contain;
}
.mv-stat-icon-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3px;
  width: 80px;
  height: 80px;
}
.mv-stat-icon {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
}

/* Footnotes */
.mv-stats-fn {
  background: var(--navy);
  padding: 0 24px 12px;
  position: relative;
  z-index: 1;
}
.mv-stats-fn p {
  font-size: 10px;
  line-height: 1.6;
  color: white;
}

/* Hero CTA wrapper */
.mv-cta-wrap {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 582px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.mv-cta-wrap .cta-label {
  width: 80%;
}
.mv-cta-text {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-navy);
  letter-spacing: 0.8px;
  white-space: nowrap;
}

/* ================================================================
   Section 1: 戦闘型運用代行
================================================================ */
.yakoto-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.box-bordered {
  border: 1px solid var(--navy);
}

.box-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 24px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
}
.box-header--navy {
  background: var(--navy);
}
.box-header--red {
  background: var(--red);
}

/* やらないこと list */
.yara-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}
.yara-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.yara-item--center {
  align-items: center;
}
.yara-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}
.yara-item--center img {
  margin-top: 0;
}
.yara-item-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.03em;
}
.yara-item-note {
  font-size: 12px;
  color: var(--brand);
  margin-top: 2px;
  letter-spacing: 0.03em;
}

/* やること */
.yaru-inner {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: 28px 16px;
}
.yaru-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.yaru-item img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.yaru-item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.yaru-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.48px;
  color: var(--brand);
}
.yaru-desc {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--brand);
}

/* Divider with label */
.divider-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}
.divider-label.mt {
  margin-top: 25px;
}
.divider-label::before,
.divider-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(24, 8, 92, 0.25);
}
.divider-label span {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.6px;
  white-space: nowrap;
}

/* Standard support items */
.std-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.std-item-header {
  display: flex;
  gap: 12px;
  align-items: center;
}
.std-thumb {
  flex-basis: 41%;
}
.std-thumb img {
  width: 100%;
}

/* Option note text */
.option-note-intro {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: var(--brand);
  margin-bottom: -7px;
}

/* Option grid */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.option-card {
  background: var(--gray-bg);
  height: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}
.option-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
}
.option-num::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 32px 32px 0 0;
  border-color: var(--navy) transparent transparent transparent;
}
.option-num span {
  position: absolute;
  top: 2px;
  left: 4px;
  color: white;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}
.option-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}
.option-name2 {
  font-size: 14px;
  color: var(--navy);
  line-height: 1;
}
.option-price {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
}
.option-price .unit {
  font-family: var(--font-sans);
  font-size: 10px;
}
.option-note {
  font-size: 10px;
  color: var(--brand);
}
.option-note2 {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.5;
}
.price-prefix {
  font-size: 10px;
  color: var(--red);
}

/* ================================================================
   Section 2: なぜやるのか
   画像は lp-wrap いっぱいに。見出し・本文のみ横パディング。
================================================================ */
#sec-why.sec {
  padding: 0 0 48px 0;
}
#sec-why .sec-head {
  padding-left: 24px;
  padding-right: 24px;
}
.why-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#sec-why .why-heading,
#sec-why .why-text {
  padding-left: 24px;
  padding-right: 24px;
}
.why-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.54px;
  color: var(--brand);
}
.why-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.7px;
  color: var(--brand);
}
#sec-why .why-img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

/* ================================================================
   Section 3: 他者との違い
================================================================ */
.diff-lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.54px;
  color: var(--brand);
  margin-bottom: 23px;
}
.diff-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.diff-card {
  border: 1px solid var(--border);
  padding: 24px;
}
.diff-num-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.diff-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 2.4px;
  line-height: 1;
  color: white;
  -webkit-text-stroke: 2px var(--navy);
  paint-order: stroke fill;
}
.diff-num-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--brand);
}
.diff-body {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--brand);
}

/* 上位プランおすすめ */
.recommend-section {
  margin-top: 24px;
}
.recommend-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.recommend-arrow {
  display: flex;
  justify-content: center;
  margin: 8px auto 16px;
  width: 38px;
}

.recommend-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.recommend-card {
  background: var(--gray-bg);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recommend-card-head {
  display: flex;
  gap: 12px;
  align-items: center;
}
.recommend-icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: white;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
/* .img-inner {
  position: absolute;
  width: 157px;
  height: 69px;
} */
.img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-inner--consulting {
  left: 3px;
  top: 5px;
}
.img-inner--marunage {
  left: -79px;
  top: 5px;
}

.recommend-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--brand);
}
.plan-tags {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: -6px;
}
.plan-tag {
  flex: 1;
  border: 1px solid var(--navy);
  background: white;
  padding: 6px 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.plan-separator {
  font-size: 18px;
  padding: 0 4px;
  color: var(--brand);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
  color: var(--red);
}
.plan-price .label {
  font-size: 14px;
  font-weight: 700;
}
.plan-price .num {
  font-family: var(--font-mono);
  font-size: 29px;
  font-weight: 700;
  line-height: 1.5;
}
.plan-price .unit {
  font-size: 18px;
  font-weight: 800;
}

/* ================================================================
   Section 4: 支援実績・事例
================================================================ */
.case-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-card {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  padding: 24px;
  background-size: cover;
  background-position: center;
}
.case-card.first {
  background-image: url(/wp-content/themes/株式会社cards/campaigns/images/202603-03/case-bg-beauty.webp);
  background-position: left 2%;
}
.case-card.second {
  background-image: url(/wp-content/themes/株式会社cards/campaigns/images/202603-03/case-bg-interior.webp);
}
.case-bg {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.3;
}
.case-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-bg--case1 {
  left: 131px;
  top: -18px;
  width: 232px;
  height: 232px;
}
.case-bg--case2 {
  left: 122px;
  top: -33px;
  width: 257px;
  height: 257px;
}

.case-content {
  position: relative;
  z-index: 1;
}
.case-tag {
  display: inline-flex;
  border: 1px solid var(--navy);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}
.case-tag-label {
  background: var(--navy);
  color: white;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 1;
}
.case-tag-value {
  background: white;
  color: var(--navy);
  font-weight: 500;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 1;
}
.case-result {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 7px;
}
.case-result-num {
  font-family: var(--font-mono);
  font-size: 41px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.01em;
  line-height: 1;
}
.case-result-pct {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
}
.case-result-text {
  font-weight: 900;
  font-size: 22px;
  color: var(--brand);
}
.case-measures {
  background: white;
  padding: 8px 13px;
  margin-bottom: 16px;
  width: 61%;
}
.case-measures-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.case-measures-list {
  font-size: 14px;
  color: var(--brand);
  list-style: disc;
  padding-left: 20px;
  letter-spacing: 0.7px;
}
.case-desc {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.7px;
  color: var(--brand);
}

/* 実績サマリー */
.summary {
  margin-top: 31px;
}
.summary-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--brand);
  text-align: center;
  margin-bottom: 12px;
}
.summary-rows {
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--border);
}
.summary-row--last {
  border-bottom: none;
}
.summary-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summary-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.summary-nums {
  display: flex;
  align-items: center;
  gap: 1px;
  color: var(--red);
}
.summary-big {
  font-family: var(--font-mono);
  font-size: 41px;
  font-weight: 800;
  letter-spacing: -1.64px;
  line-height: 1;
}
.summary-big--md {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 900;
}
.summary-unit {
  font-weight: 900;
  font-size: 22px;
}
.summary-unit--prefix {
  font-size: 22px;
}
.summary-lead {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.48px;
  color: var(--brand);
  margin-top: 2px;
}
.summary-alt {
  font-size: 25px;
  font-weight: 800;
  color: var(--red);
}

/* ================================================================
   Section 5: 支援開始までの流れ
================================================================ */
#sec-flow {
  padding: 40px 24px 48px;
}
.flow-list {
  display: flex;
  flex-direction: column;
}
.flow-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 16px;
}
.flow-item:last-child {
  padding-bottom: 0;
}
.flow-line {
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 0;
  border-left: 2px dashed rgba(24, 8, 92, 0.3);
}
.flow-step {
  background: var(--navy);
  color: white;
  padding: 8px;
  flex-shrink: 0;
  z-index: 1;
  min-width: 46px;
  text-align: center;
}
.flow-step-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
}
.flow-step-num {
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
}
.flow-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.flow-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.flow-title {
  font-weight: 900;
  font-size: 16px;
  color: var(--red);
  letter-spacing: 0.8px;
}
.flow-badge {
  border: 1px solid var(--red);
  border-radius: 99px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
}
.flow-desc {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.7px;
  color: var(--brand);
}

/* ================================================================
   Section 6: FAQ
================================================================ */
#sec-faq {
  padding-top: 48px;
  padding-bottom: 65px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  text-align: left;
  background: white;
}
.faq-q-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-q-icon span {
  font-family: var(--font-mono);
  font-weight: 900;
  color: white;
  font-size: 16px;
}
.faq-question {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--brand);
  flex: 1;
}
/* + / −：横線は常時、開いたときだけ縦線を消してマイナス表示 */
.faq-toggle {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.faq-toggle-svg {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.faq-toggle-bar--v {
  transition: opacity 0.2s ease;
}
.faq-toggle.open .faq-toggle-bar--v {
  opacity: 0;
}
.faq-answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-a-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 2px solid var(--navy);
  box-sizing: border-box;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-a-icon span {
  font-family: var(--font-mono);
  font-weight: 900;
  color: var(--navy);
  font-size: 16px;
}
.faq-answer-body {
  flex: 1;
  min-width: 0;
}
.faq-answer {
  display: none;
  padding: 8px 24px 16px 24px;
}
.faq-answer.open {
  display: block;
}
.faq-answer-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--brand);
}

/* ================================================================
   Section 7: プロフィール
================================================================ */
#sec-profile {
  padding-top: 48px;
}
.profile-card {
  background: var(--gray-bg);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  padding: 32px 23px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.profile-header {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.profile-photo {
  width: 150px;
  height: 150px;
  overflow: hidden;
  flex-shrink: 0;
  background: #878787;
  position: relative;
}
.profile-photo img {
  position: absolute;
  width: 182px;
  height: 156px;
  object-fit: cover;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.profile-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.profile-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.54px;
  color: var(--brand);
  white-space: nowrap;
}
.profile-sns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.profile-sns a {
  display: flex;
  align-items: center;
  line-height: 0;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.profile-sns a:hover,
.profile-sns a:focus-visible {
  opacity: 0.8;
}
.profile-bio {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.42px;
  color: var(--brand);
}

/* SNS icon sizes */
.sns-icon--fb {
  height: 24px;
  width: 24.5px;
  object-fit: contain;
}
.sns-icon--x {
  height: 18px;
  width: 18px;
  object-fit: contain;
}
.sns-icon--note {
  height: 20px;
  width: 49px;
  object-fit: contain;
}

/* ================================================================
   Final CTA
================================================================ */
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.final-cta-heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: white;
  text-align: center;
}
.final-cta-body {
  font-size: 16px;
  line-height: 1.6;
  color: white;
  text-align: center;
}

/* ================================================================
   360px 以下：FV・CTA 崩れ防止
================================================================ */
@media (max-width: 370px) {
  /* MV ヘッドライン縮小 */
  .mv-headline-1,
  .mv-headline-2 {
    font-size: 24px;
  }

  /* MV 統計バー：数値・ラベル縮小 */
  .mv-stats-big {
    font-size: 32px;
  }
  .mv-stats-unit--lg {
    font-size: 17px;
  }
  .mv-stats-unit {
    font-size: 11px;
  }
  .mv-stats-label {
    font-size: 12px;
  }

  /* CTA ボタン：横パディング圧縮 */
  .btn-cta {
    padding: 14px 20px;
  }
  .btn-cta--sm {
    padding: 12px 16px;
  }
  .btn-cta--lg {
    padding: 14px 20px;
  }

  /* Final CTA */
  .final-cta-heading {
    font-size: 18px;
  }
  .final-cta-body {
    font-size: 14px;
  }

  /* セクション横パディング縮小（よくある質問は除外） */
  .sec:not(#sec-faq) {
    padding: 40px 16px;
  }

  /* なぜやるのか：画像は全幅のまま、テキストだけ 16px */
  #sec-why .sec-head,
  #sec-why .why-heading,
  #sec-why .why-text {
    padding-left: 16px;
    padding-right: 16px;
  }
  #sec-why.sec {
    padding-bottom: 40px;
  }
}

/* ================================================================
   お問い合わせ（.svc-contact）・CF7 フォーム・送信 .svc-btn
   （PC別デザインなし：メディアクエリで分岐しない単一レイアウト）
================================================================ */

.svc-section-heading__highlight {
  color: #ff3600;
}

.svc-section-heading2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.svc-contact {
  background-color: #eaeaea;
  padding: 40px 24px 50px;
  scroll-margin-top: 50px;
}

.svc-contact__inner {
  max-width: 820px;
  margin-inline: auto;
}

.svc-contact__form {
  margin-top: 52px;
}

/* ---- フィールド ---- */
.svc-contact-form__field {
  display: grid;
  align-items: center;
  gap: 8px 0;
}

.svc-contact-form__field:not(:first-child) {
  margin-top: 23px;
}

.svc-contact-form__field--textarea {
  align-items: start;
  margin-top: 27px !important;
}

.svc-contact-form__label {
  margin-left: 7px;
  font-size: 18px;
  font-weight: 700;
  color: #231815;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.svc-contact-form__label span {
  display: inline-block;
  color: #ff3600;
  margin-left: 10px;
}

.svc-contact-form__label--required span {
  display: inline-block;
  position: relative;
}

.svc-contact-form__label--required span::before {
  content: "";
  display: inline-block;
  top: -1px;
  right: -17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ea7979;
  position: absolute;
}

.svc-contact-form__input {
  width: 100%;
  height: 72px;
  font-size: 14px;
  font-weight: 400;
  color: #231815;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  border: 1px solid #9a9b9b;
  border-radius: 6px;
  padding-left: 15px;
}

.svc-contact-form__input::-moz-placeholder {
  color: #bababa;
  font-family: "Noto Sans JP", sans-serif;
}

.svc-contact-form__input::placeholder {
  color: #bababa;
  font-family: "Noto Sans JP", sans-serif;
}

.svc-contact-form__field--textarea .svc-contact-form__input {
  height: 197px;
  resize: vertical;
  padding: 10px 20px 10px 12px;
}

.svc-contact-form__input-select-wrapper {
  position: relative;
}

.svc-contact-form__input-select-wrapper::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 7px 0 8px;
  border-color: #231815 transparent transparent transparent;
  pointer-events: none;
}

.svc-contact-form__input-select-wrapper select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 15px;
  font-weight: 700;
}

.svc-contact-form__submit-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.svc-contact-form__agree {
  font-size: 11px;
  font-weight: 500;
  color: #231815;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-top: 35px;
}

.svc-contact-form__agree a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- 送信ボタン（フォーム内で共通利用） ---- */
.svc-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  position: relative;
  z-index: 0;
  width: min(100%, 336px);
  height: 74px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-radius: 100px !important;
  background-image: linear-gradient(
    90deg,
    rgb(255, 99, 0) 0%,
    rgb(233, 58, 0) 100%
  );
  overflow: hidden;
}

.svc-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  background-color: #fff;
}

.svc-btn span {
  display: inline-block;
  width: 19px;
  height: 21px;
  background-image: url(../../service/img/icon-dl.svg);
  background-repeat: no-repeat;
  background-size: auto;
  pointer-events: none;
}

.svc-contact-form__submit-wrapper .svc-btn {
  display: flex;
  font-size: 20px;
  background: none;
  background-color: #ff3600;
}

.svc-contact-form__submit-wrapper .svc-btn:after {
  background-color: #0e043a;
}

@media (hover: hover) {
  .svc-contact-form__submit-wrapper .svc-btn:hover {
    color: #fff;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7 .wpcf7-response-output {
  border: none !important;
  text-align: center !important;
}
