*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #eb1255;
  --navy-dark:   #c80f45;
  --navy-mid:    #f03070;
  --orange:      #fcb900;
  --orange-dark: #e0a800;
  --orange-pale: #ffe7ec;
  --blue-accent: #eb1255;
  --sky:         #ffe7ec;
  --white:       #ffffff;
  --gray-50:     #fafafa;
  --gray-100:    #eeeff0;
  --gray-200:    #e5e7e8;
  --gray-400:    #b8bcc0;
  --gray-600:    #828990;
  --gray-800:    #333333;
  --green:       #1a9e5f;
  --green-pale:  #edfaf4;
  --red:         #c0392b;
  --red-pale:    #fef2f2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }


.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 16px; font-weight: 700;
  border-radius: 7px; text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 15px; }
.btn-md { padding: 13px 26px; }
.btn-lg { padding: 17px 66px; font-size: 18px; }

.btn-navy {
  background: #f47c20;
  color: #fff;
}
.btn-navy:hover { opacity: 0.85; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,124,32,0.35); }

.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover { opacity: 0.85; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,124,32,0.35); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.btn-outline-red {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-red:hover { background: #eb1255; border-color: #eb1255; color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: #eb1255; border-color: #eb1255; color: #fff; }

.btn-dark {
  background: transparent;
  color: var(--navy-dark);
  border: 2px solid var(--navy-dark);
}
.btn-dark:hover { background: var(--navy-dark); color: #fff; }

.sp-br { display: none; }

/* ===== SECTION BASE ===== */
.sec { padding: 56px 32px; }
.sec-inner { max-width: 1120px; margin: 0 auto; }

.sec-eyebrow {
  display: flex; align-items: center; gap: 8px;
  width: fit-content; margin: 0 auto;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.sec-eyebrow::before {
  content: '';
  display: block; width: 20px; height: 3px;
  background: var(--orange); border-radius: 2px;
}

.sec-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800 !important;
  text-align: center;
  color: #1b1b1b;
  line-height: 1.3 !important;
  margin-bottom: 18px;
  font-feature-settings: "palt";
}
.sec-lead {
  font-size: 16px; color: #333333;
  max-width: 580px; line-height: 1.9;
  text-align: center; margin-left: auto; margin-right: auto;
}

/* ===== FADE IN ===== */
.fi {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fi.show { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: 0.1s; }
.fi-d2 { transition-delay: 0.2s; }
.fi-d3 { transition-delay: 0.3s; }
.fi-d4 { transition-delay: 0.4s; }

/* ================================================
   01 HERO
================================================ */
.hero {
  position: relative;
  min-height: 74vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  background: #2d0a12;
}

@media(max-width:700px){
  .hero {
    position: relative;
    min-height: auto;
}}

.hero-photo-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 0;
}
.hero-photo-panel .hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-photo-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    #2d0515 0%,
    rgba(45,5,21,0.93) 25%,
    rgba(45,5,21,0.55) 42%,
    transparent 58%);
}

.hero-body {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; align-items: center;
  padding: 64px 80px 0px 100px;
}

.hero-inner {
  max-width: 580px;
  width: 100%;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  /* background: rgba(244,124,32,0.15); */
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 18px; font-weight: 700;
  padding: 6px 72px; border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.hero-tag-dot {
  width: 7px; height: 7px; background:#c0392b;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:0.4;transform:scale(1.4);}
}

.hero-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: #fff; line-height: 1.22 !important;
  margin-bottom: 10px;

}
.hero-title em {
  font-style: normal;
  color: rgb(251, 203, 107);
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700; color: rgba(255,255,255,0.85);
  margin-bottom: 22px; line-height: 1.5;
  letter-spacing: 0.05em;
}

.hero-desc {
  font-size: 15px; color: #ffffff;
  line-height: 1.9; margin-bottom: 36px;
  max-width: 460px;
}

/* Credential badges */
.hero-credential-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.hero-credential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.hero-credential-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(251,176,107,0.55);
  background: rgba(251,176,107,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fbb06b;
  position: relative;
}
.hero-credential-icon-wrap::before,
.hero-credential-icon-wrap::after {
  content: '❧';
  position: absolute;
  font-size: 14px;
  color: rgba(251,176,107,0.5);
  top: 50%;
  transform: translateY(-50%);
}
.hero-credential-icon-wrap::before { left: -16px; transform: translateY(-50%) scaleX(-1); }
.hero-credential-icon-wrap::after  { right: -16px; }
.hero-credential-text {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.hero-img-note {
  position: absolute;
  bottom: 12px;
  right: 16px;
  z-index: 3;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-btns .btn { border-radius: 100px; }
.hero-btns .btn-orange { padding: 16px 72px; font-size: 18px; }
.hero-btns .btn-outline-red { padding: 13px 26px; }

.hero-assurances {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.assurance {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.assurance::before {
  content: '✓'; color: #fbb06b; font-weight: 700;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats bar */
.hero-stats-bar {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  padding: 0 32px;
}
.hero-stat {
  padding: 28px 24px;
  text-align: center;
}
.hero-stat-num {
  font-size: 34px; font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: #fff; line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-num span { color:#f0a206;}
.hero-stat-lbl { font-size: 15px; color: #ffffff; font-weight: bold;}


/* ================================================
   MEDIA MARQUEE
================================================ */
.media-marquee-sec {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}

.media-marquee-label {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 20px;
}
.media-marquee-track-wrap {
  overflow: hidden;
  width: 100%;
}
.media-marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 10s linear infinite;
}
.media-marquee-track img {
  height: 76px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  flex-shrink: 0;
}
.media-marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================
   03 PAIN POINTS
================================================ */
.pain { background: #fff; }

.pain-head {
  margin-bottom: 64px;
  text-align: center;
}

.pain-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.pain-grid-row1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.pain-grid-row2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 32px;
  justify-content: center;
}
.pain-card {
  text-align: center;
  padding: 0 12px;
}
.pain-illust {
  width: 180px;
  height: 140px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-illust svg {
  width: 100%;
  height: 100%;
}
.pain-head-txt { font-size: 21px; font-weight: 700; color: #1b1b1b; margin-bottom: 12px; }
.pain-body-txt { font-size: 14px; color:#1b1b1b; line-height: 1.8; text-align: left;}

.pain-cta-banner {
  position: relative; overflow: hidden;
  padding: 78px 40px 70px;
  text-align: center;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.pain-cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.pain-cta-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.pain-cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(176, 13, 64, 0.88) 0%, rgba(235, 18, 85, 0.82) 45%, rgba(230, 80, 30, 0.80) 100%);

}
.pain-cta-content {
  position: relative; z-index: 2;
  max-width: 720px; width: 100%;
}
.pain-cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800; color: #fff; line-height: 1.25;
  margin-bottom: 24px;
}
.pain-cta-lead {
  font-size: 16px; color: rgba(255,255,255,0.88);
  line-height: 1.9; margin-bottom: 32px;
}
.pain-cta-tel-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.pain-cta-tel-hours {
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin: -14px 0 32px; text-align: center;
}
.pain-cta-tel {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 38px; font-weight: bold;
  font-family: 'Inter', sans-serif;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  cursor: default;
}
.pain-cta-tel svg { color: #fff; flex-shrink: 0; width: 38px; height: 38px; }
.pain-cta-tel:hover { color: #fff; }
.pain-cta-btns {
  display: flex; flex-direction: row; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.pain-cta-btns .btn {
  width: 340px; border-radius: 9999px;
  font-size: 23px; font-weight: 700;
  padding: 11px 19px;
  justify-content: center;
}
.btn-pain-primary {
  background: #fff; color: var(--navy);
  border: 2px solid #fff;
}
.btn-pain-primary:hover { opacity: 0.85; }
.btn-pain-outline {
  background: transparent; color: #fff;
  border: 2px solid #fff;
}
.btn-pain-outline:hover { background: #eb1255; border-color: #eb1255; color: #fff; }

@media(max-width:600px){
  .pain-cta-banner { padding: 32px 20px 32px; min-height: 0; }
  .pain-cta-lead { font-size: 13px; line-height: 1.4; }
  .pain-cta-tel { font-size: 28px; }
  .pain-cta-tel svg { width: 28px; height: 28px; }
  .pain-cta-btns { gap: 28px; }
  .pain-cta-btns .btn { width: 100%; max-width: 320px; font-size: 13px; padding: 10px 16px; }
}
.pain-cta-assurance::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* ================================================
   04 SERVICE FLOW
================================================ */
.flow { background: var(--gray-50); }

.flow-track {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}
.flow-step {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1.5px solid var(--gray-200);
  text-align: center;
  position: relative;
  transition: all 0.2s;
}
.flow-step:hover { }
.flow-step::before {
  content: attr(data-step);
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 100px;
  font-family: 'Inter', sans-serif;
}
.flow-step.final {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-color: var(--navy);
}
.flow-step.final::before { background: var(--orange); }

.flow-step-icon {
  width: 68px; height: 68px;
  background: var(--sky); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.flow-step-icon svg { width: 34px; height: 34px; color: var(--navy); }
.flow-step.final .flow-step-icon { background: rgba(255,255,255,0.12); }
.flow-step.final .flow-step-icon svg { color: #fff; }

.flow-step-title {
  font-size: 22px; font-weight: 800;
  color: #1b1b1b; margin-bottom: 10px;
  line-height: 1.5em;
}
.flow-step.final .flow-step-title { color: #fff; font-size: 22px;line-height: 1.5em; }
.flow-step-desc { font-size: 15px; color: #444; line-height: 1.7; }
.flow-step.final .flow-step-desc { color: #fff}

.flow-arrow { text-align: center; }
.flow-arrow svg { width: 24px; height: 24px; color: var(--orange); }

/* ================================================
   REASON (COMPARISON)
================================================ */
.reason-body {
  max-width: 780px;
  margin: 48px auto 0;
}
.reason-lead {
  font-size: 17px; color: var(--gray-800);
  line-height: 1.85; margin-bottom: 32px;
  text-align: left;
}
.reason-lead strong { color: var(--navy); }
.reason-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.reason-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(235,18,85,0.10);
}
.reason-card-num {
  flex-shrink: 0;
  font-size: 36px; font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1;
  opacity: 0.18;
  letter-spacing: -0.02em;
}
.reason-card-title {
  font-size: 24px; font-weight: 600; color: #1b1b1b;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  display: inline-block;
}
.reason-card-text {
  font-size: 15px; color: #111; line-height: 1.8; margin: 0;
}
@media(max-width:680px){
  .reason-cards { grid-template-columns: 1fr; }
}
.reason-close {
  font-size: 18px; font-weight: 700; color: #1b1b1b;
  text-align: left; line-height: 1.8;
  padding: 32px 24px;
  border-top: 1px solid var(--gray-200);
}
.reason-close strong { color: var(--navy); }

/* ================================================
   05 STRENGTHS
================================================ */
.strengths { background: #fff; }

.str-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 28px; margin-top: 56px;
}
.str-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: #fff;
}

.str-card-img { aspect-ratio: 16/7; overflow: hidden; }
.str-card-img img { width: 100%; height: 100%; object-fit: cover; }

.str-card-body { padding: 28px 28px 32px; }
.str-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--navy); color: #fff;
  border-radius: 8px; font-size: 13px; font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.str-title-wrap {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.str-title { font-size: 23px; font-weight: 700; color: #1b1b1b; margin-bottom: 0; }
.str-text { font-size: 14px; color: #111; line-height: 1.85; margin-bottom: 16px; }
.str-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.str-tag {
  background: var(--sky); color: var(--navy);
  font-size: 9px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
}

/* ================================================
   06 RESULTS   
================================================ */
.results { background: var(--gray-50); }

.results-img-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; margin-top: 56px;
}
.result-img-item {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 5px 10px rgba(2, 48, 71, 0.15);
  transition: transform 0.25s, box-shadow 0.25s;
  background: #fff;
}
/* .result-img-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
} */
.result-img-label {
  font-size: 18px; font-weight: 600; color: #1b1b1b;
  padding: 14px 20px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.pain-card.fi-d4 { display: none; }

.fi-d1 .result-img-label,
.fi-d2 .result-img-label,
.fi-d3 .result-img-label {
  background: #eb1255;
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.2);
}
.result-bg-story {
  padding: 28px 28px 24px;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  font-size: 20px;
}
.result-bg-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 20px;
}
.result-bg-title svg { color: var(--navy); flex-shrink: 0; }
.result-bg-body {
  display: flex; flex-direction: column; gap: 0;
}
.result-bg-block {
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 14px; color: var(--gray-800); line-height: 1.8;
}
.result-bg-block strong { color: var(--navy); font-weight: 700; }
.result-bg-block-label {
  font-size: 16px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 8px;
}
.result-bg-block--before {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.result-bg-block--before .result-bg-block-label { color: #111; }
.result-bg-block--after {
  background: var(--orange-pale);
  border: 1px solid rgba(235,18,85,0.15);
}
.result-bg-block--after .result-bg-block-label { color: var(--navy); }
.result-bg-arrow {
  text-align: center; font-size: 18px; color: var(--navy);
  padding: 6px 0;
}
.pdca-scroll-hint { display: none; }
.result-point-list {
  display: flex; flex-direction: column; gap: 14px;
}
.result-point-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: 10px;
  border-left: 4px solid var(--navy);
}
.result-point-num {
  flex-shrink: 0;
  font-size: 13px; font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--sky);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
}
.result-point-item p {
  font-size: 15px; color: var(--gray-800);
  line-height: 1.75; margin: 0;
  padding-top: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.result-point-note {
  font-size: 14px; color: #111;
  margin-left: 4px;
}
.do-text {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--gray-800);
}
.pdca-lead-txt {
  font-size: 22px; font-weight: 600;
  color: #1b1b1b; line-height: 1.7;
  padding: 24px 28px 8px;
  margin: 0;
  text-align: center;
}
.pdca-lead-txt strong { color: #eb1255; font-weight: 800; }
.pdca-lead-plain { color: inherit; font-weight: 700; font-size: 1em; }
.pdca-lead-strong { font-size: 1.3em; }
@media(max-width:600px){
  .pdca-lead-txt { font-size: 15px; padding: 18px 10px 4px; }
  .pdca-lead-strong { font-size: 1.4em; }
}

.fi-d3 .result-point-num {
  width: auto; height: auto;
  border-radius: 100px;
  padding: 4px 10px;
  background: #eb1255;
  color: #fff;
  font-size: 12px;
  margin-top: 3px;
}
.result-img-item img {
  width: 80%; height: auto; display: block;
  padding: 28px 0 16px;
  margin: 0 auto;
}
@media(max-width:700px){
  .results-img-grid { grid-template-columns: 1fr; }
  .result-img-item img { width: 100%; padding: 20px 0 12px; }
}

.results-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 28px; margin-top: 56px;
}
.result-card {
  background: #fff; border-radius: 18px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.result-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.09); }

.result-card-img { aspect-ratio: 16/6; overflow: hidden; position: relative; }
.result-card-img img { width: 100%; height: 100%; object-fit: cover; }
.result-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(55,5,20,0.75) 0%, rgba(55,5,20,0.1) 100%);
  display: flex; align-items: center; padding: 28px;
}
.result-badge-big {
  background: var(--orange); color: #fff;
  font-size: 20px; font-weight: 900;
  font-family: 'Inter', sans-serif;
  padding: 8px 18px; border-radius: 10px;
}

.result-body { padding: 24px 28px 28px; }
.result-brand { font-size: 17px; font-weight: 800; color: #1b1b1b; margin-bottom: 4px; }
.result-measure { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }

.result-ba {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 12px; margin-bottom: 20px;
}
.ba-box {
  border-radius: 10px; padding: 14px 16px; text-align: center;
}
.ba-before { background: var(--red-pale); border: 1px solid #fca5a5; }
.ba-after  { background: var(--green-pale); border: 1px solid #86efac; }
.ba-label { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; margin-bottom: 5px; }
.ba-before .ba-label { color: var(--red); }
.ba-after  .ba-label { color: var(--green); }
.ba-val { font-size: 22px; font-weight: 900; font-family: 'Inter', sans-serif; line-height: 1; }
.ba-before .ba-val { color: var(--red); }
.ba-after  .ba-val { color: var(--green); }
.ba-arrow { font-size: 20px; color: var(--gray-400); text-align: center; }

.result-chart { height: 140px; }

/* ================================================
   07 COMPARISON
================================================ */
.comparison { background: #fff; }

.cmp-wrap {
  margin-top: 56px;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--gray-200);
}
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; }

.cmp-table thead tr {
  background: var(--navy-dark);
}
.cmp-table th {
  padding: 18px 20px;
  font-weight: 700; font-size: 13.5px; color: rgba(255,255,255,0.55);
  text-align: center; border-right: 1px solid rgba(255,255,255,0.06);
}
.cmp-table th:first-child { text-align: left; color: rgba(255,255,255,0.4); }
.cmp-table th.hl { color: #fff; background: rgba(244,124,32,0.25); }
.cmp-table th.hl small { font-weight: 400; opacity: 0.7; }

.cmp-table td {
  padding: 16px 20px; text-align: center;
  border-bottom: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
  color: #111;
}
.cmp-table td:first-child { text-align: left; font-weight: 600; color: var(--gray-800); background: var(--gray-50); }
.cmp-table td.hl { background: rgba(244,124,32,0.04); }
.cmp-table tr:last-child td { border-bottom: none; }

.ico-o {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  font-weight: 800; font-size: 14px;
}
.ico-d {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: #fffbeb; color: #d97706;
  font-size: 13px;
}
.ico-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red-pale); color: var(--red);
  font-weight: 800; font-size: 14px;
}
.cmp-legend {
  display: flex; gap: 24px; margin-top: 18px;
  justify-content: flex-end; flex-wrap: wrap;
}
.legend-i { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #111; }

/* ================================================
   MEDIA LIST
================================================ */
.media-sec { background: var(--gray-50); }

.media-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 40px 0 32px;
}
.media-tab {
  padding: 9px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  border: 2px solid var(--gray-200);
  background: #fff; color: #111;
  cursor: pointer; transition: all 0.2s;
}
.media-tab.active, .media-tab:hover {
  background: var(--navy); color: #fff; border-color: var(--navy);
}

.media-category { display: none; }
.media-category.active { display: block; }

.media-cat-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400);
  margin-bottom: 16px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.media-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  cursor: default;
  min-height: 88px;
}
.media-item img {
  max-height: 48px; max-width: 140px;
  object-fit: contain;
}
.media-item-name {
  font-size: 11px; font-weight: 600;
  color: #111; text-align: center;
  line-height: 1.3;
}

.sns-note {
  background: var(--orange-pale);
  border: 1px solid rgba(244,124,32,0.25);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 8px;
}
.sns-note-icon { font-size: 20px; }
.sns-note p { font-size: 13.5px; color: #111; line-height: 1.8; }
.sns-note strong { color: var(--navy); }

/* Instagram influencer block */
.insta-block {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 40px;
}
.insta-block-text {
  flex: 1;
  min-width: 0;
}
.insta-block-title {
  font-size: 22px;
  font-weight: 800;
  color: #eb1255;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.insta-block-sub {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
  margin-bottom: 16px;
}
.insta-block-body {
  font-size: 14px;
  color: #444;
  line-height: 1.9;
}
.insta-block-img {
  flex-shrink: 0;
  width: 300px;
  text-align: center;
}
.insta-block-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media(max-width:600px){
  .insta-block {
    flex-direction: column;
    gap: 24px;
    padding: 24px 20px;
  }
  .insta-block-img {
    width: 160px;
    margin: 0 auto;
  }
  .insta-block-title { font-size: 18px; }
  .insta-block-sub { font-size: 14px; }
}

/* industry grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
.industry-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.industry-item img { max-height: 130px; max-width: 200px; object-fit: contain; }
.industry-item-name { font-size: 12px; font-weight: 700; color: #111; text-align: center; }

/* ================================================
   08 TEAM
================================================ */
.team { background: var(--gray-50); }

.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 56px;
}
.team-card {
  background: #fff; border-radius: 18px;
  border: 1px solid var(--gray-200); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }

.team-img { aspect-ratio: 4/3; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-img img { transform: scale(1.04); }

.team-body { padding: 24px 24px 28px; }
.team-spec-badge {
  display: inline-block;
  background: var(--orange-pale); color: var(--orange);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 10px;
}
.team-spec-badge--green { background: #edfaf4; color: #1a9e5f; }
.team-spec-badge--amber { background: #fff8ed; color: #d97706; }
.team-name { font-size: 20px; font-weight: 900; color: #1b1b1b; margin-bottom: 3px; }
.team-role { font-size: 12.5px; color: var(--gray-400); margin-bottom: 12px; }
.team-bio { font-size: 13.5px; color: #111; line-height: 1.75; }

/* ================================================
   09 FAQ
================================================ */
.faq { background: #fff; }

.faq-layout {
  max-width: 900px;
  margin: 56px auto 0;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: 12px; border: 1px solid var(--gray-200);
  background: #fff; overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  transition: background 0.15s; user-select: none;
  background-color: #fff0f3;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q-badge {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.faq-q-text { flex: 1; font-size: 18px; font-weight: 700; color: var(--gray-800); }
.faq-chevron { width: 18px; height: 18px; color: var(--gray-400); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 10px 24px 22px 72px;
  font-size: 17px; color: #3b3b3b; line-height: 1.9;
}

/* ================================================
   10 CTA CLOSING
================================================ */
.cta-sec {
  position: relative; overflow: hidden;
  padding: 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://valuepartners.co.jp/wp-content/uploads/2026/af_lp/img_15nenjisseki.webp');
  background-size: cover; background-position: center;
}
.cta-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(176, 13, 64, 0.88) 0%, rgba(235, 18, 85, 0.82) 45%, rgba(230, 80, 30, 0.80) 100%);
}
.cta-body {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
  padding: 78px 40px 70px;
  text-align: center;
  font-feature-settings: "palt";
}
.cta-label {
  display: inline-block;
  background: rgba(244,124,32,0.2);
  border: 1px solid rgba(244,124,32,0.35);
  color: #fbb06b;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  padding: 7px 18px; border-radius: 100px;
  margin-bottom: 28px;
}
.cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800; color: #fff;
  line-height: 1.25; margin-bottom: 24px;
}
.cta-tel-wrap {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 32px;
}
.cta-tel-hours {
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin: 0; text-align: center;
}
.cta-tel {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 42px; font-weight: 800;
  color: #fff; text-decoration: none;
  letter-spacing: 0.05em;
}
.cta-tel svg { width: 36px; height: 36px; flex-shrink: 0; }
.cta-tel:hover { color: #fff; }
.cta-lead {
  font-size: 16px; color: rgba(255,255,255,0.6);
  margin-bottom: 48px; line-height: 1.8;
}
.cta-btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 28px;
}
.cta-btns .btn {
  width: 340px; border-radius: 9999px;
  font-size: 23px; font-weight: 700;
  padding: 11px 19px;
  justify-content: center;
}
.cta-assurances {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
}
.cta-assur {
  display: flex; align-items: center; gap: 6px;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
}
.cta-assur::before { content: '✓'; color: #fbb06b; font-weight: 700; }

@media(max-width:600px){
  .cta-body { padding: 32px 20px 28px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 28px; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; font-size: 13px; padding: 10px 16px; }
}

/* ================================================
   FOOTER
================================================ */
.footer { background: var(--navy-dark); padding: 60px 32px 32px; }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 64px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; text-decoration: none;
}
.footer-logo-badge {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue-accent), var(--navy-mid));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 14px; color: #fff;
}
.footer-brand-name { font-size: 16px; font-weight: 700; color: #fff; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.8; }

.footer-nav-row { display: flex; gap: 56px; flex-wrap: wrap; justify-content: flex-end; }
.footer-nav-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a {
  font-size: 13.5px; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-nav-list a:hover { color: #fff; }

.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ================================================
   FLOATING CTA
================================================ */
.float-cta {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 150;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.float-cta.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: all 0.2s;
}
.float-btn-orange { background: var(--orange); color: #fff; }
.float-btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(244,124,32,0.4); }
.float-btn-white { background: #fff; color: var(--navy); border: 1.5px solid var(--gray-200); }
.float-btn-white:hover { border-color: var(--navy); transform: translateY(-2px); }


/* SP FV image (hidden on desktop) */
.hero-sp-img { display: none; }

/* ================================================
   RESPONSIVE
================================================ */
@media(max-width:1024px){
  .flow-track { grid-template-columns:1fr; }
  .flow-arrow { transform:rotate(90deg); padding:4px 0; display:block; text-align:center; }
}
@media(max-width:900px){
  .hero-body { padding: 120px 32px 60px; }
  .hero-photo-panel { width: 100%; opacity: 0.35; }
  .hero-inner { max-width: 100%; }
  .hero-stats-inner { grid-template-columns:repeat(2,1fr); }
  .str-grid { grid-template-columns:1fr; }
  .results-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .footer-nav-row { justify-content:flex-start; }
}
@media(max-width:600px){
  .sec { padding:42px 20px 20px 20px; }
  .hero-photo-panel { display: none; }
  .fv,
  .fv-wrap,
  .mv,
  .main-visual,
  .hero,
  .l-fv {
    background:
      radial-gradient(
        ellipse at 90% 0%,
        rgba(255, 220, 180, 0.32) 0%,
        rgba(200, 80, 60, 0.20) 35%,
        rgba(45, 10, 18, 0) 72%
      ),
      #2d0a12 !important;
  }
  .hero-body { padding: 28px 20px 24px; align-items: flex-start; }
  .hero-inner { text-align: center; }
  .hero-title { font-size: 33px; line-height: 1.1em; }
  .result-bg-block-label { font-size: 16px; }
  .hero-desc { font-size: 12px; color: #fff; margin-bottom: 10px; }
  .hero-sp-img { display: block; margin: 20px auto 28px; padding: 0 10px; }
  .hero-sp-img img { width: 100%; border-radius: 12px; display: block; }
  .hero-btns { justify-content: center; flex-direction: row; gap: 8px; flex-wrap: nowrap; }
  .hero-btns .btn { flex: none; justify-content: center; }
  .hero-btns .btn-orange { flex: 3; font-size: 14px; padding: 14px 12px; order: 2; }
  .hero-btns .btn-outline-red { flex: 2; font-size: 12px; padding: 14px 8px; order: 1; }
  .hero-credential-badges { justify-content: center; gap: 12px; }
  .hero-credential-icon-wrap { width: 52px; height: 52px; }
  .hero-credential-icon-wrap::before, .hero-credential-icon-wrap::after { font-size: 11px; }
  .hero-credential-icon-wrap svg { width: 22px; height: 22px; }
  .hero-credential-text { font-size: 10px; }
  .hero-img-note { bottom: auto; top: 87%; right: 12px; text-align: right; }
  .media-marquee-label { font-size: 15px; margin-bottom: 8px; padding: 8px; }
  .media-marquee-sec { padding: 10px 0; }
  .media-marquee-track img { height: 44px; }
  .media-marquee-track { gap: 16px; }
  .sec-lead { font-size: 13px; line-height: 1.3; }
  .sp-br { display: block; }
  .result-bg-title { font-size: 14px; }
  .pdca-scroll-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #eb1255;
    justify-content: flex-end;
    margin-bottom: 8px;
    animation: hint-slide 1.2s ease-in-out infinite alternate;
  }
  @keyframes hint-slide {
    from { opacity: 0.5; transform: translateX(0); }
    to   { opacity: 1;   transform: translateX(4px); }
  }
  .pdca-point-list {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 12px;
  }
  .pdca-point-list .result-point-item {
    flex: 0 0 78vw;
    scroll-snap-align: start;
    padding: 14px 16px;
    flex-direction: column;
  }
  .result-point-item p { font-size: 14px; line-height: 1.65; }
  .do-text { font-size: 12px; }
  .result-point-note { font-size: 12px; }
  .faq-q-text { font-size: 15px; }
  .faq-a-inner { font-size: 13px; }
  .cta-tel { font-size: 30px; gap: 10px; }
  .cta-tel svg { width: 26px; height: 26px; }
  .media-tab { font-size: 9px; }
  .media-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .industry-item { padding: 0; border-radius: 8px; gap: 4px; }
  .industry-item img { max-height: 90px; max-width: 100%; }
  .industry-item-name { font-size: 10px; padding-bottom: 4px; }
  .hero-tag { margin-left: auto; margin-right: auto; font-size: 13px; padding: 5px 16px; margin-bottom: 10px; }
  .hero-stats-inner { grid-template-columns:repeat(3,1fr); padding:0 12px; }
  .hero-stat { padding: 16px 8px; }
  .hero-stat-num { font-size: 16px; }
  .hero-stat-lbl { font-size: 9px; }
  .flow-track { grid-template-columns: 1fr; gap: 16px; }
  .flow-arrow { display: none; }
  .flow-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 12px;
    text-align: left;
    padding: 28px 20px 20px;
  }
  .flow-step-icon { grid-column: 1; grid-row: 1; margin: 0; align-self: center; }
  .flow-step-title { grid-column: 2; grid-row: 1; align-self: center; margin-bottom: 0; font-size: 18px; }
  .flow-step-title br { display: none; }
  .flow-step-desc { grid-column: 1 / -1; grid-row: 2; }
  .flow-step::before { left: 44%; transform: none; }
  .flow-step:hover { border-color: var(--gray-200); box-shadow: none; }
  .pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pain-grid-row1 { display: contents; }
  .pain-grid-row2 { display: contents; }
  .pain-card { overflow: hidden; word-break: break-word; padding: 0 6px; }
  .pain-illust { max-width: 100%; }
  .pain-illust svg { max-width: 100%; height: auto; }
  .pain-head { margin-bottom: 28px; }
  .pain-head-txt { font-size: 14px; letter-spacing: -0.02em; }
  .pain-body-txt { font-size: 12px; }
  .team-grid { grid-template-columns:1fr; }
  .float-cta { display: none; }
}


/* ================================================
   PROMISE SECTION
================================================ */
.promise {
  background: #ffffff;
  padding: 72px 32px;
}

.promise-heading {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  text-align: center;
  color: #1b1b1b;
  margin-bottom: 48px;
  position: relative;
  letter-spacing: 0.04em;
}
.promise-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: #eb1255;
  border-radius: 2px;
  margin: 14px auto 0;
}

/* OL — 6列グリッド（3+2レイアウト用） */
.promise .wp-block-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
  counter-reset: promise-counter;
}

/* 1〜3番目：各2列分 */
.promise .wp-block-list li:nth-child(1) { grid-column: span 2; }
.promise .wp-block-list li:nth-child(2) { grid-column: span 2; }
.promise .wp-block-list li:nth-child(3) { grid-column: span 2; }
/* 4・5番目：中央寄せで各3列分のうち左右を空けて2列分 */
.promise .wp-block-list li:nth-child(4) { grid-column: 2 / span 2; }
.promise .wp-block-list li:nth-child(5) { grid-column: 4 / span 2; }

/* LI — カード（blockで inline テキストを壊さない） */
.promise .wp-block-list li {
  counter-increment: promise-counter;
  display: block;
  position: relative;
  padding: 88px 108px 28px 28px;
  border-radius: 16px;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  box-shadow: 0 5px 10px rgba(2, 48, 71, 0.15);
  transition: box-shadow 0.1s linear;
  text-align: left;
  font-weight: 400;
}

.yellow_line{
  background-color: rgb(255, 242, 66);
  font-weight: 700;
}

/* 番号バッジ — absolute で上中央に固定 */
.promise .wp-block-list li::before {
  content: counter(promise-counter);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ed5e8b, #eb1255);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

/* 各カード背景画像 — 右中央に固定、テキストと重ならないよう右寄せ */
.promise .wp-block-list li:nth-child(1) {
  background-image: url('https://valuepartners.co.jp/wp-content/uploads/2026/af_lp/promise_01.png');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 82px auto;
}
.promise .wp-block-list li:nth-child(2) {
  background-image: url('https://valuepartners.co.jp/wp-content/uploads/2026/af_lp/promise_02.png');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 82px auto;
}
.promise .wp-block-list li:nth-child(3) {
  background-image: url('https://valuepartners.co.jp/wp-content/uploads/2026/af_lp/promise_03.png');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 82px auto;
}
.promise .wp-block-list li:nth-child(4) {
  background-image: url('https://valuepartners.co.jp/wp-content/uploads/2026/af_lp/promise_04.png');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 82px auto;
}
.promise .wp-block-list li:nth-child(5) {
  background-image: url('https://valuepartners.co.jp/wp-content/uploads/2026/af_lp/promise_05.png');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 82px auto;
}

/* スワイプヒント — PCは非表示 */
.promise-scroll-hint {
  display: none;
}

/* ハイライトマーカー */
.promise .epb-linemaker-yellow {
  background-color: rgb(255, 242, 66);
  font-weight: 700;
}

/* 締めテキスト */
.promise-footer {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1b1b1b;
  line-height: 2;
  padding: 28px 20px;
  background: #fff8f9;
  border-radius: 12px;
  border: 1px solid rgba(235, 18, 85, 0.12);
}

/* タブレット：2列 */
@media (max-width: 900px) {
  .promise .wp-block-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .promise .wp-block-list li:nth-child(1),
  .promise .wp-block-list li:nth-child(2),
  .promise .wp-block-list li:nth-child(3),
  .promise .wp-block-list li:nth-child(4),
  .promise .wp-block-list li:nth-child(5) {
    grid-column: span 1;
  }
  /* 5番目（最後の1枚）は2列に広げて中央感を出す */
  .promise .wp-block-list li:nth-child(5) {
    grid-column: 1 / -1;
  }
}

/* スマホ：横スワイプ */
@media (max-width: 600px) {
  .promise {
    padding: 48px 0 48px;
  }
  .promise .sec-inner {
    overflow: hidden;
  }
  .promise-heading {
    padding: 0 20px;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .promise-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    padding: 0 20px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #eb1255;
  }
  .promise-scroll-hint svg {
    animation: hint-slide 1s ease-in-out infinite alternate;
    color: #eb1255;
  }
  @keyframes promise-hint-slide {
    from { transform: translateX(0); opacity: 0.6; }
    to   { transform: translateX(5px); opacity: 1; }
  }
  .promise-scroll-hint svg {
    animation: promise-hint-slide 0.9s ease-in-out infinite alternate;
  }
  .promise .wp-block-list {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 20px 16px;
    margin-bottom: 28px;
    /* スクロールバー非表示 */
    scrollbar-width: none;
  }
  .promise .wp-block-list::-webkit-scrollbar {
    display: none;
  }
  .promise .wp-block-list li,
  .promise .wp-block-list li:nth-child(1),
  .promise .wp-block-list li:nth-child(2),
  .promise .wp-block-list li:nth-child(3),
  .promise .wp-block-list li:nth-child(4),
  .promise .wp-block-list li:nth-child(5) {
    grid-column: unset;
    flex: 0 0 72vw;
    scroll-snap-align: start;
    font-size: 13px;
    padding: 72px 80px 20px 20px;
  }
  .promise .wp-block-list li::before {
    width: 40px;
    height: 40px;
    font-size: 15px;
    top: 16px;
  }
  .promise-footer {
    font-size: 14px;
    margin: 0 20px;
  }
}

/* ===== WP override ===== */
html body.wp-singular.page-template-default.page.page-id-6287.wp-custom-logo.wp-theme-emanon-premium.wp-child-theme-emanon-premium-child.header_center.featured_cover.has-site-logo-img.is-overlay div#wrapper.l-container div#contents.l-contents div.l-content div.breadcrumb nav ol.breadcrumb__inner{
  display: none;
}

.l-content__inner {
  margin-top: -40px !important;
}

/* ハンバーガードロワー非表示　対応 */
html body.wp-singular.page-template-default.page.page-id-6287.wp-custom-logo.wp-theme-emanon-premium.wp-child-theme-emanon-premium-child.header_center.featured_cover.has-site-logo-img.is-overlay div#wrapper.l-container button.js-hamburger-menu.u-display-tablet.hamburger-menu-floating.has-menu.is-show{
  display: none;
}

