/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #282828;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
}

.text--blue { color: #0143CA; }

.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }
.btn--primary {
  background: #0143CA;
  color: #fff;
}
.btn--orange {
  background: linear-gradient(to right, #FFA647, #F45714);
  color: #fff;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn--orange:hover {
  background: #fff;
  color: #F45714;
  box-shadow: inset 0 0 0 2px #F45714;
  opacity: 1;
}
.btn--full { width: 100%; padding: 16px; font-size: 16px; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #E8ECF0;
  height: 72px;
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  color: #1B2861;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
}
.nav__links a:hover { color: #0143CA; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #E4F5FF 33%, #B5CDFF);
  overflow: hidden;
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  min-height: 580px;
}

.hero__content {
  padding: 80px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid #0143CA;
  color: #0143CA;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.4;
  color: #131E3E;
  margin-bottom: 20px;
}

.hero__title--blue { color: #0143CA; }

.hero__desc {
  font-size: 15px;
  color: #4B5563;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--outline {
  background: #fff;
  color: #0143CA;
  border: 2px solid #0143CA;
  transition: background 0.3s, color 0.3s;
}
.btn--outline:hover {
  background: #0143CA;
  color: #fff;
  opacity: 1;
}

/* Hero form */
.hero__form-area {
  padding: 48px 0;
}

.hero__form-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(27, 40, 97, 0.1);
}

.hero__form-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #1B2861;
}

.hero__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}

.required {
  background: #EF4444;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus { border-color: #2563EB; }

/* Pardot iframe */
.pardot-iframe {
  width: 100%;
  min-height: 360px;
  border: none;
  display: none;
}
.pardot-placeholder {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F4FF;
  border-radius: 8px;
  color: #6B7280;
  font-size: 14px;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 96px 0;
  background: #fff;
}

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

/* スクロールアニメーション初期状態 */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem__card {
  background: #fff;
  border: 1px solid #D9E4FF;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(1, 67, 202, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.problem__card:hover {
  box-shadow: 0 6px 24px rgba(1, 67, 202, 0.12);
  transform: translateY(-3px);
}

.problem__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E4F5FF, #D2E5FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #131E3E;
  line-height: 1.6;
  margin-bottom: 12px;
}

.problem__card-desc {
  font-size: 14px;
  color: #676767;
  line-height: 1.9;
}

.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #F45714;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.text--orange { color: #F45714; }

.section-lead {
  text-align: center;
  font-size: 15px;
  color: #525252;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 48px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #0143CA;
  margin-bottom: 48px;
}

/* ===== SOLUTION ===== */
.solution {
  padding: 32px 0 80px;
  background: #fff;
}

.solution__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
}

