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

html {
  margin: 0;
  min-width: 769px;
  overflow-x: auto;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #222;
  background: #ffffff;
  min-width: 769px;
  overflow-x: auto;
}

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

a {
  text-decoration: none;
}
.mt0 {
  margin-top: 0px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mt120 {
  margin-top: 120px !important;
}
.pc_only {
  display: inline-block;
}
.sp_only {
  display: none !important;
}
.sp_only_b {
  display: none !important;
}

.lp-float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 88px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffb11e, #f28b00);
  box-shadow: 0 6px 0 #f07c00;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;

  /* 初期は非表示 */
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.lp-float-cta.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.lp-float-cta:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.lp-float-cta__tag {
  display: inline-block;
  font-size: 16px;
  background: #fff;
  color: #ffb11e;
  padding: 1px 8px;
  border-radius: 2px;
  margin-bottom: 4px;
}

.lp-float-cta__main {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
/*------------------- ヘッダー ------------------*/
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  border-top: 20px solid transparent;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  box-shadow: none;
}

.lp-header__inner {
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 10px 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.lp-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  max-width: 420px;
}

.lp-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-header__nav {
  flex: 1;
}

.lp-header__list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-header__list p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  background: #2955c8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.lp-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  background: linear-gradient(90deg, #f58600 0%, #f7c533 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.lp-header__cta:hover {
  opacity: 0.85;
}

.lp-header__toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.lp-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #2955c8;
}
/* ============================================================
   SP ドロワーメニュー（〜900px）
   ============================================================ */

/* オーバーレイ */
.lp-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  width: 100%;
  height: 100%;
}

.lp-drawer-overlay.is-open {
  display: block;
}

/* ドロワー本体 */
.lp-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  height: 100%;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.lp-drawer.is-open {
  transform: translateX(0);
}

/* ドロワー上部（ロゴ＋✕） */
.lp-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.lp-drawer__logo {
  max-width: 200px;
}

.lp-drawer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-drawer__close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  flex-shrink: 0;
  padding: 0;
}

/* ナビリンク一覧 */
.lp-drawer__nav {
  flex: 1;
  padding: 16px 0;
}

.lp-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-drawer__list li {
  border-bottom: 1px dashed #e0e0e0;
}

.lp-drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #052352;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.lp-drawer__list a::after {
  content: "→";
  font-size: 16px;
  color: #aaa;
}

/* ドロワー下部CTA */
.lp-drawer__footer {
  padding: 24px 10px 32px;
}

.lp-drawer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 22px 10px;
  background: linear-gradient(90deg, #f58600 0%, #f7c533 100%);
  box-shadow: 4px 6px 0 #f07c00;
  border: 2px solid #f2a845;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.lp-drawer__cta-lead {
  color: #fff01f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.lp-drawer__cta-main {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.lp-drawer__cta-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 2px;
}

/* SP時のヘッダー内ナビ（バッジ） */
@media (max-width: 900px) {
  /* ハンバーガーを表示 */
  .lp-header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  /* SP用ナビバッジ行 */
  .lp-header__sp-nav {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
  }

  .lp-header__sp-nav p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: #2955c8;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }
  .lp-header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  /* SP用ナビバッジ：lp-header__innerの真下に */
  .lp-header__sp-nav {
    display: flex;
    width: 100%;
    background: #fff; /* ヘッダーと同じ背景 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .lp-header__sp-nav p {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    background: #2955c8;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .lp-header__sp-nav p:last-child {
    border-right: none;
  }
}

@media (min-width: 901px) {
  /* PC時はドロワー非表示 */
  .lp-drawer,
  .lp-drawer-overlay {
    display: none !important;
  }

  .lp-header__sp-nav {
    display: none;
  }
}

/*------------------- FV ------------------*/
.lp-fv {
  background-color: #314dc9;
  background-size: 100% auto;
  position: relative;
}

/* FV下部の三角 */
.lp-fv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 10;
}

.lp-fv__copy {
  margin-bottom: 34px;
  margin-left: 16px;
}

