@import url("globals.css");
@import url("styleguide.css");
/* ===== Root Variables & Theme Configuration ===== */ :root {
  /* Colors */
  --color-white: #ffffff;
  --color-text-primary: #313638;
  --color-text-secondary: #666;
  --color-bg-light: #f9f9f9;
  --color-bg-lighter: #f7faff;
  --color-blue-50: #f0f4fb;
  --color-blue-100: #e2e9ff;
  --color-blue-150: #d6e0ff;
  --color-blue-200: #cfe5ff;
  --color-blue-300: #becfff;
  --color-blue-400: #a8beff;
  --color-blue-500: #2955e1;
  --color-blue-600: #1446e3;
  --color-blue-700: #1869ff;
  --color-blue-800: #0052cc;
  --color-blue-900: #004aff;
  --color-blue-950: #032c6b;
  --color-blue-deep: #0a1745;
  --color-pink-light: #bababa;
  --color-cream: #fffceb;
  --color-red: #ff4757;
  --color-red-dark: #ff3838;
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #9ac9ff 0%, #2e64ff 40%, #0058ff 75%, #00a3ff 100%);
  --gradient-strength: linear-gradient(135deg, #cfe5ff 0%, #fff7c2 100%);
  --gradient-cta: linear-gradient(90deg, #1869ff 0%, #0058ff 100%);
  --gradient-cta-mid: linear-gradient(90deg, #4e8cff 0%, #1869ff 100%);
  --gradient-cta-reverse: linear-gradient(90deg, #1869ff 0%, #003fe0 100%);
  --gradient-button-red: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
  --gradient-button-red-hover: linear-gradient(135deg, #ff5a5a 0%, #ff0000 100%);
  --gradient-contact-bg: linear-gradient(to right, #d4e4f7 0%, #cfe5ff 15%, #e8f4ff 30%, #fffef0 70%, #fff9d6 85%, #fffbef 100%);
  --gradient-contact-cta: linear-gradient(135deg, #0052cc 0%, #1446e3 100%);
  --gradient-checkbox: linear-gradient(135deg, #3366ff 0%, #1446e3 100%);
  --gradient-service-bg: linear-gradient(135deg, #f4f8fd 0%, #dcebf9 50%, #edf7fc 100%);
  /* Shadows */
  --shadow-xs: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 3px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-blue-sm: 0 3px 8px rgba(24, 105, 255, 0.4);
  --shadow-blue-md: 0 4px 10px rgba(4, 46, 113, 0.25);
  --shadow-blue-lg: 2px 2px 20px rgba(226, 233, 250, 0.9);
  --shadow-blue-hover: 0 5px 12px rgba(24, 105, 255, 0.5);
  --shadow-red-sm: 0 4px 16px rgba(255, 71, 87, 0.3);
  --shadow-red-md: 0 6px 18px rgba(255, 71, 87, 0.45);
  --shadow-cta-sm: 1px 1px 3px rgba(14, 53, 177, 0.4);
  --shadow-dot: 0 2px 8px rgba(20, 70, 227, 0.3);
  /* Typography */
  --font-family-primary: "Zen Kaku Gothic New", Helvetica, sans-serif;
  --font-family-roboto: "Roboto", sans-serif;
  --font-family-roboto-black: "Roboto Black", "Roboto", sans-serif;
  /* Spacing */
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 20px;
  --spacing-6: 24px;
  --spacing-8: 32px;
  --spacing-10: 40px;
  --spacing-12: 48px;
  --spacing-16: 64px;
  --spacing-20: 80px;
  --spacing-24: 100px;
  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 50px;
  /* Transitions */
  --transition-fast: 200ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  --dot-light: rgba(41, 85, 225, 0.25);
}
/* SP-fv gradation color change */
@media (max-width: 768px) {
  :root {
    --gradient-hero: linear-gradient(135deg, #8abcf0 0%, /* 明るめライトブルー（白文字OK） */ #2f63e6 40%, /* 鮮度のあるブルー */ #0053e0 75%, /* コントラスト確保 */ #0098e6 100% /* ポジティブなシアン */
      );
  }
}
/* ===== Base Styles ===== */
body.lp-privacymark {
  background-color: var(--color-white);
  color: var(--color-text-primary);
  font-family: var(--font-family-primary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.btn-hover {
  transition: all var(--transition-normal);
}
.btn-hover:hover {
  transform: translateY(-2px);
}
.link-hover {
  transition: color var(--transition-normal);
}
.link-hover:hover {
  color: var(--color-blue-600);
}
.section-title {
  font-size: 40px;
}
/* ===== Header Navigation ===== */
.header-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--gradient-hero);
  border-radius: 0 0 0 160px;
  padding: var(--spacing-8) 0;
  position: relative;
  overflow: hidden;
}
.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 1200px;
  max-width: 94%;
  height: 80px;
  margin: 0 auto var(--spacing-10);
}
.nav-bar::before {
  content: "";
  position: absolute;
  background: var(--color-white);
  border-radius: 50px;
  box-shadow: var(--shadow-blue-md);
  z-index: 0;
  width: 760px;
  height: 56px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.logo {
  position: absolute;
  left: 40px;
  height: 52px;
  width: auto;
  object-fit: contain;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
}
.nav-menu {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 170px;
  z-index: 2;
  width: 520px;
}
.nav-menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: inline-block;
  padding: var(--spacing-2) var(--spacing-4);
  text-decoration: none;
  color: var(--color-blue-deep);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-normal);
  border-radius: 100px;
}
.nav-menu a:hover {
  color: var(--color-blue-700);
  background-color: rgba(0, 88, 255, 0.06);
}
.nav-contact {
  position: absolute;
  right: 20px;
  z-index: 3;
}
.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  padding: 10px 26px;
  border-radius: 40px;
  background: var(--gradient-cta);
  box-shadow: var(--shadow-blue-sm);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-normal);
}
.nav-contact-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  box-shadow: var(--shadow-blue-hover);
}
.nav-contact-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-normal), stroke var(--transition-normal);
}
.nav-contact-btn:hover .nav-contact-arrow {
  transform: translateX(4px);
}
/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-3);
  gap: var(--spacing-2);
  z-index: 10;
  position: relative;
}
.hamburger-line {
  width: 24px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-normal);
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}
.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
}
/* ===== Hero Section ===== */
.hero-container {
  display: contents;
}
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-10);
  width: 1200px;
  flex: 1;
  margin-top: var(--spacing-10);
  padding-bottom: var(--spacing-10);
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
.hero-text-area {
  text-align: center;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-6);
  max-width: 840px;
}
.hero-lead {
  font-size: clamp(28px, 5vw, 28px);
  letter-spacing: 0.05rem;
  font-weight: 700;
  line-height: 1.6;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.highlight-number {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  color: var(--color-white);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.hero-subcopy {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.8;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
.marker-gradient {
  background: linear-gradient(90deg, rgba(151, 195, 255, 0.45) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 212, 130, 0.45) 100%);
  font-weight: 700;
  font-size: 40px;
  /* マーカーの太さを固定 */
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 2.2em;
  padding: 0 6px;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--color-white);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.hero-maincopy {
  font-size: var(--font-5xl);
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.hero-maincopy .hero-highlight {
  font-size: 56px;
  letter-spacing: 1px;
  display: inline-block;
  color: var(--color-white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.hero-caption-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-12);
  margin-top: -2%;
  width: 100%;
  max-width: 1200px;
}
.hero-illustration img {
  width: 240px;
  height: auto;
  display: block;
}
.hero-caption-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-3);
  position: relative;
}
.hero-caption {
  font-size: var(--font-3xl);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  text-align: center;
  font-size: 24px;
}
.caption-line {
  width: 240px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
  opacity: 0.9;
  margin: 2px 0 2px -50px;
}
.line-top {
  transform: rotate(-5deg);
}
.line-bottom {
  transform: rotate(5deg);
}
/* ==============================
   CTA Box
============================== */
.cta-box {
  width: 375px;
  position: relative;
  z-index: 5;
}
.cta-inner {
  background-color: #fff;
  border-radius: 0 24px 24px 0;
  box-shadow: 0 3px 6px rgba(13, 59, 98, 0.5);
  padding: 32px 24px;
}
.cta-subtitle {
  font-size: 13px;
  text-align: center;
  color: #0d3b62;
}
.cta-title {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: #0d3b62;
  line-height: 1.6;
  margin-bottom: 1rem;
  ;
}
.cta-title span:first-child {
  color: #ff4b4b;
}
/* ==============================
   Form
============================== */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-form label {
  font-size: 15px;
  color: #0d3b62;
  margin-bottom: 6px;
}
.cta-form .required {
  background: #1446e3;
  color: #fff;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 6px;
}
.cta-form input[type="text"], .cta-form input[type="email"] {
  width: 100%;
  height: 40px;
  border: 2px solid #e0e6f5;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  box-sizing: border-box;
}
.cta-form input:focus {
  border-color: #1446e3;
  outline: none;
}
/* ===== ラベル〜入力の間隔 最適化 ===== */
.cta-form label {
  margin-bottom: 2px;
}
.cta-form input[type="text"], .cta-form input[type="email"] {
  margin-top: 8px;
}
.wpcf7-not-valid-tip {
  margin-top: 4px;
}
/* ==============================
   CF7 Error
============================== */
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e60023;
  margin-top: 6px;
}
/* ==============================
   Privacy Policy (1行固定・完全制御)
============================== */
.cta-privacy {
  text-align: center;
}
.cta-privacy-label, .cta-privacy-label * {
  display: inline-flex !important;
  align-items: center;
  white-space: nowrap !important;
  gap: 6px;
}
.cta-privacy-label br {
  display: none !important;
}
.cta-privacy-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
/* ==============================
   Main CTA Button
============================== */
.wpcf7 input.top-cta-button {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  max-width: 360px;
  height: 56px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ff5a5a, #ff3b3b);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  border: none;
  box-shadow: 0 6px 18px rgba(255, 75, 75, 0.4);
  cursor: pointer;
  transition: all .3s ease;
}
.wpcf7 input.top-cta-button:hover {
  transform: translateY(-2px);
}
.wpcf7 input.top-cta-button:disabled {
  opacity: 1;
  cursor: not-allowed;
}
/* ==============================
   Sub CTA
============================== */
.cta-sub-cta {
  
  padding-top: 16px;
  border-top: 1px dashed #d6def5;
  text-align: center;
	margin-top: 16px;
}
.cta-sub-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 95%;
  height: 56px;
  border-radius: 100px;
  background: linear-gradient(135deg, #1f63ff, #0d3bff);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
}
.cta-sub-arrow {
  width: 24px;
}
/* ===== Problem + Steps Background ===== */
.problem-steps-bg {
  position: relative;
  overflow: hidden;
}
.problem-steps-bg::after {
  content: "";
  position: absolute;
  top: 160px;
  right: -15vw;
  width: 1200px;
  max-width: 95vw;
  height: calc(100% + 20vh);
  background: var(--color-bg-lighter);
  border-radius: 120px 0 0 0;
  z-index: 0;
}
.problem-area, .steps-section {
  position: relative;
  z-index: 1;
}
/* ===== Problem Section ===== */
.problem-area {
  width: min(1200px, 92vw);
  margin: 0 auto clamp(40px, 6vw, 80px);
  padding-top: clamp(32px, 6vw, 80px);
}
.bubble-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bubble-wrap__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* ===== Section Heading ===== */
.section-heading {
  width: 100%;
  position: relative;
}
.section-tag {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-family: var(--font-family-primary);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  color: var(--color-blue-600);
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-4);
}
.section-tag__dot {
  width: 8px;
  height: 8px;
  background: var(--color-blue-600);
  border-radius: 50%;
  display: inline-block;
}
.section-title {
  font-family: var(--font-family-primary);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  color: var(--color-blue-deep);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0;
}
.section-heading--center {
  text-align: center;
}
.section-heading--center .section-tag {
  justify-content: center;
  text-align: center;
}
.section-heading--left {
  text-align: left;
}
.section-heading--left .section-tag {
  justify-content: flex-start;
  text-align: left;
}
.section-title__highlight {
  color: var(--color-blue-600);
}
.section-title__lead {
  color: var(--color-blue-deep);
}
.section-title__strong {
  color: var(--color-blue-deep);
  font-weight: 700;
  font-size: larger;
}
/* ===== Steps Section ===== */
.steps-section {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow-x: visible;
  margin: 2rem 0;
}
.steps-wrapper {
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: start;
  column-gap: var(--spacing-12);
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
}
.steps-left {
  position: relative;
}
.step-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: var(--spacing-6);
  padding: var(--spacing-3) var(--spacing-5);
  margin: 0 0 var(--spacing-8);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 1;
}
.step-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -9999px;
  width: calc(9999px + 100%);
  background: var(--color-white);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(20, 70, 180, 0.08) inset, 0 10px 24px rgba(30, 90, 200, 0.12);
  z-index: -1;
}
.step-item.is-active::before {
  background: var(--color-cream);
  box-shadow: 0 0 0 1px rgba(20, 70, 180, 0.08) inset, 0 10px 24px rgba(30, 90, 200, 0.12);
}
.step-num {
  background: var(--color-white);
  color: var(--color-blue-600);
  font-weight: 700;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px var(--color-blue-600) inset;
  transition: all var(--transition-normal);
}
.step-item.is-active .step-num {
  background: var(--color-blue-600);
  color: var(--color-white);
  box-shadow: none;
}
.step-text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-blue-deep);
}
.step-text strong {
  font-weight: 700;
}
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 20%;
  top: calc(100% + 4px);
  width: 4px;
  height: 28px;
  background: radial-gradient(circle, var(--color-blue-600) 60%, transparent 61%) center 0px / 4px 4px no-repeat, radial-gradient(circle, var(--color-blue-600) 60%, transparent 61%) center 10px / 4px 4px no-repeat, radial-gradient(circle, var(--color-blue-600) 60%, transparent 61%) center 20px / 4px 4px no-repeat;
  z-index: 5;
}
.steps-right {
  width: 100%;
}
.slider-frame {
  position: relative;
  padding: var(--spacing-8) var(--spacing-6);
  border-radius: var(--radius-lg);
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(90.05deg, #d6e0ff 0.04%, #a8beff 99.97%) border-box;
  border: 8px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
/* PC：高さ固定でOK */
.steps-slides {
  position: relative;
  min-height: 480px;
}
.step-detail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
}
.step-detail.is-active {
  opacity: 1;
  pointer-events: auto;
}
.detail-media {
  aspect-ratio: 4/3;
  width: 90%;
  margin: 0 auto var(--spacing-4);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F8FF 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.detail-media img {
  width: 75%;
  height: 100%;
  object-fit: cover;
}
.detail-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}
.detail-dots .dot {
  appearance: none;
  -webkit-appearance: none;
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 999px;
  background: var(--dot-light);
  border: none;
  cursor: pointer;
  display: block;
}
.detail-dots .dot.is-active {
  width: 8px;
  height: 8px;
  background: var(--color-blue-600);
}
.detail-badge {
  display: inline-block;
  background: var(--color-blue-600);
  color: var(--color-white);
  border-radius: 0px 100px 100px 0px;
  padding: var(--spacing-3) var(--spacing-8);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05rem;
  margin-bottom: var(--spacing-3);
  position: relative;
  left: -40px;
}
.detail-title {
  margin: 0 0 var(--spacing-2);
  color: var(--color-blue-deep);
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 22px);
}
.detail-text {
  margin: 0;
  line-height: 1.8;
  color: #0f1c4f;
}
.detail-body {
  padding: var(--spacing-4);
}
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  border: 1.5px solid var(--color-blue-600);
  background: var(--color-white);
  color: var(--color-blue-600);
  transition: all var(--transition-normal);
}
.slider-prev {
  left: -18px;
}
.slider-next {
  right: -18px;
  background: var(--color-blue-600);
  color: var(--color-white);
  border-color: var(--color-blue-600);
}
/* ===== Strength Section ===== */
.strength-section {
  position: relative;
  background: var(--gradient-strength);
}
.strength-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}
.strength-header {
  text-align: center;
  margin-bottom: var(--spacing-12);
  padding: var(--spacing-12) 0;
}
.strength-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 var(--spacing-12) 0;
  /* グラデーション文字 */
  background: linear-gradient(90deg, #0b3c6f 0%, /* ディープブルー */ #1e6fd9 45%, /* 明るめブルー */ #5bb6ff 100% /* ライトブルー */
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.strength-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-20);
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: var(--spacing-10);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-blue-lg);
  min-width: 280px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 70, 227, 0.02) 0%, rgba(0, 74, 255, 0.01) 100%);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #f4f6fc;
  border-radius: 50%;
  margin: 0 auto var(--spacing-6);
  transition: transform var(--transition-normal);
  position: relative;
  z-index: 1;
}
.stat-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.stat-label {
  font-size: var(--font-lg);
  color: var(--color-blue-deep);
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 1;
}
.bg-white {
  position: relative;
  z-index: 0;
}
@media (min-width: 769px) {
  .bg-white::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -40px;
    left: -20vw;
    width: calc(100% + 20vw);
    background: var(--color-white);
    border-radius: 0 120px 120px 0;
    z-index: -1;
  }
}
.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 0 0 8px 0;
  position: relative;
  z-index: 1;
}
.stat-number__value {
  font-size: 48px;
  font-weight: 800;
  color: #1f4fd8;
  line-height: 1;
}
.stat-number__unit {
  font-size: 24px;
  font-weight: 600;
  color: #1f4fd8;
  line-height: 1;
}
/* ===== Strong Section ===== */
.strong-section {
  padding: var(--spacing-12) 0;
}
.strong-section--with-logo {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .strong-section--with-logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    background: url("../img/logo_strong-section.png") no-repeat center center;
    background-size: contain;
    opacity: 0.8;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
  }
  .strong-section--with-logo > * {
    position: relative;
    z-index: 1;
  }
}
.strength-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-20);
  margin: 0 auto;
}
.feature-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--spacing-12);
  max-width: 980px;
  margin-inline: auto;
  align-items: center;
}
.feature-item.reverse {
  flex-direction: row-reverse;
}
.feature-content {
  flex: 1;
  text-align: left;
}
.feature-image-placeholder {
  flex: 0 0 360px;
  height: 260px;
  background: #c8ccd5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-title {
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--color-blue-deep);
  margin-bottom: var(--spacing-4);
  line-height: 1.6;
}
.highlight-band {
  display: inline-block;
  padding: 0 6px;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.75;
  background: linear-gradient(90deg, rgba(151, 195, 255, 0.45) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 212, 130, 0.45) 100%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--color-blue-deep);
  font-weight: 600;
  /* ★ PC用の余白はここ */
  margin: 0.2rem 0 1rem;
}
@media (max-width: 768px) {
  .highlight-band {
    display: inline;
    padding: 0;
    margin: 0; /* ← PC余白をリセット */
  }
  .highlight-band span {
    display: inline-block;
    margin: 0.3em 0; /* ← 行ごとの余白 */
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
}
.feature-text {
  font-size: var(--font-base);
  line-height: 1.8;
  color: var(--color-blue-deep);
}
/* ===== Feature Card アニメーション ===== */
.feature-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease, transform 0.7s ease;
}
/* 表示状態 */
.feature-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* スタッガー（自然な間） */
.feature-item:nth-of-type(1) {
  transition-delay: 0.05s;
}
.feature-item:nth-of-type(2) {
  transition-delay: 0.12s;
}
.feature-item:nth-of-type(3) {
  transition-delay: 0.19s;
}
.feature-item:nth-of-type(4) {
  transition-delay: 0.26s;
}
/* ===== Consultant Section ===== */
.consultant-section-wrapper {
  margin-top: var(--spacing-24);
}
.consultant-container {
  margin: 0 auto;
}
.consultant-section {
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--font-family-primary);
  color: var(--color-blue-deep);
  padding: 2rem 0;
}
.consultant-block {
  margin-bottom: var(--spacing-24);
}
.consultant-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-10);
  flex-wrap: wrap;
}
.consultant-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  /* ブランドロゴ＋パステルブルー */
  background:
    url("../img/logo_strong-section.png") no-repeat center center, linear-gradient(135deg, #cfe5ff 0%, #fff7c2 100%);
  background-size:
    80%, /* ロゴは控えめ */ cover;
  /* 影は1系統に集約 */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.consultant-img img {
  width: 94%;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: 50% 49%;
  position: absolute;
  top: 3%;
  left: 4%;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(0.98) contrast(1.02);
}
.highlight-band-consul {
  display: inline-block;
  padding: 0 6px;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.75;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--color-blue-deep);
  font-weight: 600;
  /* ★ PC用の余白はここ */
  margin: 0.2rem 0 1rem;
}
@media (max-width: 768px) {
  .highlight-band {
    display: inline;
    padding: 0;
    margin: 0; /* ← PC余白をリセット */
  }
  .highlight-band span {
    display: inline-block;
    margin: 0.3em 0; /* ← 行ごとの余白 */
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
}
.consultant-text {
  flex: 1;
}
.consultant-text h3 {
  font-size: var(--font-2xl);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: var(--spacing-2);
  color: var(--color-blue-deep);
}
.consultant-text h3 span {
  font-size: var(--font-xl);
  color: var(--color-blue-600);
}
.consultant-role {
  font-size: 16px;
  line-height: 1.5;
  margin-top: var(--spacing-1);
  color: var(--color-blue-muted);
}
.consultant-role strong {
  display: block;
  font-size: 22px;
  line-height: 1.8;
  color: var(--color-blue-deep);
}
.message-body {
  padding: 1rem;
}
.message-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: var(--spacing-lg);
  padding-left: 12px;
  border-left: 4px solid var(--color-blue-600);
  line-height: 1.4;
  color: var(--color-blue-deep);
}
.consultant-message {
  margin-top: var(--spacing-8);
  background: var(--color-white);
  padding: var(--spacing-8) var(--spacing-10);
  border-radius: var(--radius-lg);
}
.consultant-message p {
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: 0;
  color: #1a2555;
}
.consultant-message strong {
  letter-spacing: 0;
  font-weight: 700;
}
/* ===== Service Section ===== */
.service-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  margin-top: 3rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-20);
}
.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: 2px 2px 20px rgba(125, 159, 224, 0.16);
  padding: var(--spacing-10) var(--spacing-8);
  text-align: center;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
}
.service-icon-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: var(--spacing-10);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.service-card:nth-child(1) .service-icon-placeholder {
  background: #f6f9ff;
}
.service-card:nth-child(2) .service-icon-placeholder {
  background: #f7fbf2;
}
.service-card:nth-child(3) .service-icon-placeholder {
  background: #f1f5ff;
}
.service-card:nth-child(4) .service-icon-placeholder {
  background: #fbf7ff;
}
.service-card:nth-child(5) .service-icon-placeholder {
  background: #f0fbff;
}
.service-card:nth-child(6) .service-icon-placeholder {
  background: #f3f7ff;
}
.service-icon-placeholder img {
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.service-name {
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--color-blue-deep);
  margin-bottom: var(--spacing-6);
  font-size: 17px;
  line-height: 1.8rem;
}
.service-description {
  font-size: var(--font-base);
  color: var(--color-blue-deep);
  line-height: 1.72;
  text-align: left;
}
/* ===== Service Card アニメーション ===== */
.service-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease, transform 0.6s ease;
}
/* 表示状態 */
.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 少しずつ遅らせる（自然さUP） */
.service-card:nth-child(1) {
  transition-delay: 0.05s;
}
.service-card:nth-child(2) {
  transition-delay: 0.10s;
}
.service-card:nth-child(3) {
  transition-delay: 0.15s;
}
.service-card:nth-child(4) {
  transition-delay: 0.20s;
}
.service-card:nth-child(5) {
  transition-delay: 0.25s;
}
.service-card:nth-child(6) {
  transition-delay: 0.30s;
}
/* ===== Service CTA Section ===== */
.service-cta-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.service-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -12vw;
  width: calc(100% + 12vw);
  background: radial-gradient(1000px 500px at 85% 0%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, #1f55e0 0%, #3f74f2 45%, #5c8fff 100%);
  z-index: -1;
}
.cta-content-wrapper {
  width: min(12000px, 92vw);
  margin: 0 auto;
  padding: 0 16px;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.service-cta-section .cta-text {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.cta-text .small-text {
  display: block;
  margin-top: 12px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  opacity: 0.95;
}
.cta-large-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-family-roboto-black);
  font-size: clamp(120px, 18vw, 180px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  opacity: 0.04;
  white-space: nowrap;
  pointer-events: none;
}
.cta-mid {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  position: relative;
  z-index: 3;
}
.cta-mid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 48px;
  border-radius: 999px;
  background: var(--gradient-cta-mid);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.cta-mid-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  background: var(--gradient-cta-reverse);
}
.cta-mid-btn:active {
  transform: translateY(0);
}
.cta-mid-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.cta-mid-btn:hover .cta-mid-arrow {
  transform: translateX(6px);
}
/* ===== Case Studies Carousel ===== */
.case-studies-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem;
}
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  margin-bottom: 40px;
}
.carousel-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.case-studies-carousel {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.case-study-card {
  flex: 0 0 100%;
  min-width: 100%;
  background: linear-gradient(90.05deg, #d6e0ff 0.04%, #a8beff 99.97%);
  border-radius: 24px;
  padding: 16px;
  position: relative;
}
.case-study-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  background-color: #fff;
  border-radius: 16px;
  z-index: 0;
}
.case-content {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 0;
}
.case-number {
  display: inline-block;
  background: #1446e3;
  color: #fff;
  padding: 8px 20px;
  border-radius: 0 16px 16px 0;
  font-size: 16px;
  letter-spacing: 0.05rem;
  font-weight: 700;
  font-family: 'Roboto', monospace;
  position: absolute;
  top: 20px;
  left: -4px;
}
.case-title {
  font-size: 28px;
  margin-top: 40px;
  color: #003aff;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.case-company {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-blue-deep);
  margin-bottom: 40px;
}
.case-problem, .case-solution {
  margin-bottom: 20px;
  background: linear-gradient(90deg, #eef3ff 0%, #f5f7ff 50%, #f7f4ec 100%);
  padding: 20px;
  border-radius: 8px;
}
.case-problem {
  margin-bottom: 48px;
  position: relative;
  background: #F2F4F8;
}
.case-problem::after {
  content: '⋮';
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #1A3873;
  letter-spacing: 2px;
}
.case-label {
  font-size: 16px;
  font-weight: 700;
  color: #1446e3;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.case-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #1446e3;
  border-radius: 50%;
  margin-right: 8px;
}
.case-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-blue-deep);
}
.case-text strong {
  font-size: 17px;
  font-weight: 700;
}
.carousel-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1446e3;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(20, 70, 227, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.carousel-nav:hover {
  background-color: #003aff;
  transform: scale(1.05);
}
.carousel-nav:active {
  transform: scale(0.98);
}
.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.page-dot {
  width: 12px;
  height: 12px;
  background-color: #d0deff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-dot.active {
  background-color: #1446e3;
  box-shadow: 0 2px 8px rgba(20, 70, 227, 0.3);
}
/* ===== FAQ Section ===== */
.faq-section {
  background-image: url('../img/bg-faq.png');
  background-size: cover;
  background-position: center;
  padding: 60px 30px;
}
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-item {
  background-color: white;
  border-radius: 12px;
  box-shadow: 2px 2px 20px rgba(204, 215, 245, 0.6);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 2px 2px 25px rgba(204, 215, 245, 0.9);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  gap: 16px;
  background-color: white;
  transition: background-color 0.3s ease;
}
.faq-item.expanded .faq-question {
  background-color: #f7faff;
}
.faq-marker {
  font-family: 'Roboto Black', Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--color-blue-600);
  line-height: 1;
  flex-shrink: 0;
}
.question-text {
  flex: 1;
  font-size: 17px;
  color: var(--color-blue-deep);
  letter-spacing: 0.7px;
  margin: 0;
}
.toggle-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-blue-600);
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
/* 共通 - 左右対称の矢印 */
.toggle-icon::before, .toggle-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background-color: var(--color-blue-600);
  transform-origin: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  top: 50%;
}
/* 左矢印 */
.toggle-icon::before {
  transform: translateX(-2px) rotate(-40deg);
}
/* 右矢印 */
.toggle-icon::after {
  transform: translateX(2px) rotate(40deg);
}
/* 展開時（上向き矢印に反転） */
.faq-item.expanded .toggle-icon {
  background-color: var(--color-blue-600);
  border-color: var(--color-blue-600);
}
.faq-item.expanded .toggle-icon::before {
  transform: translateX(-2px) rotate(40deg);
  background-color: #fff;
}
.faq-item.expanded .toggle-icon::after {
  transform: translateX(2px) rotate(-40deg);
  background-color: #fff;
}
.faq-answer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-top: 1px solid #e4ebfa;
  background-color: white;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.faq-item.expanded .faq-answer {
  padding: 32px 24px;
}
.faq-marker.answer {
  color: #7294ff;
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}
.answer-text {
  flex: 1;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-blue-deep);
  line-height: 1.8;
}
.answer-text strong {
  font-weight: 700;
  font-size: 17px;
}
/* ===== Contact Section ===== */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-16) 0;
  background: none;
  z-index: 0;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: var(--gradient-contact-bg);
  z-index: -1;
}
.contact-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 var(--spacing-10);
}
.contact-header {
  text-align: center;
  margin-bottom: var(--spacing-12);
}
.section-heading .section-title {
  margin-bottom: var(--spacing-8);
}
.contact-description {
  font-size: var(--font-lg);
  font-weight: 500;
  color: var(--color-blue-deep);
  line-height: 1.8;
}
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
}
.form-checkbox-group {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-4) 0;
}
.form-checkbox-label {
  display: flex !important;
  align-items: center !important;
  gap: var(--spacing-3);
  cursor: pointer;
  user-select: none;
  flex-wrap: nowrap;
}
.form-checkbox-input {
  width: 24px;
  height: 24px;
  cursor: pointer;
  appearance: none;
  background: var(--color-white);
  border: 1px solid var(--color-blue-deep);
  border-radius: var(--radius-xs);
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin: 0 !important;
}
.form-checkbox-input:hover {
  border-color: #3366ff;
  box-shadow: 0 2px 8px rgba(51, 102, 255, 0.1);
}
.form-checkbox-input:checked {
  background: var(--gradient-checkbox);
  border-color: #1446e3;
  position: relative;
}
.form-checkbox-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
}
.form-checkbox-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(51, 102, 255, 0.2);
}
.form-checkbox-text {
  display: inline !important;
  font-size: var(--font-base);
  font-weight: 400;
  color: var(--color-blue-deep);
  line-height: 1.4;
  white-space: nowrap;
  margin: 0 !important;
}
.form-checkbox-text a {
  display: inline !important;
  white-space: nowrap;
}
/* CF7 internal elements */
.form-checkbox-label .wpcf7-form-control-wrap, .form-checkbox-label .wpcf7-form-control, .form-checkbox-label .wpcf7-list-item, .form-checkbox-label .wpcf7-list-item-label {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  gap: 4px;
  flex-wrap: nowrap;
}
.form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 56px;
  margin: var(--spacing-6) auto 0;
  padding: var(--spacing-4) var(--spacing-10);
  background: var(--gradient-button-red);
  color: var(--color-white);
  font-family: var(--font-family-primary);
  font-size: var(--font-lg);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-red-sm);
}
.form-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-md);
  opacity: 0.95;
}
.form-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-red-sm);
}
.form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}
.form-group--textarea {
  gap: var(--spacing-3);
}
.form-label {
  display: flex;
  align-items: flex-end;
  gap: var(--spacing-2);
  font-size: var(--font-xl);
  font-weight: 500;
  color: var(--color-blue-deep);
  line-height: 1.2;
  margin: 0.2rem 0;
}
.form-label-text {
  display: block;
}
.form-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--spacing-1) var(--spacing-3);
  background: var(--gradient-checkbox);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-xs);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.form-optional {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-blue-deep);
  opacity: 0.8;
  margin-left: var(--spacing-2);
}
.form-input, .form-textarea {
  padding: var(--spacing-4) var(--spacing-5);
  background: var(--color-white);
  border: 2px solid var(--color-blue-deep);
  border-radius: var(--radius-md);
  font-family: var(--font-family-primary);
  font-size: var(--font-base);
  color: var(--color-blue-deep);
  line-height: 1.6;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: #999;
  opacity: 0.8;
}
.form-input:hover, .form-textarea:hover {
  border-color: #3366ff;
  box-shadow: 0 4px 16px rgba(51, 102, 255, 0.1);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #3366ff;
  box-shadow: 0 0 0 3px rgba(51, 102, 255, 0.1), 0 4px 16px rgba(51, 102, 255, 0.15);
}
.form-input {
  height: 56px;
  width: 100%;
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
  width: 100%;
}
/* ===== CF7 acceptance 横並びの最終fix（label入れ子回避前提） ===== */
.form-checkbox-group .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin: 0 !important;
}
/* CF7が生成する「内側のlabel」を横並びに */
.form-checkbox-group .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item > label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  white-space: nowrap !important;
}
/* テキスト本体（CF7の実体）を改行禁止 */
.form-checkbox-group .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  margin: 0 !important;
}
/* checkboxの余白を殺す（ズレ防止） */
.form-checkbox-group .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
  margin: 0 !important;
  vertical-align: middle;
  flex-shrink: 0;
	width: 20px;
    height: 20px;
}
/* ===== Footer ===== */
.footer {
  background-color: var(--color-blue-950);
  padding: 1.6rem 0;
  position: relative;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: var(--spacing-10);
  padding: 0 var(--spacing-6);
}
.footer-left {
  flex: 0 0 auto;
}
.footer-right {
  flex: 1 1 auto;
  color: var(--color-white);
}
.footer-logo {
  width: 276px;
  height: 71px;
  object-fit: contain;
}
.footer-company {
  color: var(--color-white);
  font-size: var(--font-lg);
  font-weight: 700;
  margin-bottom: var(--spacing-2);
}
.footer-address {
  color: var(--color-white);
  font-size: var(--font-base);
  margin-bottom: 0;
}
.footer-copyright {
  color: var(--color-white);
  font-family: var(--font-family-roboto);
  font-size: 14px;
  text-align: center;
  margin-top: var(--spacing-8);
}
/* ===== Scroll to Top Button ===== */
.scroll-to-top {
  position: fixed;
  bottom: var(--spacing-8);
  right: var(--spacing-8);
  width: 42px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-contact-cta);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(20, 82, 204, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
}
.scroll-to-top svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
}
.scroll-to-top:hover {
  transform: translateY(8px) scale(1);
  box-shadow: 0 12px 40px rgba(20, 82, 204, 0.5);
}
.scroll-to-top:hover svg {
  transform: translateY(-4px);
}
.scroll-to-top:active {
  transform: translateY(4px) scale(0.95);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
/* ===== MOBILE RESPONSIVE DESIGN 






===== */
/* Tablet (1024px以下) */
@media (max-width: 1024px) {
  .nav-bar {
    width: 100%;
    padding: 0 var(--spacing-5);
  }
  .nav-menu {
    gap: var(--spacing-5);
    margin-right: var(--spacing-20);
  }
  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
  }
  .step-item {
    flex: 0 1 calc(50% - var(--spacing-2));
    margin: 0;
    padding: var(--spacing-3) var(--spacing-4);
  }
  .step-item::before {
    display: none;
  }
  .step-item.is-active {
    background: var(--color-cream);
    border: 2px solid var(--color-blue-600);
  }
  .step-item:not(:last-child)::after {
    display: none;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-6);
  }
}
/* Mobile (768px以下) */
@media (max-width: 1199px) {
  /* =========================
   SP追従ヘッダー：初期状態
========================= */
  body.menu-open {
    overflow: hidden;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--gradient-hero);
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
    padding: var(--spacing-16) var(--spacing-5) var(--spacing-10);
  }
  .nav-menu-wrapper.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  .nav-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }
  .nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .nav-menu {
    flex-direction: column;
    gap: var(--spacing-6);
    width: 100%;
    margin-right: 0;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: var(--spacing-4);
  }
  .nav-menu a {
    display: block;
    color: var(--color-white);
    font-size: 18px;
    padding: var(--spacing-3) 0;
    border-radius: 0;
  }
  .nav-menu a:hover {
    background-color: transparent;
    text-decoration: underline;
  }
  .nav-contact {
    position: static;
    width: 100%;
    margin-top: var(--spacing-4);
  }
  .nav-contact-btn {
    display: flex;
    width: 67%;
    margin: 0 auto;
    justify-content: center;
    font-size: 17px;
    background: var(--gradient-button-red);
    letter-spacing: 0.05rem;
    height: 48px;
  }
  .header-area {
    border-radius: 0 0 0 60px;
    padding: var(--spacing-4) 0;
  }
  .nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 0 var(--spacing-4);
    z-index: 1100;
    /* 初期は背景なし */
    background: transparent;
    box-shadow: none;
    transition:
      background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  }
  /* スクロール後 */
  .nav-bar.is-scrolled {
    height: 56px;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 90, 220, 0.88), rgba(90, 140, 255, 0.88));
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 40, 120, 0.25);
  }
  /* ヘッダー分の余白 */
  body {
    padding-top: 60px;
  }
  /* =========================
   SP追従ヘッダー
========================= */
  .nav-bar::before {
    display: none;
  }
  .logo {
    height: 38px;
    left: 16px;
    top: 56%;
  }
  .hero-section {
    width: 100%;
    flex-direction: column;
    gap: var(--spacing-4);
    margin: 0;
    align-items: center;
  }
  .hero-text-area {
    gap: var(--spacing-3);
    flex: 1;
    margin-top: 60px;
  }
  .hero-lead {
    font-size: 22px;
  }
  .highlight-number {
    font-size: 18px;
  }
  .highlight-band {
    letter-spacing: -0.03rem;
    font-size: 20px;
  }
  .hero-subcopy {
    font-size: 15px;
  }
  .hero-maincopy {
    font-size: 20px;
  }
  .hero-maincopy .hero-highlight {
    font-size: 22px;
  }
  .hero-caption-wrap {
    gap: var(--spacing-2);
    margin-top: 0;
  }
  .hero-illustration img {
    width: 100px;
  }
  .hero-caption {
    font-size: 14px;
    letter-spacing: -0.02rem;
  }
  .caption-line {
    width: 88px;
    margin: 0px 0 -2px -160px;
    height: 1.5px;
  }
  .line-top {
    transform: rotate(-7deg);
  }
  .cta-box {
    width: 100%;
    height: auto;
    max-width: 360px;
  }
  .cta-inner {
    width: 95%;
    margin: 0 auto;
    padding: var(--spacing-5) var(--spacing-4);
  }
  .cta-subtitle {
    font-size: 11px;
  }
  .cta-title {
    font-size: 18px;
  }
  .cta-form {
    gap: var(--spacing-3);
  }
  .cta-form input {
    height: 36px;
    font-size: 14px;
  }
  .top-cta-button, .cta-sub-button {
    width: 95%;
    font-size: 14px;
    height: 48px;
    margin: 0 auto;
  }
  .problem-area {
    margin: 0 auto var(--spacing-8);
    padding-top: var(--spacing-4);
  }
  .marker-gradient {
    font-size: 16px;
  }
  /* =========================
   5step (SP) 最終安定版
========================= */
  @media (max-width: 768px) {
    /* レイアウトだけ縦に */
    .steps-wrapper {
      display: block;
    }
    .steps-left {
      /* display: none; SPでは左リスト不要なら */
    }
    .steps-right {
      width: 100%;
    }
    /* フレーム装飾はPC専用 */
    .slider-frame {
      padding: 0;
      border: none;
      background: transparent;
      box-shadow: none;
    }
    /* 高さ固定を解除（←これが一番重要） */
    .steps-slides {
      position: relative;
      min-height: auto;
      height: auto;
    }
    /*  display を切り替えない */
    .step-detail {
      position: absolute; /* ← PC設計を維持 */
      inset: 0;
      opacity: 0;
      pointer-events: none;
    }
    .step-detail.is-active {
      position: static; /* ← 表示中だけ通常フローへ */
      opacity: 1;
      pointer-events: auto;
    }
    /* 中身は縦並び */
    .step-detail.is-active {
      display: flex;
      flex-direction: column;
    }
    .detail-media {
      width: 100%;
      margin-bottom: var(--spacing-4);
    }
    .detail-body {
      padding: var(--spacing-4);
    }
    /* SPでは左右矢印を画像上に出す想定なら後でON */
    .slider-prev, .slider-next {
      display: none;
    }
    .step-text {
      font-size: 16px;
    }
    .detail-dots {
      gap: 20px;
    }
    .detail-dots .dot {
      width: 12px;
      height: 12px;
    }
    .detail-dots .dot.is-active {
      width: 12px;
      height: 12px;
      background: var(--color-blue-600);
    }
    .detail-media img {
      width: 80%;
    }
  }
  /* =========================
   5step (SP) END
========================= */
  .strength-header {
    margin-bottom: var(--spacing-1);
  }
  .strength-stats {
    gap: var(--spacing-4);
  }
  .strength-features {
    gap: var(--spacing-8);
  }
  .stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-4);
    padding: var(--spacing-6);
    text-align: left;
  }
  .stat-icon {
    width: 72px;
    height: 72px;
    margin: 0;
    flex-shrink: 0;
  }
  .stat-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .stat-number {
    justify-content: flex-start;
    margin: 0;
  }
  .stat-number__value {
    font-size: 32px;
  }
  .stat-number__unit {
    font-size: 16px;
  }
  .stat-label {
    font-size: 14px;
    margin: 0;
  }
  /* ===== Strength Stats アニメーション ===== */
  .stat-item {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.6s ease, transform 0.6s ease;
  }
  .stat-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* 2枚なので軽くスタッガー */
  .stat-item:nth-child(1) {
    transition-delay: 0.08s;
  }
  .stat-item:nth-child(2) {
    transition-delay: 0.16s;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
  }
  .service-card {
    min-height: auto;
    padding: var(--spacing-5) var(--spacing-4);
  }
  .service-name {
    font-size: 16px;
    margin-bottom: var(--spacing-4);
  }
  .service-description {
    font-size: 15px;
  }
  .service-icon-placeholder {
    width: 90px;
    height: 90px;
    margin-bottom: var(--spacing-4);
  }
  .feature-item.reverse {
    flex-direction: column;
  }
  .feature-item {
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-6);
  }
  .feature-image-placeholder {
    width: 100%;
    flex: 0 0 200px;
  }
  .feature-title {
    font-size: 16px;
    text-align: center;
  }
  .feature-text {
    font-size: 15px;
  }
  .strength-title {
    font-size: 22px;
  }
  .consultant-section {
    padding: 1rem 0;
  }
  .consultant-flex {
    gap: var(--spacing-5);
    align-items: flex-start;
  }
  .consultant-img {
    width: 110px;
    height: 110px;
    /* ロゴはさらに控えめに */
    background-size:
      85%, cover;
    /* 影も弱めてUI感を消す */
    box-shadow:
      0 6px 16px rgba(90, 130, 200, 0.18);
  }
  .consultant-img img {
    width: 96%;
    object-position: 50% 50%;
    top: 4%;
    left: 2%;
  }
}
.consultant-text h3 {
  font-size: 14px;
}
.consultant-text h3 span {
  font-size: 15px;
}
.consultant-role {
  font-size: 14px;
}
.consultant-role strong {
  font-size: 16px;
}
.consultant-message {
  padding: var(--spacing-5) var(--spacing-8);
}
.consultant-message p {
  font-size: 16px;
}
.consultant-block {
  margin-bottom: var(--spacing-12);
}
/* =========================
   Case Studies (SP only)
========================= */
/* ナビ全体を横一列にまとめる */
.carousel-wrapper {
  position: relative;
}
/* 操作エリアを1行に */
.carousel-prev, .carousel-next, .pagination {
  position: static;
}
/* 横並び制御 */
.carousel-wrapper {
  display: flex;
  flex-direction: column;
}
/* 下部操作バー */
.carousel-wrapper > .carousel-prev, .carousel-wrapper > .carousel-next, .carousel-wrapper > .pagination {
  display: none; /* いったん個別配置を無効化 */
}
/* 新しい横並び制御 */
.carousel-wrapper::after {
  content: "";
  display: block;
  height: 0;
}
.carousel-wrapper {
  --nav-gap: 16px;
}
.carousel-container {
  order: 1;
}
/* 横並びUI */
.carousel-wrapper {
  align-items: center;
}
.carousel-wrapper .carousel-prev, .carousel-wrapper .carousel-next, .carousel-wrapper .pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* 並び順 */
.carousel-prev {
  order: 2;
}
.pagination {
  order: 3;
  margin: 0 12px;
}
.carousel-next {
  order: 4;
}
/* 操作行 */
.carousel-wrapper {
  gap: 12px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.carousel-nav {
  width: 44px;
  height: 44px;
  font-size: 20px;
}
.pagination {
  margin: 0;
}
/* =========================
   Case Studies (SP)　END
========================= */
.faq-section {
  padding: var(--spacing-8) var(--spacing-4);
}
.faq-question {
  padding: 14px 12px;
  gap: var(--spacing-2);
}
.faq-marker {
  font-size: 24px;
}
.question-text {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.3rem;
}
.toggle-icon {
  width: 32px;
  height: 32px;
}
.faq-answer {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-2);
  padding: 0 var(--spacing-3);
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.faq-item.expanded .faq-answer {
  padding: var(--spacing-4) var(--spacing-3);
}
.faq-marker.answer {
  font-size: 20px;
  margin-top: 0;
}
.answer-text {
  font-size: 15px;
}
.contact-section {
  padding: var(--spacing-10) 0;
}
.contact-container {
  padding: 0 var(--spacing-2);
}
.contact-header {
  margin-bottom: var(--spacing-8);
}
.contact-form {
  gap: var(--spacing-4);
}
.form-group {
  gap: var(--spacing-2);
}
.form-label {
  font-size: 14px;
  flex-wrap: wrap;
}
.form-input, .form-textarea {
  padding: var(--spacing-3) var(--spacing-3);
  font-size: 15px;
}
.form-input {
  height: 44px;
}
.form-textarea {
  min-height: 90px;
}
.form-button {
  width: 64%;
  font-size: 18px;
  height: 54px;
  margin-top: var(--spacing-4);
}
.footer-inner {
  flex-direction: row;
  justify-content: flex-start;
}
.footer-logo {
  width: 180px;
  height: auto;
}
.footer-company {
  font-size: 15px;
}
.footer-address {
  font-size: 14px;
}
.footer-copyright {
  margin-top: var(--spacing-4);
  font-size: 10px;
  letter-spacing: 0.05rem;
  width: 100%;
}
.case-studies-section {
  padding: 2rem 1rem;
}
.carousel-wrapper {
  gap: var(--spacing-4);
}
.carousel-nav {
  width: 40px;
  height: 40px;
  font-size: 18px;
}
.case-content {
  padding: var(--spacing-5) var(--spacing-3);
}
.case-title {
  font-size: 20px;
  margin-top: 40px;
}
.case-company {
  font-size: 15px;
  margin-bottom: var(--spacing-4);
}
.case-problem, .case-solution {
  padding: 12px;
}
.case-problem::after {
  display: none;
}
.case-text {
  font-size: 15px;
}
.cta-text {
  font-size: 16px;
}
.cta-large-text {
  font-size: 60px;
}
.scroll-to-top {
  bottom: var(--spacing-4);
  left: var(--spacing-4);
  width: 40px;
  height: 44px;
}
.scroll-to-top svg {
  width: 16px;
  height: 16px;
}
}
/* Small Mobile (480px以下) */
@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }
  .section-tag {
    font-size: 14px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .highlight-number {
    font-size: 16px;
  }
  .hero-subcopy {
    font-size: 16px;
  }
  .hero-maincopy {
    font-size: 18px;
  }
  .hero-maincopy .hero-highlight {
    font-size: 20px;
  }
  .cta-title {
    font-size: 16px;
  }
  .cta-form label {
    font-size: 15px;
    font-weight: 500;
  }
  .hero-illustration img {
    width: 80px;
  }
  .section-title {
    font-size: 22px;
  }
  .feature-title {
    font-size: 14px;
  }
  .strength-title {
    font-size: 22px;
    letter-spacing: -0.05rem;
  }
  .contact-description {
    font-size: 16px;
  }
  .answer-text strong {
    font-size: 16px;
  }
}
/* =====================================
   Pマーク資料ダウンロード（Bタイプ）
===================================== */
/* ===== Section ===== */
.download-section {
  padding: 100px 16px;
  background: linear-gradient(135deg, #5f7fe8 0%, #1446e3 50%, #003aff 100%);
  position: relative;
  overflow: hidden;
}
/* 背景装飾 */
.download-section::before, .download-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.download-section::before {
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
}
.download-section::after {
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
}
/* ===== Layout ===== */
.download-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* ===== Left Content ===== */
.download-content {
  color: #fff;
  text-align: center;
}
.download-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: url("../img/logo_strong-section.png") center / contain no-repeat;
}
.download-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.download-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 32px;
  line-height: 1.8;
}
.benefit-list {
  display: inline-block;
  text-align: left;
  margin-bottom: 40px;
}
.benefit-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, .9);
}
.benefit-item::before {
  content: '✓';
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
/* ===== Card ===== */
.download-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 30px 80px rgba(20, 70, 227, .25);
  backdrop-filter: blur(10px);
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: #1446e3;
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 13px;
  color: #999;
}
/* ===== Form ===== */
.download-form {
  display: grid;
  gap: 8px;
}
.form-row {
  display: grid;
  gap: 8px;
}
.form-row label {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a2a6b;
}
.required {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-red);
}
.download-form input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 10px;
  border: 2px solid #e0e6f5;
  background: #f9fbff;
  transition: all .3s ease;
}
.download-form input:focus {
  outline: none;
  border-color: #1446e3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 70, 227, .1);
}
.download-form input::placeholder {
  color: #bbb;
}
/* ===== Privacy ===== */
.privacy-section {
  padding-top: 10px;
  border-top: 1px solid #e0e6f5;
}
.privacy-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a6b;
  margin-bottom: 12px;
}
.privacy-scroll {
  height: 100px;
  padding: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.8;
  color: #555;
  background: #f9fbff;
  border: 2px solid #e0e6f5;
  border-radius: 10px;
  overflow-y: auto;
}
/* scrollbar */
.privacy-scroll::-webkit-scrollbar {
  width: 6px;
}
.privacy-scroll::-webkit-scrollbar-track {
  background: #e0e6f5;
}
.privacy-scroll::-webkit-scrollbar-thumb {
  background: #1446e3;
  border-radius: 10px;
}
/* ===== Checkbox ===== */
.checkbox-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-size: 14px;
  color: #1a2a6b;
  cursor: pointer;
}
.checkbox-row .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
}
.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}
/* ===== Button ===== */
.download-btn, .wpcf7-submit.download-btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1446e3, #003aff);
  border: none;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(20, 70, 227, .35);
  cursor: pointer;
  transition: all .3s ease;
}
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(20, 70, 227, .45);
}
/* ===== CF7 Sending State ===== */
/* Bタイプ（download-section 内）だけ青を維持 */
.download-section .download-btn:disabled, .download-section .wpcf7-submit:disabled, .download-section .wpcf7-submit.has-spinner {
  background: linear-gradient(135deg, #1446e3, #003aff) !important;
  color: #fff !important;
  opacity: 1 !important;
  cursor: wait;
  transform: none !important;
}
/* ===== SP ===== */
@media (max-width: 768px) {
  .download-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .download-section {
    padding: 60px 16px;
  }
  .download-title {
    font-size: 32px;
  }
  .download-card {
    padding: 36px 24px;
  }
}
/* CF7 送信後メッセージ*/
.wpcf7 form.sent .wpcf7-response-output {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
/* PCでは改行しない 


*/
.sp-break {
  display: none;
}
/* SPでのみ改行 */
@media (max-width: 768px) {
  .sp-break {
    display: block;
  }
}
/* PCでは非表示 */
.sp-only {
  display: none;
}
/* スマホのみ表示 */
@media (max-width: 768px) {
  .sp-only {
    display: list-item;
  }
}





/* CF7 スピナーを完全に非表示・無効化 */
.wpcf7-spinner {
  display: none !important;
  visibility: hidden !important;
}

/* スピナーが回転しないようにする */
@keyframes wpcf7-spin {
  0% { transform: none; }
  100% { transform: none; }
}

/* ===== ダウンロードボタン（青）- download-section内 ===== */
.download-section .download-btn.has-spinner,
.download-section .wpcf7-submit.download-btn.has-spinner {
  background: linear-gradient(135deg, #1446e3, #003aff) !important;
  color: #fff !important;
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.download-section .download-btn:hover,
.download-section .wpcf7-submit.download-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 45px rgba(20, 70, 227, .45) !important;
}

/* ===== CTAボタン（赤）- cta-box内 ===== */
.cta-box .top-cta-button {
  background: linear-gradient(135deg, #ff5a5a, #ff3b3b) !important;
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.cta-box .top-cta-button:hover {
  background: linear-gradient(135deg, #ff6a6a, #ff4b4b) !important;
  box-shadow: 0 8px 22px rgba(255, 75, 75, .5) !important;
  transform: translateY(-2px) !important;
}

/* ===== オレンジボタン（アンカーリンク）===== */
.cta-sub-button:hover {
  transform: translateY(-3px) !important;
}


/* ===== Google SEO用　h1===== */
.lp-h1 {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}



/* ===========================
   THANKS PAGE 改善版
=========================== */

.thanks-hero {
  background: var(--gradient-hero);
  padding: var(--spacing-20) var(--spacing-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-container {
  max-width: 760px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: var(--spacing-16) var(--spacing-8);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}
.thankyou-message{
	padding: 2rem;
}

.thanks-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: var(--spacing-10);
  color: var(--color-blue-deep);
}

.thanks-text {
  font-size: var(--font-base);
  line-height: 1.9;
  color: var(--color-text-primary);
}

.thanks-note {
  margin-top: var(--spacing-6);
  font-size: 14px;
  color: var(--color-text-secondary);
}

.thanks-note a {
  color: var(--color-blue-600);
  font-weight: 600;
  text-decoration: none;
}

.thanks-btn-wrap {
  margin-top: var(--spacing-12);
  display: flex;
  justify-content: center;
}

.thanks-main-btn {
  background: var(--gradient-cta-mid);
  color: #fff;
  padding: 16px 60px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-blue-sm);
  transition: var(--transition-normal);
}

.thanks-main-btn:hover {
  background: var(--gradient-cta-reverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-hover);
}


/* SP */
@media (max-width: 768px) {

  .thanks-container {
    padding: var(--spacing-12) var(--spacing-6);
  }

  .thanks-title {
    font-size: 24px;
  }

}