.solution__title--orange { color: #F45714; }
.solution__title--blue   { color: #0143CA; }

.solution__desc {
  font-size: 16px;
  color: #525252;
  line-height: 1.9;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* ===== NAV CTA GROUP ===== */
.nav__cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__cta-btn {
  font-size: 14px;
  padding: 10px 18px;
}

/* ===== SEC TITLE ===== */
.sec-title {
  text-align: center;
  margin-bottom: 48px;
}
.sec-title__en {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #0143CA;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.sec-title__jp {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #131E3E;
}

/* ===== REASON ===== */
.reason {
  padding: 80px 0;
  background: linear-gradient(to bottom, #D2E5FF 20%, #E4F5FF, #ffffff);
}
.reason__image {
  display: flex;
  align-items: center;
  gap: 32px;
}
.reason__box {
  flex: 1;
}
.reason__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 96px;
  margin-bottom: 12px;
}
.reason__label--gray {
  background: #F8F8F8;
  border: 1px solid #5D5D5D;
  color: #282828;
}
.reason__label--blue {
  background: #0143CA;
  color: #fff;
}
.reason__box-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #131E3E;
  margin-bottom: 20px;
}
.reason__box-title--em {
  color: #0143CA;
}
.reason__img-wrap img {
  width: 100%;
  border-radius: 8px;
}
.reason__arrow {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 24px solid #0143CA;
}

/* ===== LP SOLUTION ===== */
.lp-solution {
  padding: 80px 0 100px;
  background: #F7F9FF;
}
.lp-solution__cont {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 3px 3px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 32px;
}
.lp-solution__text {
  flex: 0 0 38%;
  padding: 40px 36px;
}
.lp-solution__image {
  flex: 1;
}
.lp-solution__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-solution__number {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #0143CA;
  margin-bottom: 16px;
}
.lp-solution__number small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.lp-solution__number strong {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}
.lp-solution__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  color: #131E3E;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.lp-solution__desc {
  font-size: 15px;
  color: #525252;
  line-height: 1.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__title { font-size: 38px; }
}

/* ===== HAMBURGER ===== */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #131E3E;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
}
.nav__mobile-overlay.is-active { display: block; }

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  width: 280px;
  height: calc(100vh - 60px);
  background: #fff;
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav__mobile-menu.is-active {
  transform: translateX(0);
}
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav__mobile-links a {
  font-size: 15px;
  font-weight: 500;
  color: #131E3E;
  padding: 16px 0;
  border-bottom: 1px solid #E8E8E8;
  text-decoration: none;
}
.nav__mobile-links a:first-child { border-top: 1px solid #E8E8E8; }
.nav__mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.nav__mobile-cta .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
body.menu-open { overflow: hidden; }

@media (max-width: 768px) {
  .section-title { font-size: 24px; }
  .sec-title .jp { font-size: 22px; }

  /* Nav */
  .nav__links { display: none; }
  .nav__cta-group { display: none; }
  .nav { height: 60px; }
  .nav__inner { padding: 0 16px; }
  .nav__hamburger { display: flex; }
  .nav__mobile-menu { display: flex; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 0;
  }
  .hero__content { padding: 40px 18px 24px; }
  .hero__title { font-size: 28px; }
  .hero__form-area { padding: 0 18px 48px; }
  .hero__cta-group {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .hero__cta-group .btn {
    flex: 1;
    min-width: 0;
    padding: 10px 10px;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
  }

  /* Reason */
  .reason__image { flex-direction: column; gap: 0; }
  .reason__arrow {
    width: 20px;
    height: 14px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin: 12px auto;
  }
  .reason__box { width: 100%; padding: 20px 18px; }

  /* Solution */
  .lp-solution__cont {
    flex-direction: column !important;
    gap: 20px;
  }
  .lp-solution__cont .lp-solution__image { order: 1; width: 100%; }
  .lp-solution__cont .lp-solution__text { order: 2; width: 100%; }

  /* Solution (reversed) */
  .lp-solution__cont:nth-child(even) .lp-solution__image { order: 1; }
  .lp-solution__cont:nth-child(even) .lp-solution__text { order: 2; }
}

/* ===== SEC-TITLE (共通) ===== */
.sec-title {
  margin-bottom: 40px;
  text-align: center;
}
.sec-title .en {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0143CA;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sec-title .en::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #0143CA;
  vertical-align: middle;
  margin-right: 8px;
}
.sec-title .jp {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #131E3E;
}

/* ===== LOGO SLIDER ===== */
@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes logo-scroll-delay {
  0%   { transform: translateX(-80px); }
  100% { transform: translateX(calc(-50% - 80px)); }
}

.c-logo-slider-area {
  padding: 24px 0;
  background: #fff;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  overflow: hidden;
}
.c-logo-slider-area__label {
  text-align: center;
  font-size: 13px;
  color: #676767;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.c-logo-slider {
  overflow: hidden;
  margin-bottom: 8px;
}
.c-logo-slider:last-child { margin-bottom: 0; }
.c-logo-slider__track {
  display: flex;
  width: max-content;
  animation: logo-scroll 35s linear infinite;
}
.c-logo-slider.delay .c-logo-slider__track {
  animation-name: logo-scroll-delay;
}
.c-logo-slider__track:hover { animation-play-state: paused; }
.c-logo-slider__list {
  display: flex;
  align-items: center;
  list-style: none;
  flex-shrink: 0;
}
.c-logo-slider__list li {
  width: 160px;
  margin-right: 20px;
  flex-shrink: 0;
}
.c-logo-slider__list li .image img {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

/* ===== VALUE IN ACTION ===== */
.lp-value {
  padding: 100px 0 80px;
  background: #fff;
}
.lp-value__list {
  display: flex;
  gap: 3.2%;
  list-style: none;
}
.lp-value__list li {
  width: 31.2%;
  border: 1px solid #0143CA;
  border-radius: 4px;
  padding: 40px 24px 24px;
}
.lp-value__list li .number {
  color: #0143CA;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.lp-value__list li .number small {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  margin-right: 6px;
  flex-shrink: 0;
}
.lp-value__list li .number .line {
  display: block;
  width: 100%;
  height: 1px;
  background: #0143CA;
  margin-left: 12px;
}
.lp-value__list li .c-title05 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #131E3E;
}
.lp-value__list li .col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-value__list li .col .percent {
  color: #0143CA;
  display: flex;
  align-items: baseline;
}
.lp-value__list li .col .percent strong {
  font-size: 64px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  margin-right: 4px;
  line-height: 1;
}
.lp-value__list li .col .percent small {
  font-size: 28px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
}
.lp-value__list li .col i {
  display: block;
  width: 88px;
}
.lp-value__list li .col i img {
  width: 100%;
}

/* ===== SYSTEM ===== */
.lp-system {
  padding: 100px 0 80px;
  background: #F7F7F7;
}
.lp-system__lead {
  text-align: center;
  color: #525252;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.lp-system__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}
.lp-system__list li {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #D9D9D9;
}
.lp-system__list li .title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #131E3E;
}
.lp-system__list li .title span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #0143CA;
  font-weight: 700;
  flex-shrink: 0;
}
.lp-system__list li .title strong {
  font-weight: 700;
  font-size: 14px;
}
.lp-system__list li .image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* ===== SUPPORT ===== */
.lp-support {
  padding: 100px 0;
  background: #fff;
}
.lp-support__col {
  display: flex;
  align-items: center;
  gap: 64px;
}
.lp-support__text {
  flex: 1;
}
.lp-support__text .sec-title {
  text-align: left;
}
.lp-support__subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #131E3E;
  margin-bottom: 20px;
}
.lp-support__desc {
  color: #525252;
  line-height: 1.8;
  font-size: 15px;
}
.lp-support__image {
  width: 45%;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.lp-support__image img {
  width: 100%;
  border-radius: 4px;
}

/* ===== FAQ ===== */
.lp-faq {
  padding: 100px 0;
  background: #F7F7F7;
}
.lp-faq__col {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.lp-faq__head {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.lp-faq__head .sec-title { text-align: left; }
.lp-faq__list {
  flex: 1;
}
.lp-faq__list dl {
  border-bottom: 1px solid #D9D9D9;
}
.lp-faq__list dl:first-child {
  border-top: 1px solid #D9D9D9;
}
.lp-faq__list dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}
.lp-faq__list dt .text-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.lp-faq__list dt .text-wrap span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0143CA;
  flex-shrink: 0;
  line-height: 1.5;
}
.lp-faq__list dt .text-wrap p {
  font-size: 16px;
  font-weight: 600;
  color: #131E3E;
  line-height: 1.6;
}
.faq-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #0143CA;
  border-radius: 2px;
  transition: transform 0.3s;
}
.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 9px;
  left: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 2px;
  left: 9px;
}
.lp-faq__list dt.active .faq-icon::after {
  transform: rotate(90deg);
}
.lp-faq__list dd {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.lp-faq__list dd .text-wrap {
  display: flex;
  gap: 12px;
  padding: 0 0 20px;
}
.lp-faq__list dd .text-wrap span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F45714;
  flex-shrink: 0;
  line-height: 1.5;
}
.lp-faq__list dd .text-wrap p {
  font-size: 15px;
  color: #525252;
  line-height: 1.8;
}
.lp-faq__list dd strong {
  color: #131E3E;
  font-weight: 700;
}