.lp-fv__copy-line {
  position: relative;
  display: inline-block;
  background: #ffffff;
  transform: skewX(-32deg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.lp-fv__copy-line span {
  display: inline-block;
  transform: skewX(32deg);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #f17217;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lp-fv__copy-line--small {
  margin-bottom: 14px;
  padding: 12px 34px 12px 28px;
}

.lp-fv__copy-line--small span {
  font-size: 4vw;
  line-height: 1.1;
}

.lp-fv__copy-line--large {
  display: block;
  width: fit-content;
  padding: 16px 42px 18px 30px;
}

.lp-fv__copy-line--large span {
  font-size: 4.2vw;
  line-height: 1.1;
}

.lp-fv__lead {
  position: relative;
  display: inline-block;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 1.7vw;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 16px;
  text-shadow:
    0 0 4px rgba(255, 230, 120, 0.9),
    0 0 10px rgba(255, 210, 80, 0.8),
    0 0 20px rgba(255, 180, 40, 0.7),
    0 2px 6px rgba(0, 0, 0, 0.3);
}
.lp-fv__lead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;

  background: radial-gradient(circle, #ffe27a 2px, transparent 2px);
  background-size: 12px 4px;

  filter: drop-shadow(0 0 6px rgba(255, 200, 60, 0.8));
}

.lp-fv__text {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: 1.2vw;
  line-height: 1.9;
  font-weight: 500;
}

.lp-fv__cta {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: clamp(280px, 80%, 470px);
  padding: 12px 30px;
  background: linear-gradient(90deg, #f58600 0%, #f7c533 100%);
  box-shadow: 8px 10px 0 #f07c00;
  border: 3px solid #f07c00;
  border-radius: 999px;
  color: #ffffff;
  text-align: center;
  max-width: 600px;
}

.lp-fv__cta:hover {
  /* グラデーション反転（左右を入れ替え） */
  background: linear-gradient(90deg, #f7c533 0%, #f58600 100%);
  transform: translateY(2px);
}

.lp-fv__cta-main {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.lp-fv__cta-lead {
  color: #fff01f;
  margin-top: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.lp-fv__cta-sub {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.lp-fv__right {
  width: 50%;
  flex-shrink: 0;
  height: 859px;
  overflow: hidden;
  position: relative;
  background: url("../images/main_MV_right.png") no-repeat center top;
  /* background-position: right top; */
  background-size: auto 859px;
  position: relative;
}

.lp-fv__right img {
  width: 80%;
  height: auto;
  object-fit: cover;
  object-position: left center;
  display: block;
  position: absolute;
  bottom: 80px;
  left: 10%;
}

/* FV全体の高さを画像に合わせる */
.lp-fv__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: unset;
}

.lp-fv__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 184px) 28px clamp(40px, 5vw, 104px)
    clamp(16px, 2vw, 40px);
  margin-left: 2%;
  margin-right: 2%;
  width: 50%;
}

.lp-fv__image {
  height: 100%;
}

.lp-fv__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-fv__badges {
  position: absolute;
  left: 58%;
  bottom: 10%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: max-content;
}
.lp-fv__badges > div {
  width: 30%;
}

.lp-badge {
  width: 155px;
  height: 155px;
  display: block;
}

.lp-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-badge__label {
  margin: 0 0 8px;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.2;
}

.lp-badge__value {
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.lp-badge__value span {
  font-size: 34px;
}
.lp-badge__note {
  flex: 1;
  margin-top: 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

/*--------------------------- レスポンシブ ------------------*/
@media (max-width: 1200px) {
  .lp-header {
    border-top: 12px solid transparent;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
  }

  .lp-header__inner {
    gap: 14px;
    padding: 8px 12px;
  }

  .lp-header__logo {
    max-width: clamp(180px, 22vw, 320px); /* 幅もvwで縮む */
  }

  .lp-header__list p {
    font-size: clamp(11px, 1.1vw, 14px);
    padding: 6px 8px;
  }

  .lp-header__cta {
    padding: 0 clamp(10px, 1.2vw, 16px);
    font-size: clamp(11px, 1.1vw, 14px);
    min-height: 32px;
  }

  /* FV：clampで滑らかに縮む */
  .lp-fv__left {
    padding: clamp(60px, 7vw, 184px) 16px clamp(40px, 3vw, 104px) 2%;
    width: 50%;
  }

  .lp-fv__copy-line--small span {
    font-size: clamp(28px, 3.6vw, 56px);
  }

  .lp-fv__copy-line--large span {
    font-size: clamp(30px, 4vw, 62px);
  }

  .lp-fv__lead {
    font-size: clamp(14px, 1.7vw, 28px);
  }
  .lp-fv__text {
    font-size: clamp(12px, 1.2vw, 20px);
    margin: 0 0 clamp(16px, 2vw, 28px);
  }
  .lp-fv__cta {
    min-width: 0;
    width: 90%;
    max-width: 440px;
  }
  .lp-fv__copy {
    margin-bottom: 20px;
  }
  .lp-fv__cta-main {
    font-size: clamp(16px, 1.8vw, 24px);
  }
  .lp-fv__cta-lead {
    font-size: clamp(13px, 1.5vw, 20px);
  }
  .lp-fv__cta-sub {
    font-size: 1vw;
  }
  .lp-fv__right img {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .lp-fv {
    background-size: 100% auto;
    position: relative;
  }
  .lp-header {
    border-top: 8px solid transparent;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }

  .lp-header__inner {
    gap: 10px;
    padding: 6px 10px;
  }

  .lp-header__logo {
    max-width: clamp(160px, 20vw, 260px);
  }

  .lp-header__list p {
    font-size: clamp(10px, 1vw, 13px);
    padding: 5px 6px;
  }

  .lp-header__cta {
    padding: 0 clamp(8px, 1vw, 14px);
    font-size: clamp(10px, 1vw, 13px);
  }

  .lp-fv__left {
    padding: 80px 12px 60px 1%;
    width: 50%;
  }

  .lp-fv__copy-line--small span {
    font-size: 3.4vw;
  }
  .lp-fv__copy-line--large span {
    font-size: 3.6vw;
  }
  .lp-fv__lead {
    font-size: 1.55vw;
    margin: 0 0 16px;
  }
  .lp-fv__text {
    font-size: 1.1vw;
    margin: 0 0 1.1vw;
  }
  .lp-fv__copy {
    margin-bottom: 16px;
  }
  .lp-fv__cta {
    min-width: 0;
    width: 100%;
  }
  .lp-fv__cta-main {
    font-size: 1.75vw;
  }
  .lp-fv__cta-lead {
    font-size: 1.45vw;
  }
  .sp_only_1000 {
    display: inline-block !important;
  }
  .lp-problem__fact-title .sp_only_1000::after {
    background: none;
  }
  .lp-fv__right {
    width: 50%;
    flex-shrink: 0;
    height: 720px;
    overflow: hidden;
    position: relative;
    background: url("../images/main_MV_tab.jpg") no-repeat center bottom;
    /* background-position: right top; */
    background-size: auto 859px;
    position: relative;
  }
  .lp-fv__right img {
    width: 90%;
    height: auto;
    object-fit: cover;
    object-position: left center;
    display: block;
    position: absolute;
    bottom: 160px;
    left: 10%;
  }
}
@media (max-width: 900px) {
  .lp-header__nav,
  .lp-header__cta {
    display: none;
  }

  .lp-header__toggle {
    display: block;
    margin-left: auto;
  }

  .lp-header__inner {
    min-height: 74px;
  }

  .lp-header__logo {
    max-width: 260px;
  }

  .lp-fv {
    padding-top: 74px;
  }
  .lp-fv__left {
    padding: clamp(40px, 6vw, 60px) 16px clamp(30px, 4vw, 40px) 0%;
    width: 50%;
  }

  .lp-fv__copy-line--small {
    padding: clamp(6px, 0.8vw, 8px) clamp(16px, 2.5vw, 24px)
      clamp(6px, 0.8vw, 8px) clamp(14px, 2vw, 20px);
    margin-bottom: 8px;
  }

  .lp-fv__copy-line--small span {
    font-size: 34px;
  }

  .lp-fv__copy-line--large span {
    font-size: 38px;
  }

  .lp-fv__lead {
    font-size: 16px;
    margin: 0 0 20px;
  }
  .lp-fv__copy {
    margin-bottom: 30px;
  }

  .lp-fv__text {
    font-size: 14px;
  }
  .lp-fv__copy-line--large {
    padding: clamp(6px, 0.8vw, 8px) clamp(16px, 2.5vw, 24px)
      clamp(6px, 0.8vw, 8px) clamp(14px, 2vw, 20px);
  }

  .lp-fv__cta {
    min-width: 0;
    width: 100%;
    padding: 4px 18px;
    box-shadow: 4px 6px 0 #f07c00;
  }

  .lp-fv__cta-main {
    font-size: clamp(14px, 1.6vw, 20px);
  }

  .lp-fv__cta-lead {
    font-size: clamp(12px, 1.3vw, 16px);
  }
}

@media (max-width: 768px) {
  html {
    margin: 0;
    min-width: auto;
  }

  body {
    min-width: auto;
    overflow-x: auto;
  }
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: inline-block !important;
  }
  .sp_only_b {
    display: block !important;
  }
  .mt140 {
    margin-top: 60px !important;
  }
  .mt90_s {
    margin-top: 90px !important;
  }
  .lp-header {
    border: 0px;
  }

  .lp-header__inner {
    max-width: 100%;
  }
  .lp-fv {
    background-image: url("../images/main_MV_sp.png");
    background-size: 100% auto;
    background-position: center top;
    padding-top: 0;
    margin-top: 88px;
  }

  .lp-fv__inner {
    min-height: 0;
    height: 0;
    padding-bottom: 185.4%;
    padding-top: 0;
  }

  /* テキスト・CTAをすべて非表示 */
  .lp-fv__left {
    display: none !important;
  }
  .lp-fv__right {
    display: none !important;
  }
  .lp-fv__copy {
    margin-bottom: 24px;
  }

  .lp-fv__copy-line--small {
    padding: 10px 22px 10px 18px;
  }

  .lp-fv__copy-line--small span {
    font-size: 28px;
  }

  .lp-fv__copy-line--large {
    padding: 12px 24px 14px 18px;
  }

  .lp-fv__copy-line--large span {
    font-size: 34px;
  }

  .lp-fv__lead {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }

  .lp-fv__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .lp-fv__cta {
    padding: 16px 18px 14px;
  }

  .lp-fv__cta-main {
    font-size: 22px;
  }

  .lp-fv__cta-sub {
    font-size: 11px;
  }

  .lp-badge {
    width: 108px;
    height: 108px;
  }

  .lp-badge__label {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .lp-badge__value {
    font-size: 42px;
  }

  .lp-badge__value span {
    font-size: 20px;
  }

  .lp-fv__notes p {
    font-size: 13px;
  }
  .lp-fv::after {
    display: none;
  }
}

/*----------------------------------------------------------*/
/*--------------------------- 問い合わせ ------------------*/
.contact-intro {
  position: relative;
  background: #fff;
  padding: 60px 50px 60px;
  margin-top: 40px;
}

.contact-intro__inner {
  max-width: 1280px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.contact-intro__content {
  /* flex: 1; */
  max-width: 460px;
}

.contact-intro__label {
  margin: 0 0 14px;
  color: #f26a00;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
}

.contact-intro__title {
  margin: 0 0 28px;
  color: #0f2e67;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-intro__text {
  margin: 0 0 10px;
  color: #0f2e67;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-intro__note {
  margin: 0;
  color: #a9b4c5;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.contact-intro__actions {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 18px 80px 18px 60px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

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

.contact-btn--blue {
  background: linear-gradient(90deg, #1177f0 0%, #21a7f2 100%);
  box-shadow: 6px 8px 0 #1579c9;
}

.contact-btn--orange {
  background: linear-gradient(90deg, #f58600 0%, #f7c533 100%);
  box-shadow: 6px 8px 0 #f07c00;
}

.contact-btn__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.contact-btn__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-btn__body {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.contact-btn__sub {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.contact-btn__main {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 1024px) {
  .contact-intro {
    padding: 0px 50px 60px;
  }

  .contact-intro__inner {
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .contact-intro__content {
    flex: 1;
    text-align: center;
    max-width: none;
  }

  .contact-intro__actions {
    max-width: 520px;
  }

  .contact-intro__title {
    font-size: 2.6vw;
  }

  .contact-intro__text {
    font-size: 1.6vw;
  }

  .contact-intro__note {
    font-size: 1.2vw;
  }

  .contact-btn__main {
    font-size: 28px;
  }
  .contact-btn__sub {
    font-size: 14px;
  }
  .contact-btn {
    padding: 18px 60px 18px 40px;
  }
}

@media (max-width: 768px) {
  .contact-intro {
    padding: 40px 20px 50px;
    margin-top: 0px;
  }

  .contact-intro__inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .contact-intro__content {
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .contact-intro__label {
    margin-bottom: 8px;
  }

  .contact-intro__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .contact-intro__text {
    font-size: 16px;
    line-height: 1.7;
  }

  .contact-intro__note {
    font-size: 13px;
  }

  /* ボタン群：幅いっぱい */
  .contact-intro__actions {
    width: 100%;
    gap: 20px;
  }

  .contact-btn {
    width: 100%;
    min-height: 88px;
    padding: 16px 24px;
    gap: 16px;
    justify-content: center;
  }

  .contact-btn__icon {
    width: 48px;
    height: 48px;
  }

  .contact-btn__sub {
    font-size: 14px;
    text-align: center;
  }

  .contact-btn__main {
    font-size: 28px;
    text-align: center;
  }
}
/*----------------------------------------------------------*/
/*--------------------- 製造業の経営者様へ ------------------*/
.lp-problem {
  position: relative;
  padding: 120px 50px 140px;
  color: #fff;
  overflow: hidden;
}

/* 背景画像 */
.lp-problem__bg {
  position: absolute;
  inset: 0;
  background: url("../images/problem__bg_img.png") no-repeat center top / cover;
  z-index: 0;
}
.lp-problem__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* 黒オーバーレイ */
.lp-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lp-problem__inner {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  z-index: 3;
  text-align: center;
}

/* 上のラベル */
.lp-problem__label {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* タイトル */
.lp-problem__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 70px;
}
.lp-problem__title img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.lp-problem__title span {
  color: #ffd400;
  position: relative;
}

.lp-problem__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 60px;
  margin: 70px auto 200px;
  text-align: left;
  width: 1000px;
}

.lp-problem__item-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffd400;
  margin-bottom: 6px;
}

.lp-problem__item-title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 8px;

  background: url("../images/check_icon.png") no-repeat center / contain;
  /* background-color: #0f2e67; */
}
.lp-problem__item-text {
  font-size: 20px;
  opacity: 0.85;
}

/* CTA */
.lp-problem__cta {
  display: block;
  margin-left: auto;
  margin-right: -60px;
  background: linear-gradient(180deg, #ffb11e, #f28b00);
  color: #fff;
  padding: 4px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 0 #f07c00;
  width: 270px;
  font-size: 24px;
  text-align: center;
}

.lp-problem__cta span {
  display: inline-block;
  font-size: 12px;
  background-color: #fff;
  color: #ffb11e;
  padding: 2px 8px;
}

@media (max-width: 1200px) {
  .lp-problem__fact {
    margin-top: 240px !important;
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .lp-problem__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 60px;
    margin: 70px auto 200px;
    text-align: left;
    width: auto;
  }
  .lp-problem__item-title {
    font-size: 4vw;
  }
  .lp-problem__item-title::before {
    width: 3.1vh;
    height: 3.1vh;
  }
  .lp-problem__fact {
    margin-top: 300px !important;
    text-align: center;
  }
}

/* レスポンシブ */
@media (max-width: 768px) {
  .lp-problem {
    padding: 80px 20px 90px;
    background-color: #052352;
  }
  /* 背景画像 */
  .lp-problem__bg {
    position: absolute;
    inset: 0;
    background: url("../images/problem__bgsp_img.jpg") no-repeat center top /
      100%;
    z-index: 0;
  }

  .lp-problem__title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .lp-problem__title img {
    max-width: 90%;
  }

  /* 悩みリスト：1カラム・固定幅解除 */
  .lp-problem__list {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 44px;
    width: fit-content;
    margin: 60px auto clamp(100px, 47vw, 180px);
    text-align: left;
  }
  .lp-problem__item {
    width: fit-content;
    /* max-width: 280px; */
    /* margin: 0 auto; */
  }

  .lp-problem__item-title {
    font-size: 4.4vw;
    white-space: nowrap;
  }

  .lp-problem__item-title::before {
    width: 18px;
    height: 18px;
  }

  .lp-problem__item-text {
    font-size: 3.2vw;
  }

  /* CTAボタン：右はみ出し解除・中央配置 */
  .lp-problem__cta {
    display: none;
  }

  /* FACTセクション */
  .lp-problem__fact {
    margin-top: 50vw !important;
  }

  .lp-problem__fact-label {
    font-size: 3.6vw !important;
  }

  .lp-problem__fact-title {
    font-size: 5vw !important;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .lp-problem__fact-lead {
    font-size: 2.8vw !important;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .lp-problem {
    padding: 50px 20px 90px;
    background-color: #052352;
  }
  .lp-problem__list {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 28px;
    width: fit-content;
    margin: 30px auto clamp(100px, 47vw, 180px);
    text-align: left;
  }
  .lp-problem__fact {
    margin-top: 40vw !important;
  }
  .lp-problem__fact-label {
    font-size: 16px !important;
  }
  .lp-problem__fact-title {
    font-size: 26px !important;
  }
  .lp-problem__fact-lead {
    font-size: 14px !important;
  }
}
@media (min-width: 1600px) {
  .lp-problem__fact {
    margin-top: 420px !important;
  }
}
.lp-problem__fact {
  margin-top: 320px;
  text-align: center;
}

.lp-problem__fact-label {
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: bold;
}

.lp-problem__fact-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 12px;
}

.lp-problem__fact-title span {
  position: relative;
  color: #ff7a00;
}
.lp-problem__fact-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 12px;

  background: url("../images/underline01.png") repeat center / contain;
}
.sp_only_1000 {
  display: none;
}

.lp-problem__fact-lead {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 100px;
}

/* カード */
.lp-problem__fact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-problem__fact-item {
  background: #fff;
  color: #333;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

/* 上 */
.lp-problem__fact-head {
  display: flex;
  align-items: center;
  background: #3f5fcf;
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
}

.lp-problem__fact-num {
  font-size: 20px;
  margin-right: 12px;
}

.lp-problem__fact-head-text {
  font-size: 14px;
}

/* 下 */
.lp-problem__fact-body {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.lp-problem__fact-body img {
  width: 60px;
}

.lp-problem__fact-body p {
  font-size: 13px;
  line-height: 1.6;
  background: #f1f1f1;
  padding: 10px 14px;
  border-radius: 4px;
}

.reason-cards {
  margin-top: 48px;
}

.reason-cards__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.reason-card + .reason-card {
  margin-top: 80px;
}

.reason-card {
  position: relative;
}

.reason-card__head {
  position: absolute;
  top: -32px;
  left: 0px;
  display: inline-flex;
  align-items: flex-end;
  min-height: 54px;
  padding: 10px 60px 10px 80px;
  background: transparent;
  color: #fff;
  clip-path: none;
  z-index: 2;
  overflow: visible;
  box-shadow: none;
}

.reason-card__head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #314dc9;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  z-index: -1;
}

.reason-card__num {
  position: absolute;
  top: -14px;
  left: 10px;
  z-index: 3;
  margin: 0;
}

.reason-card__num img {
  height: 65px;
  width: auto;
  display: block;
}

.reason-card__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  margin-left: 30px;
}

.reason-card__title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 8px;

  background: url("../images/arrow.png") no-repeat center / contain;
  transform: translateY(12px);
}

.reason-card__body {
  margin-top: -2px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0px;
  /* padding: 22px 24px 18px 18px; */
  padding-top: 40px;
  padding-right: 90px;
  background: #dfe2ff;
  border: 2px solid #5f7df0;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.reason-card__illust {
  flex: 0 0 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.reason-card__illust img {
  max-width: 180px;
  height: auto;
  display: block;
}

.reason-card__bubble {
  position: relative;
  align-items: center;
  flex: 1;
  background: #fff;
  color: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  padding: 18px 0px 18px 40px;
  border-radius: 4px;
  text-align: left;
}

.reason-card__bubble::before {
  content: "";
  position: absolute;
  left: -24px;
  bottom: 10%;
  transform: translateY(-50%);
  width: 24px;
  height: 20px; /* 画像高さに合わせて調整 */
  background: url("../images/bubble-arrow.png") no-repeat center / contain;
  border: none; /* 既存のborderをリセット */
}

@media (max-width: 768px) {
  .lp-problem__fact-title span::after {
    background: url("../images/underline01.png") no-repeat center / contain;
    height: 10px;
  }
  .lp-problem__fact-title .sp_only_1000::after {
    background: none;
  }

  /* reasonカード間隔 */
  .reason-card + .reason-card {
    margin-top: 75px;
  }

  .reason-cards__inner {
    max-width: 100%;
  }

  /* カードhead：高さ・パディング調整 */
  .reason-card__head {
    position: absolute;
    top: -32px;
    left: 0px;
    display: inline-flex;
    align-items: flex-end;
    min-height: 54px;
    padding: 8px 60px 12px 20px;
    background: transparent; /* 透明に */
    color: #fff;
    clip-path: none;
    z-index: 2;
    overflow: visible;
    box-shadow: none; /* shadowも削除 */
  }

  .reason-card__head::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #314dc9;
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18); /* こちらに移動 */
    z-index: -1;
  }

  .reason-card__num {
    position: absolute;
    top: -14px;
    left: 10px;
    z-index: 3;
    margin: 0;
  }

  .reason-card__num img {
    height: 54px;
    width: auto;
    display: block;
  }

  /* タイトル */
  .reason-card__title {
    font-size: 18px;
    margin-left: 60px;
    line-height: 1.3;
  }

  .reason-card__title::before {
    width: 24px;
    height: 24px;
    margin-right: 4px;
    transform: translateY(8px);
  }
  .reason-card__title02::before {
    width: 22px;
    height: 22px;
    margin-right: 4px;
    transform: translateY(8px);
  }

  /* カードbody：イラスト上・吹き出し下の縦積み */
  .reason-card__body {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
    padding: 40px 16px 0px;
    padding-right: 16px;
  }
  .pt_20 {
    padding: 20px 16px 0px;
  }

  /* イラスト */
  .reason-card__illust {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 8px;
  }

  .reason-card__illust img {
    max-width: 140px;
    height: auto;
  }

  .reason-card__bubble {
    width: 90%;
    font-weight: 700;
    line-height: 1.7;
    padding: 14px 16px;
    margin-top: 12px;
  }

  .reason-card__bubble::before {
    left: 25%;
    bottom: -20px;
    top: auto;
    transform: translateX(-50%);
    border-width: 10px 10px 0 10px;
    background: url("../images/bubble-arrow_sp.png") no-repeat center / contain;
    border-color: #fff transparent transparent transparent;
  }
}
@media (max-width: 480px) {
  .reason-card__bubble {
    font-size: 15px;
  }
}

/*----------------------------------------------------------*/
/*--------------------- 私たちの結論 ------------------*/
.lp-conclusion {
  background: #076de6;
  padding: 140px 50px;
}

.lp-conclusion__inner {
  /* max-width: 1024px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

/* ラベル「私たちの結論」 */
.lp-conclusion__label-wrap {
  display: inline-block;
  margin-bottom: 20px;
}

.lp-conclusion__label {
  position: relative;
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 16px;
  line-height: 1.6;
}

.lp-conclusion__label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);

  width: 10px;
  height: 10px;

  background: #1f6bd6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);

  transform: translateX(-50%) rotate(45deg);
}

/* メインキャッチ */
.lp-conclusion__catch {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  position: relative;
}

.lp-conclusion__catch-text {
  font-size: 40px;
  letter-spacing: 0.04em;
}

.lp-conclusion__catch-accent {
  font-size: 70px;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px #ffd943;
}

.lp-conclusion__catch::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: #fff;
  background-size: 12px 4px;
  filter: drop-shadow(0 0 6px rgba(255, 200, 60, 0.8));
}

/* 本文 */
.lp-conclusion__body {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: center;
}

.lp-conclusion__body p {
  margin: 0;
}

/* ============================================================
   SP（〜768px）
   ============================================================ */
@media (max-width: 768px) {
  .lp-conclusion {
    padding: 60px 20px;
  }

  .lp-conclusion__label {
    font-size: 16px;
  }

  .lp-conclusion__catch-text {
    font-size: 20px;
  }

  .lp-conclusion__catch-accent {
    font-size: 30px;
    padding-bottom: 0px;
  }

  .lp-conclusion__body {
    font-size: 15px;
    text-align: center;
  }
}

/* ============================================================
   プロが教える3つのポイント
   ============================================================ */
.lp-points {
  background: #daf2fd;
  padding: 140px 50px;
}

.lp-points__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

/* 見出し */
.lp-points__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 800px;
}

.lp-points__head-sub {
  font-size: 34px;
  font-weight: 700;
  color: #052352;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1;
}

.lp-points__head-main {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #fd5208;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  padding: 0px 26px 10px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  /* width: 100%; */
}

.lp-points__head-label {
  font-size: 44px;
  letter-spacing: 0.08em;
}

.lp-points__head-num-img {
  height: 130px;
  width: auto;
  display: block;
  margin: -36px 2px -30px 2px;

  position: relative;
  z-index: 1;
}

/* ポイント一覧 */
.lp-points__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}

/* 各ポイント行 */
.lp-points__item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.lp-points__item--right {
  gap: 28px;
  justify-content: flex-end;
}

/* 丸い写真 */
.lp-points__img {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  /* box-shadow: 8px 8px 0 #076ce6; */
}

.lp-points__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストコンテンツ */
.lp-points__content {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.lp-points__content--right {
  align-items: flex-end;
  gap: 17px;
}

/* POINT 01 などのラベル */
.lp-points__label {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  color: #076ce6;
  font-weight: 800;
  line-height: 1;
}

.lp-points__label-en {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

.lp-points__label-num {
  font-size: 28px;
  letter-spacing: -0.02em;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

.lp-points__title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.04em;
  line-height: 1;
}

.lp-points__title--right {
  text-align: right;
}

.lp-points__title-box {
  display: inline-block;
  background: #fff;
  box-shadow: 5px 5px 0 #888;
  padding: 10px 13px 9px;
}

.lp-points__title-accent {
  color: #fd5208;
}

/* 本文 */
.lp-points__text {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0;
}

.lp-points__text--right {
  text-align: right;
  padding-left: 80px;
}

/* ============================================================
   SP専用：プロが教える3つのポイント
   ============================================================ */
/* ============================================================
   PC/SP 表示切り替え
   ============================================================ */
@media (max-width: 768px) {
  .lp-points {
    padding: 80px 16px;
  }

  .lp-points__inner {
    gap: 0px;
  }

  /* 見出し */
  .lp-points__head {
    width: 100%;
    gap: 40px;
  }

  .lp-points__head-sub {
    font-size: 18px;
  }
  .lp-points__head-main {
    padding: 0px 12px 10px;
  }

  .lp-points__head-label {
    font-size: 20px;
  }
  .lp-points__head-num-img {
    height: 80px;
    width: auto;
    display: block;
    margin: -28px 2px -10px 2px;

    position: relative;
    z-index: 1;
  }

  .lp-points__head-num {
    font-size: 72px;
    margin-top: -20px;
  }
  .pc-only {
    display: none !important;
  }

  .lp-points__list--sp {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 60%;
  }

  .lp-points-sp__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    margin-top: 40px;
  }

  /* POINT番号ラベル */
  .lp-points-sp__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #076ce6;
    font-weight: 800;
    line-height: 1;
  }

  .lp-points-sp__label-en {
    font-size: 16px;
    font-family: "Roboto Condensed", "Roboto", sans-serif;
    letter-spacing: 0.04em;
  }

  .lp-points-sp__label-num {
    font-size: 40px;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .lp-points__head-num::before {
    position: absolute;
    top: -34px;
    left: 4px;
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 0px;

    background: url("../images/emphasis.png") no-repeat center / contain;
    transform: translateY(12px);
  }
  /* 丸い写真：中央寄せ */
  .lp-points-sp__img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    align-self: center;
    margin-top: -40px;
  }

  .lp-points-sp__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* タイトルボックス */
  .lp-points-sp__title {
    width: 100%;
  }

  .lp-points-sp__title-box {
    width: 70%;
    display: block;
    width: fit-content;
    background: #fff;
    box-shadow: 4px 4px 0 #888;
    padding: 8px 14px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin: 30px auto 20px;
    text-align: center;
  }

  .lp-points-sp__title-accent {
    color: #fd5208;
  }

  /* 本文 */
  .lp-points-sp__text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.04em;
    line-height: 1.7;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .lp-points__list--sp {
    width: 90%;
  }
  .lp-points-sp__title-box {
    width: 100%;
  }
}
/* ============================================================
   補助金支援の他社比較
   ============================================================ */
.lp-compare {
  padding: 140px 50px 140px;
  background: #eff2fa;
  position: relative;
}
.lp-compare::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: -10px;
  left: 0;
  right: 0;
  background-color: #eff2fa; /* セクションの背景色 */
  transform: skewY(-3.2deg) translateY(60px);
  z-index: -1;
}

.lp-compare__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  background-color: #eff2fa;
}

.lp-compare__title {
  position: relative;
  display: inline-block;
  margin: 0 0 40px;
  padding: 10px 24px;
  background: #eff2fa;
  border: 1px solid #003b7a;
  border-radius: 4px;
  color: #111;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.lp-compare__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid #003b7a;
  border-bottom: 1px solid #003b7a;
  transform: translateX(-50%) rotate(45deg);
}

.lp-compare__title span {
  color: #fd5208;
}

.lp-compare__table {
  max-width: 820px;
  margin: 0 50px;
}

.lp-compare__table picture,
.lp-compare__table img {
  display: block;
}

.lp-compare__table img {
  width: 100%;
  height: auto;
}

.lp-compare__title-wrap {
  text-align: center;
  margin: 0 0 40px;
}

.lp-compare__title-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
/* SP */
@media (max-width: 768px) {
  .lp-compare__title-img {
    max-width: 90%;
  }
  .lp-compare {
    padding: 60px 0 56px;
    overflow: visible;
  }

  .lp-compare__inner {
    max-width: none;
    width: 100%;
  }

  .lp-compare__title {
    margin-bottom: 36px;
    padding: 8px 18px;
    font-size: 22px;
  }

  .lp-compare__table {
    max-width: none;
    /* width: 100%; */
    overflow-x: auto;
    padding: 0 20px 12px;
    -webkit-overflow-scrolling: touch;
    margin: 0 24px;
  }

  .lp-compare__table picture {
    display: block;
    width: max-content;
  }
}
@media (max-width: 480px) {
  .lp-compare__table img {
    min-width: 500px;
    max-width: none;
    height: auto;
  }
}
/* ============================================================
   製造業の補助金採択事例
   ============================================================ */
.lp-cases {
  background: #e4f6fb;
  padding: 140px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.lp-cases__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

/* 見出し */
.lp-cases__head {
  text-align: center;
}

.lp-cases__head-en {
  font-size: 20px;
  font-weight: 700;
  color: #fd5208;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

.lp-cases__head-title {
  font-size: 36px;
  font-weight: 700;
  color: #052352;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1;
}

/* リード */
.lp-cases__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  width: 600px;
}

.lp-cases__lead-title {
  font-size: 32px;
  font-weight: 500;
  color: #052352;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0;
}

.lp-cases__lead-accent {
  color: #fd5208;
}

.lp-cases__lead-note {
  width: 100%;
  border: 1px dashed #000;
  background: #fff;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #052352;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.lp-cases__lead-note p {
  margin: 0;
}

/* スライダー */
.lp-cases__slider-wrap {
  width: 100%;
  overflow: visible;
  position: relative;
  padding: 0 60px;
  background-color: #e4f6fb;
}

.lp-cases__slider {
  display: flex;
  gap: 60px;
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .lp-cases__slider {
    gap: 40px;
  }

  .lp-cases__card {
    width: calc(100vw - 40px);
  }
  .lp-cases__slider-wrap {
    padding: 0;
    width: 80%;
  }
}
/* カード */
.lp-cases__card {
  flex-shrink: 0;
  width: 360px;
  position: relative;
  padding-top: 19px; /* バッジが上に出る分 */
}

.lp-cases__card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #314dc9;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 37px;
  white-space: nowrap;
  z-index: 1;
}

.lp-cases__card-body {
  border: 2px solid #314dc9;
  background: #fff;
  padding: 40px 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* カード内見出し */
.lp-cases__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #002c8f;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0 0 13px;
}
.lp-cases__amount-label--sub {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin: 0 0 8px;
  text-align: center;
  letter-spacing: 0.04em;
}

.lp-cases__card-rule {
  border: none;
  border-top: 1px solid #ececec;
  margin: 0;
}
.lp-cases__card-rule_02 {
  border: none;
  border-top: 1px dashed #314dc9;
  margin: 0;
}

.lp-cases__card-meta {
  display: flex;
  align-items: baseline;
  gap: 11px;
  justify-content: center;
  margin: 14px auto 26px;
}

.lp-cases__meta-text {
  font-size: 16px;
  font-weight: 500;
  color: #002c8f;
  letter-spacing: 0.04em;
}

/* タグ */
.lp-cases__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: -2px;
}
.lp-cases__tag02 {
  padding: 10px 10px;
}

.lp-cases__tag--gray {
  background: #ebebeb;
  color: #052352;
  padding: 2.5px 10px;
}
.lp-cases__tag--blue {
  background: #7898e0;
  color: #fff;
  padding: 2.5px 10px;
}
.lp-cases__tag--navy {
  background: #002c8f;
  color: #fff;
  padding: 2.5px 10px;
}
.lp-cases__tag--navy02 {
  padding: 10px;
}

/* 採択額 */
.lp-cases__card-amount {
  text-align: center;
}

.lp-cases__amount-label {
  font-size: 18px;
  font-weight: 700;
  color: #fd5208;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
}
.lp-cases__amount-label span {
  position: relative;
  border-bottom: 1px solid #fd5208;
  padding-bottom: 4px;
}

.lp-cases__amount-label span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1px solid #fd5208;
  transform: translateX(-50%) rotate(45deg);
}

.lp-cases__amount-value {
  font-size: 24px;
  font-weight: 700;
  color: #fd5208;
  margin-top: 12px;
  line-height: 1;
}

.lp-cases__amount-num {
  font-size: 40px;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

/* 既存→新規フロー */
.lp-cases__card-flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-cases__flow-row {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  padding-bottom: 0px;
}

.lp-cases__flow-row--before {
  border-bottom: 1px solid #7898e0;
  color: #7898e0;
  font-size: 16px;
}
.lp-cases__flow-row--after {
  border-bottom: 1px solid #002c8f;
  color: #002c8f;
  font-size: 16px;
}

.lp-cases__flow-arrow {
  text-align: center;
  padding: 4px 0;
}

.lp-cases__flow-arrow img {
  height: auto;
  display: inline-block;
}

/* 費用内訳 */
.lp-cases__card-finance {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-cases__finance-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-cases__finance-label {
  font-size: 16px;
  font-weight: 700;
  color: #493a2b;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.lp-cases__finance-label--sm {
  font-size: 14px;
}

.lp-cases__finance-dots {
  flex: 1;
  border-bottom: 1px dotted #aaa;
  min-width: 10px;
}

.lp-cases__finance-value {
  font-size: 24px;
  font-weight: 700;
  color: #002c8f;
  white-space: nowrap;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

.lp-cases__finance-value--sm {
  font-size: 20px;
}

/* 投資内訳 */
.lp-cases__card-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-cases__breakdown-head {
  background: #b5b5b5;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 3px 10px;
  letter-spacing: 0.04em;
}

/* チェックリスト */
.lp-cases__card-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-cases__card-points li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #052352;
  letter-spacing: 0.04em;
}

.lp-cases__card-points li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../images/icon-check.png") no-repeat center / contain;
  flex-shrink: 0;
}

/* カードフッター */
.lp-cases__card-footer {
  background: #fff;
  box-shadow: 0 0 20px rgba(253, 82, 8, 0.18);
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fd5208;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.lp-cases__card-footer p {
  margin: 0;
}

/* ナビゲーション */
.lp-cases__nav {
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  /* padding: 0 20px;
  pointer-events: none; */
}

.lp-cases__nav-btn {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  border: 2px solid #002c8f;
  background: #fff;
  color: #002c8f;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}

.lp-cases__nav-btn:hover {
  background: #002c8f;
  color: #fff;
  pointer-events: auto;
}

/* 注記 */
.lp-cases__note {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 1000px) {
  .lp-cases__lead-note {
    font-size: 12px;
  }
}

/* ============================================================
   SP（〜768px）
   ============================================================ */
@media (max-width: 768px) {
  .lp-cases {
    padding: 60px 16px;
  }

  .lp-cases__inner {
    gap: 40px;
  }

  .lp-cases__head-en {
    margin: 0 0 12px;
    font-size: 18px;
  }

  .lp-cases__head-title {
    font-size: 24px;
  }

  .lp-cases__lead {
    width: 100%;
    gap: 20px;
  }

  .lp-cases__lead-title {
    font-size: 22px;
  }
  .lp-cases__lead-note {
    font-size: 14px;
    width: 90%;
  }

  .lp-cases__card {
    width: calc(102vw - 48px);
  }

  .lp-cases__card-body {
    width: 80%;
    padding: 44px 20px 22px;
  }

  .lp-cases__nav {
    gap: 30px;
    left: -34px;
    right: -34px;
  }

  .lp-cases__nav-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .lp-cases__note {
    font-size: 14px;
  }
  .lp-cases__card-badge {
    left: 40%;
  }
  .lp-cases__finance-value {
    font-size: 5.8vw;
  }
  .lp-cases__finance-value--sm {
    font-size: 4.6vw;
  }
}

/* ============================================================
   製造業の補助金採択実績
   ============================================================ */
.lp-results {
  position: relative;
  background: url("../images/results_bg.png") no-repeat center center / cover;
  padding: 140px 50px;
}

.lp-results::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.lp-results__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* 見出し */
.lp-results__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 561px;
}

.lp-results__title {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 0;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.lp-results__title-main {
  font-size: 36px;
  font-weight: 700;
  color: #052352;
}

.lp-results__title-main--sm {
  font-size: 32px;
}

.lp-results__title-accent {
  font-size: 36px;
  font-weight: 700;
  color: #fd5208;
}

.lp-results__subtitle {
  background: #fd5208;
  padding: 8px 11px;
}

.lp-results__subtitle p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
}

/* カード群 */
.lp-results__cards {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* 各カード */
.lp-results__card {
  width: 280px;
  height: 260px;
  background: #fff;
  border: 3px solid #b965ee;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 40px 35px;
}

/* グラデーションラベル */
.lp-results__card-label {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(190deg, #b965ee 1.77%, #72a6e9 98.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  line-height: 1;
}

.lp-results__card-sub {
  font-size: 16px;
  font-weight: 700;
  color: #052352;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin: 0;
}

/* 数値 */
.lp-results__card-value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(205deg, #b965ee 1.77%, #72a6e9 98.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.lp-results__card-num {
  font-size: 94px;
  font-weight: 900;
  /* -webkit-text-stroke: 4px transparent; */
  background: linear-gradient(205deg, #b965ee 1.77%, #72a6e9 98.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

.lp-results__card-unit {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding-bottom: 8px;
}

.lp-results__card-unit--lg {
  font-size: 34px;
}
@media (max-width: 1000px) {
  .lp-results__card {
    width: 200px;
    height: 180px;
    gap: 14px;
    padding: 40px 35px;
  }
  .lp-results__card-num {
    font-size: 80px;
  }
  .lp-results__card-label {
    font-size: 20px;
  }
  .lp-results__card-sub {
    font-size: 12px;
  }
}

/* ============================================================
   SP（〜768px）
   ============================================================ */
@media (max-width: 768px) {
  .lp-results {
    padding: 60px 16px;
  }

  .lp-results__head {
    width: 100%;
  }

  .lp-results__title {
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .lp-results__title-main,
  .lp-results__title-accent {
    font-size: 26px;
  }

  .lp-results__subtitle p {
    font-size: 14px;
    white-space: normal;
  }

  .lp-results__cards {
    flex-direction: column;
    gap: 24px;
  }

  .lp-results__card {
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 32px 24px;
  }
}

/* ============================================================
   対応可能な補助金一覧
   ============================================================ */
.lp-subsidy {
  padding: 140px 50px;
  background: #fff;
}

.lp-subsidy__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.lp-subsidy__lead {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: bold;
  color: #111;
}

.lp-subsidy__title-wrap {
  text-align: center;
  margin: 0 0 44px;
}

.lp-subsidy__title-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.lp-subsidy__title span {
  color: #ff4f0a;
}

.lp-subsidy__list {
  max-width: 640px;
  margin: 0 auto 70px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-subsidy__row {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 12px;
  align-items: stretch;
}

.lp-subsidy__name {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: #003b96;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
}

.lp-subsidy__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-height: 56px;
  background: #fff;
  border: 1px solid #bcbcbc;
  color: #ff4f0a;
  font-size: 20px;
  font-weight: 700;
  border-radius: 4px;
}

.lp-subsidy__amount span {
  margin: 10px 4px 0;
  font-size: 40px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
}

.lp-subsidy__boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 0 auto;
  text-align: left;
}

.lp-subsidy__box {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.lp-subsidy__box h3 {
  margin: 0;
  padding: 10px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.lp-subsidy__box--orange h3 {
  background: #ff4f0a;
}

.lp-subsidy__box--gray h3 {
  background: #999;
}

.lp-subsidy__box ul {
  margin: 0;
  padding: 18px 24px 24px;
  list-style: none;
}

.lp-subsidy__box li {
  position: relative;
  padding-left: 24px;
  color: #00305f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.lp-subsidy__box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;

  width: 16px;
  height: 16px;

  background: url("../images/icon-check.png") no-repeat center / contain;
}

@media (max-width: 768px) {
  .lp-subsidy {
    padding: 60px 16px;
  }
  .lp-subsidy__title-wrap {
    margin: 0 0 30px;
  }

  .lp-subsidy__title {
    font-size: 24px;
  }
  .lp-subsidy__list {
    margin: 0 auto 40px;
  }

  .lp-subsidy__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lp-subsidy__boxes {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* ============================================================
   事業計画・労務・手続きのプロが結集
   ============================================================ */
.lp-support {
  padding: 140px 50px 120px;
  background: #dff5fb;
}

.lp-support__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.lp-support__title {
  position: relative;
  display: inline-block;
  margin: 0 0 56px;
  padding: 14px 24px;
  color: #333;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.lp-support__title::before,
.lp-support__title::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #1687ff;
  border-style: solid;
}

.lp-support__title::before {
  left: 0;
  top: 0;
  border-width: 3px 0 0 3px;
}

.lp-support__title::after {
  right: 0;
  bottom: 0;
  border-width: 0 3px 3px 0;
}

.lp-support__title span {
  color: #ff4f0a;
}

.lp-support__image {
  max-width: 1024px;
  margin: 0 auto;
}

.lp-support__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .lp-support__image img {
    content: url("../images/support-diagram_sp.png");
  }
  .lp-support {
    padding: 60px 16px;
  }

  .lp-support__title {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .lp-support__diagram {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .lp-support__diagram::before,
  .lp-support__center {
    display: none;
  }

  .lp-support__circle {
    position: static;
    width: 240px;
    height: 240px;
    margin: 0 auto;
    transform: none;
  }
}
/* ============================================================
   貴社の手取りを最大化する
   ============================================================ */
.lp-explain {
  position: relative;
  background: #076de6;
  padding: 60px 50px 10px;
  color: #fff;
  text-align: center;
}

.lp-explain::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  height: 61px;
  background: #076de6;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.lp-explain__inner {
  position: relative;
  z-index: 2;
}

.lp-explain p {
  margin: 0 0 12px;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.lp-explain h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lp-explain h2 span {
  display: inline-block;
  margin-left: 6px;
  padding: 0px 8px;
  background: #ff4f0a;
  color: #fff;
  line-height: 1.2;
}
.lp-explain__sign-img {
  height: auto;
  width: 140px;
}
@media (max-width: 768px) {
  .lp-explain {
    padding: 48px 20px 0px;
  }
  .lp-explain p {
    font-size: 20px;
  }
  .lp-explain h2 {
    font-size: 20px;
  }
  .lp-explain h2 span {
    font-size: 40px;
    margin-top: 16px;
  }
}
/* ============================================================
   「新規事業立ち上げ支援」とは？
   ============================================================ */
.lp-service {
  padding: 160px 50px 140px;
  background: #fff;
}

.lp-service__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.lp-service__title {
  margin: 0 0 8px;
  color: #333;
  font-size: 36px;
  font-weight: 700;
}

.lp-service__lead {
  margin: 0 0 56px;
  color: #555;
  font-size: 18px;
  font-weight: 700;
}

.lp-service__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
}

.lp-service__card {
  min-height: 260px;
  padding: 34px 34px 30px;
  background: #fff;
  border: 2px solid #c8edff;
  box-shadow: 0 0 12px rgba(0, 153, 255, 0.22);
  text-align: left;
}

.lp-service__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 4px;
}
.lp-service__icon02 {
  width: 90px;
  height: 60px;
  margin: 0 auto 4px;
}

.lp-service__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lp-service__card h3 {
  margin: 0 0 10px;
  color: #ff4f0a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.lp-service__card p {
  margin: 0;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .lp-service {
    padding: 92px 16px 60px;
  }

  .lp-service__title {
    font-size: 22px;
    font-weight: bold;
  }

  .lp-service__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .lp-service__lead {
    margin: 0 0 36px;
  }

  .lp-service__card {
    min-height: auto;
    padding: 40px 22px 48px;
  }
}
/* ============================================================
   補助金申請の流れ
   ============================================================ */
.lp-flow {
  padding: 110px 50px 130px;
  background: #f5f2f2;
  position: relative;
}

.lp-flow::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: -10px;
  left: 0;
  right: 0;
  background-color: #f5f2f2;
  transform: skewY(-3.2deg) translateY(60px);
  z-index: -1;
}

.lp-flow__inner {
  max-width: 960px;
  margin: 0 auto;
  background: #e6fbff;
}

.lp-flow__head {
  position: relative;
  padding: 20px 20px 18px;
  background: linear-gradient(90deg, #0074f0 0%, #16b4df 100%);
  text-align: center;
  color: #fff;
}

.lp-flow__head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #0ca0e4;
}

.lp-flow__head p {
  margin: 0 0 4px;
  color: #f8d400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lp-flow__head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.lp-flow__body {
  padding: 52px 96px 58px;
}

.lp-flow__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.lp-flow__item + .lp-flow__item {
  margin-top: 34px;
}

/* ステップ間の点線をbeforeで表現 */
.lp-flow__item + .lp-flow__item::before {
  content: "";
  position: absolute;
  left: 50px;
  top: -32px;
  height: 32px;
  border-left: 2px dashed #002c8f;
}

.lp-flow__step {
  position: relative;
  min-height: 86px;
  padding-left: 30px;
  margin-right: -20px;
  /* background: #00c3e8; */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
  border-radius: 8px 0 0 8px;
}
.flow__step01 {
  background: #00c3e8;
}
.flow__step02 {
  background: #00b4e7;
}
.flow__step03 {
  background: #009dda;
}

.lp-flow__step span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.lp-flow__step strong {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

.lp-flow__content {
  min-height: 86px;
  margin-left: -20px;
  padding: 20px 28px 20px 68px;
  background: #fff;
  border-radius: 0 8px 8px 0;
  text-align: left;
}

.lp-flow__content h3 {
  margin: 0 0 8px;
  color: #03a8d8;
  font-size: 20px;
  font-weight: 700;
}

.lp-flow__content p {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .lp-flow {
    padding: 60px 16px 0px;
    margin-bottom: 100px;
  }

  .lp-flow__inner {
    background: #e6fbff;
  }

  .lp-flow__head h2 {
    font-size: 22px;
  }

  .lp-flow__body {
    padding: 40px 16px 40px;
    position: relative;
  }

  /* ステップ間の点線 */
  .lp-flow__item + .lp-flow__item {
    margin: 40px 0;
    padding-top: 0;
  }

  .lp-flow__item {
    grid-template-columns: 90px 1fr;
    position: relative;
  }

  .lp-flow__item + .lp-flow__item::before {
    content: "";
    position: absolute;
    left: 36px;
    top: -40px;
    height: 44px;
    border-left: 2px dashed #002c8f;
  }

  .lp-flow__step {
    min-height: 100%;
    height: 100%;
    padding: 20px 0 20px 16px;
    margin-right: -16px;
    clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 8px 0 0 8px;
  }

  .lp-flow__step span {
    font-size: 11px;
  }

  .lp-flow__step strong {
    font-size: 28px;
  }
  .lp-flow__content {
    min-height: auto;
    margin-left: -8px;
    padding: 20px 16px 20px 38px;
    border-radius: 0 8px 8px 0;
  }

  .lp-flow__content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .lp-flow__content p {
    font-size: 15px;
    line-height: 1.7;
  }
}
/* ============================================================
   補助金申請の流れ
   ============================================================ */
/* ============================================================
   FAQ
   ============================================================ */
.lp-faq {
  background: #daf2fd;
  padding: 140px 50px;
}

.lp-faq__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* 見出し */
.lp-faq__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-faq__head-en {
  font-size: 18px;
  font-weight: 700;
  color: #fd5208;
  letter-spacing: 0.08em;
  margin: 0;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

.lp-faq__head-title {
  font-size: 36px;
  font-weight: 700;
  color: #052352;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.2;
}

.lp-faq__head-sub {
  font-size: 16px;
  font-weight: 500;
  color: #052352;
  letter-spacing: 0.04em;
  margin: 0;
}

/* アコーディオンリスト */
.lp-faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 各アイテム */
.lp-faq__item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.lp-faq__item[open] {
  border: 2px solid #314dc9;
}

.lp-faq__item:not([open]) {
  border: 2px solid transparent;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* サマリー（クリック部分） */
.lp-faq__summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

/* デフォルトの▶を消す */
.lp-faq__summary::-webkit-details-marker {
  display: none;
}
.lp-faq__summary::marker {
  display: none;
}

/* Qアイコン */
.lp-faq__q {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #052352;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

/* Q本文 */
.lp-faq__q-text {
  flex: 1;
  font-size: 17px;
  font-weight: bold;
  color: #052352;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* 開閉アイコン（∨） */
.lp-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.lp-faq__icon::before,
.lp-faq__icon::after {
  content: "";
  position: absolute;
  background: #052352;
  border-radius: 2px;
}

/* ∨の形 */
.lp-faq__icon::before {
  width: 10px;
  height: 2px;
  top: 10px;
  left: 2px;
  transform: rotate(45deg);
}

.lp-faq__icon::after {
  width: 10px;
  height: 2px;
  top: 10px;
  right: 2px;
  transform: rotate(-45deg);
}

/* open時は∧に */
.lp-faq__item[open] .lp-faq__icon::before {
  transform: rotate(-45deg);
}

.lp-faq__item[open] .lp-faq__icon::after {
  transform: rotate(45deg);
}

/* open時のQアイコン色変更 */
.lp-faq__item[open] .lp-faq__q {
  background: #314dc9;
}

/* 回答エリア */
.lp-faq__content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 20px 20px;
  background: #eaf4fd;
  border-radius: 6px;
  padding: 16px 20px;
}

.lp-faq__content p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* Aアイコン */
.lp-faq__a {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2ba3ff;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
  margin-top: 2px;
}

/* ============================================================
   SP（〜768px）
   ============================================================ */
@media (max-width: 768px) {
  .lp-faq {
    padding: 60px 16px;
  }

  .lp-faq__head-title {
    font-size: 26px;
  }

  .lp-faq__q-text {
    font-size: 15px;
  }

  .lp-faq__content {
    margin: 0 12px 16px;
    padding: 14px 16px;
    gap: 10px;
  }

  .lp-faq__content p {
    font-size: 14px;
  }
  .lp-faq__summary {
    gap: 8px;
    padding: 10px 12px;
    border-radius: 16px;
  }
}
/* ============================================================
   代表メッセージ
   ============================================================ */
.lp-message {
  background: #fff;
  padding: 140px 50px;
}

.lp-message__inner {
  max-width: 920px;
  margin: 0 auto;
}

/* カード全体 */
.lp-message__card {
  border: 1px solid #052352;
  border-radius: 12px;
  padding: 60px 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  background: #fff;
  box-shadow:
    0 0 12px rgba(0, 153, 255, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.18);
}

/* テキストエリア */
.lp-message__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

/* タイトル */
.lp-message__title {
  font-size: 28px;
  font-weight: 700;
  color: #052352;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
}

/* 区切り線 */
.lp-message__divider {
  width: 1px;
  height: 48px;
  background: #9ec8f0;
}

/* 本文 */
.lp-message__text {
  font-size: 16px;
  font-weight: 700;
  color: #052352;
  letter-spacing: 0.04em;
  line-height: 2;
  margin: 0;
  text-align: center;
}

/* 署名 */
.lp-message__sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lp-message__sign-title {
  font-size: 14px;
  font-weight: 500;
  color: #052352;
  letter-spacing: 0.08em;
  margin-top: 12px;
}
.lp-message__sign-img {
  width: 110px;
}

.lp-message__sign-name {
  font-size: 28px;
  font-weight: 700;
  color: #052352;
  letter-spacing: 0.08em;
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

/* 動画エリア */
.lp-message__video-wrap {
  width: 100%;
}

.lp-message__video {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.lp-message__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   SP（〜768px）
   ============================================================ */
@media (max-width: 768px) {
  .lp-message {
    padding: 80px 16px;
  }

  .lp-message__card {
    padding: 60px 24px;
    gap: 60px;
    margin-top: 30px;
  }

  .lp-message__title {
    font-size: 20px;
  }

  .lp-message__text {
    font-size: 14px;
    text-align: left;
  }

  .lp-message__play {
    width: 56px;
    height: 56px;
  }

  .lp-message__play-icon {
    font-size: 20px;
  }
  .lp-message__sign-title {
    margin-top: 32px;
  }
}
/* ============================================================
   事務所案内 & アクセス
   ============================================================ */
.lp-outline {
  background: #f5f5f5;
  padding: 120px 50px;
  position: relative;
}

.lp-outline::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: -10px;
  left: 0;
  right: 0;
  background-color: #f5f5f5;
  transform: skewY(-3.2deg) translateY(60px);
  z-index: -1;
}

.lp-outline__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* 各ブロック共通 */
.lp-outline__block {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* 見出し */
.lp-outline__head {
  flex-shrink: 0;
  width: 180px;
}

.lp-outline__head-en {
  font-size: 14px;
  font-weight: 700;
  color: #fd5208;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

.lp-outline__head-title {
  font-size: 32px;
  font-weight: 700;
  color: #052352;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.2;
}

/* 事務所案内テーブル */
.lp-outline__table {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.lp-outline__row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px dashed #ccc;
}

.lp-outline__term {
  flex-shrink: 0;
  width: 140px;
  font-size: 15px;
  font-weight: 700;
  color: #052352;
  letter-spacing: 0.04em;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.lp-outline__bullet {
  color: #076ce6;
  font-size: 18px;
  line-height: 1.4;
  flex-shrink: 0;
}

.lp-outline__desc {
  flex: 1;
  font-size: 15px;
  font-weight: bold;
  color: #052352;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0;
}

/* アクセスブロック全体 */
.lp-outline__access-block {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* 左：見出し＋カード */
.lp-outline__access-left {
  /* flex: 0 0 280px; */
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 交通手段カード */
.lp-outline__access-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-outline__access-item {
  background: #fff;
  border-radius: 8px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: #cfcfcf 1px solid;
  /* box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12); */
}

/* アイコン丸 */
.lp-outline__access-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #314dc9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp-outline__access-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.lp-outline__access-label {
  font-size: 15px;
  font-weight: 700;
  color: #314dc9;
  margin: 0 0 4px;
  letter-spacing: 0.04em;
}

.lp-outline__access-desc {
  font-size: 14px;
  font-weight: 500;
  color: #052352;
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* 右：Googleマップ */
.lp-outline__map {
  flex: 1;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  width: 60%;
}

.lp-outline__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
}

/* ============================================================
   SP（〜768px）
   ============================================================ */
@media (max-width: 768px) {
  .lp-outline {
    padding: 60px 16px 20px;
    margin-bottom: 120px;
  }

  .lp-outline__inner {
    gap: 60px;
  }

  /* 事務所案内ブロック：縦積み */
  .lp-outline__block {
    flex-direction: column;
    gap: 30px;
  }

  /* 見出し：中央寄せ */
  .lp-outline__head {
    width: 100%;
    text-align: center;
  }

  .lp-outline__head-title {
    font-size: 24px;
  }
  .lp-outline__table {
    margin: 0 auto;
    width: 90%;
    flex: none;
  }

  /* テーブル行：縦積み（ラベル上・値下） */
  .lp-outline__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 0;
  }

  .lp-outline__term {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
  }

  .lp-outline__desc {
    font-size: 14px;
    padding-left: 22px;
  }

  /* アクセスブロック：縦積み */
  .lp-outline__access-block {
    flex-direction: column;
    background-color: #f5f5f5;
    gap: 20px;
  }

  /* 見出し：中央寄せ */
  .lp-outline__access-left {
    flex: none;
    width: 100%;
    align-items: center;
  }

  .lp-outline__access-left .lp-outline__head {
    text-align: center;
  }

  /* カード：幅いっぱい */
  .lp-outline__access-info {
    width: 100%;
  }

  .lp-outline__access-item {
    padding: 14px 16px;
  }

  .lp-outline__access-label {
    font-size: 15px;
  }

  .lp-outline__access-desc {
    font-size: 13px;
  }

  /* マップ：幅いっぱい */
  .lp-outline__map {
    width: 100%;
    min-height: 220px;
  }

  .lp-outline__map iframe {
    min-height: 220px;
  }

  .lp-float-cta {
    position: fixed;
    right: 0px;
    bottom: 0px;
    margin-bottom: 0px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    border-radius: 0px;
    background: linear-gradient(180deg, #ffb11e, #f28b00);
    box-shadow: 0 6px 0 #f07c00;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    line-height: 1.4;

    /* 初期は非表示 */
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .lp-float-cta.is-show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .lp-float-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }

  .lp-float-cta__tag {
    display: inline-block;
    font-size: 16px;
    background: #fff;
    color: #ffb11e;
    padding: 1px 8px;
    border-radius: 2px;
    margin-bottom: 4px;
  }

  .lp-float-cta__main {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }

  .lp-footer {
    margin-top: 60px;
  }
}
/* ============================================================
   固定CTA（FVスクロール後に表示）
   ============================================================ */

.lp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* 初期は非表示 */
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.lp-sticky-cta.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lp-sticky-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px 14px;
  background: linear-gradient(90deg, #f58600 0%, #f7c533 100%);
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.lp-sticky-cta__tag {
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  color: #f58600;
  padding: 1px 12px;
  border-radius: 2px;
  margin-bottom: 4px;
  display: inline-block;
}

.lp-sticky-cta__main {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  background: #002c8f;
  padding: 40px 20px;
}

.lp-footer__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lp-footer__text {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 0;
  text-align: center;
}