/* ===== DEMO ===== */
.lp-demo {
  background: #F7F7F7;
}
.lp-demo .container {
  padding-top: 80px;
  padding-bottom: 40px;
}

/* ===== INLINE CTA BANNER ===== */
.inline-cta {
  background: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.inline-cta::before,
.inline-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(1, 67, 202, 0.06);
}
.inline-cta::before {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -80px;
}
.inline-cta::after {
  width: 240px;
  height: 240px;
  bottom: -80px;
  right: -40px;
}
.inline-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.inline-cta__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(to right, #FFA647, #F45714);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.4;
}
.inline-cta__pill {
  display: inline-block;
  background: linear-gradient(to right, #FFA647, #F45714);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 64px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(244, 87, 20, 0.3);
}
.inline-cta__pill:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ===== INLINE CTA CARD (自社サイト型) ===== */
.inline-cta-card {
  background: #EEF3FB;
  padding: 48px 0;
}
.inline-cta-card__inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1A3A7A 0%, #0143CA 60%, #2E7FFF 100%);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(1, 67, 202, 0.2);
}
.inline-cta-card__inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(1, 67, 202, 0.3);
}
.inline-cta-card__body {
  flex: 1;
  padding: 64px 48px 64px 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inline-cta-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.inline-cta-card__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.7;
}
.inline-cta-card__btn {
  display: inline-block;
  align-self: stretch;
  text-align: center;
  background: linear-gradient(to right, #FFA647, #F45714);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 100px;
  margin-top: 8px;
}
.inline-cta-card__img {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px 32px 0;
}
.inline-cta-card__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ===== CTA FORM ===== */
.lp-cta-form {
  padding: 100px 0;
  background: linear-gradient(135deg, #E4F5FF 33%, #B5CDFF);
}
.lp-cta-form__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #131E3E;
  margin-bottom: 16px;
  line-height: 1.4;
}
.lp-cta-form__lead {
  text-align: center;
  color: #525252;
  font-size: 15px;
  margin-bottom: 40px;
}
.lp-cta-form__iframe {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.lp-footer {
  background: #131E3E;
  color: #fff;
}
.lp-footer__bottom {
  padding: 32px 0;
}
.lp-footer__bottom-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.lp-footer__logo img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}
.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  list-style: none;
  flex: 1;
}
.lp-footer__links li a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.lp-footer__links li a:hover {
  color: rgba(255,255,255,0.9);
}
.lp-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  margin-left: auto;
}

@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 18px; }

  /* Problem */
  .problem { padding: 48px 0; }
  .problem__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Logo Slider */
  .c-logo-slider-area { padding: 28px 0; }
  .c-logo-slider__list li { width: 100px; margin-right: 12px; }
  .c-logo-slider__list li .image img { height: 36px; }

  /* Value */
  .lp-value { padding: 60px 0 40px; }
  .lp-value__list { flex-direction: column; gap: 0; }
  .lp-value__list li { width: 100%; padding: 20px 24px; margin-top: 16px; }
  .lp-value__list li .percent strong { font-size: 52px; }
  .lp-value__list li .col i { width: 64px; }

  /* System */
  .lp-system { padding: 60px 0 40px; }
  .lp-system__lead { font-size: 14px; }
  .lp-system__list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  .lp-system__list li .title { padding: 10px 12px 8px; }
  .lp-system__list li .title strong { font-size: 12px; }
  .lp-system__list li .image img { height: 110px; }

  /* Support */
  .lp-support { padding: 60px 0 40px; }
  .lp-support__col { flex-direction: column-reverse; gap: 24px; }
  .lp-support__image { width: 100%; }
  .lp-support__subtitle { font-size: 20px; }

  /* Inline CTA Banner */
  .inline-cta { padding: 48px 0; }
  .inline-cta__heading { font-size: 20px; }
  .inline-cta__pill { padding: 16px 40px; font-size: 15px; width: 100%; max-width: 280px; text-align: center; }

  /* Inline CTA Card */
  .inline-cta-card { padding: 32px 0; }
  .inline-cta-card__inner { flex-direction: column; }
  .inline-cta-card__body { padding: 32px 24px 24px; gap: 12px; }
  .inline-cta-card__title { font-size: 22px; }
  .inline-cta-card__btn { align-self: stretch; text-align: center; }
  .inline-cta-card__img { width: 100%; padding: 0 24px 32px; }

  /* FAQ */
  .lp-faq { padding: 48px 0 60px; }
  .lp-faq__col { flex-direction: column; gap: 24px; }
  .lp-faq__head { width: 100%; position: static; }
  .lp-faq__list { width: 100%; }
  .lp-faq__list dt .text-wrap p { font-size: 15px; line-height: 1.5; }

  /* CTA Form */
  .lp-cta-form { padding: 60px 0; }
  .lp-cta-form__title { font-size: 22px; }
  .lp-cta-form__iframe { padding: 24px 16px; }

  /* Footer */
  .lp-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lp-footer__copy { white-space: normal; margin-left: 0; }
}
