@charset "UTF-8";

/* 1. リセット・ベース
   ----------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  font-family: "BIZ UDPGothic", sans-serif;
  color: #000000;
  margin: 0;
  padding: 0;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

:root {
  --color-main2: #00aab6;
  --color-main3: #ebebeb;
  --color-black: #000000;
  --color-sup1: #0762dc;
  --color-sup2: #69b3e7;
  --color-sup3: #b8d7e0;
  --color-sup4: #595757;
  --color-sup5: #ff7631;
  --color-sup7: #002772;
  --color-sup8: #ffa400;
  --color-sup9: #0038c4;
  --color-sup10: #b3b3b4;
  --color-hue: #902af3;
  --color-white: #ffffff;
  --bg-main-gradation: linear-gradient(63deg, rgba(144, 42, 243, 1) 6%, rgba(7, 98, 220, 1) 53%, rgba(0, 211, 188, 1) 100%);
}


.lp-bg-gray {
  background-color: #f8f8f8;
}

.lp-bg-white {
  background-color: #ffffff;
}

/* 2. 共通ユーティリティ（.lp-bg-*, .lp-inner-*, .lp-pc-only 等）
   ----------------------------------------- */
.lp-inner-1200 {
  max-width: 1280px;
  /* コンテンツ幅1200px + 左右パディング計80px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.lp-inner-1440 {
  max-width: 1520px;
  /* コンテンツ幅1440px + 左右パディング計80px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.lp-bg-gradation {
  background: var(--bg-main-gradation);
}

.lp-bg-white {
  background-color: var(--color-white);
}

.lp-pc-only {
  display: block;
}

.lp-sp-only {
  display: none;
}

/* 3. 共通コンポーネント（.lp-c-btn, .lp-c-ttl 等）
   ----------------------------------------- */
.lp-c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  min-width: 200px;
  transition: all 0.3s;
  white-space: nowrap;
}

.lp-c-btn:hover {
  opacity: 0.8;
}

.lp-c-btn__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: auto;
}

.lp-c-btn--primary {
  background-color: var(--color-sup5);
  color: var(--color-white);
  padding: 12px 40px 12px 24px;
  border-radius: 270px;
  font-size: 14px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.lp-c-btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 999px;
  background-image: linear-gradient(128deg, #ff8b54 50%, transparent 50%);
  background-position: bottom right;
  background-size: 200% 200%;
  transition: 0.5s;
  z-index: -1;
}

.lp-c-btn--primary:hover {
  background-color: var(--color-sup5);
  opacity: 0.7;
}

.lp-c-btn--primary:hover::after {
  background-position: top left;
}

.lp-c-btn--secondary {
  background-color: var(--color-sup4);
  color: var(--color-white);
  padding: 12px 40px 12px 24px;
  border-radius: 270px;
  font-size: 14px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.lp-c-btn--secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 999px;
  background-image: linear-gradient(128deg, #902AF3 50%, transparent 50%);
  background-position: bottom right;
  background-size: 200% 200%;
  transition: 0.5s;
  z-index: -1;
}

.lp-c-btn--secondary:hover {
  background-color: var(--color-sup4);
  opacity: 1;
}

.lp-c-btn--secondary:hover::after {
  background-position: top left;
}

.lp-c-tag--sup5 {
  background-color: var(--color-sup5);
  color: var(--color-white);
  border-radius: 0 30px 30px 0;
}

/* 共通：横並びカード（解決策・理由セクション等で使用） */
.lp-c-card-row {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--color-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 7px 35px rgba(0, 0, 0, 0.1);
}

.lp-c-card-row--reverse {
  flex-direction: row-reverse;
}

.lp-c-card-row__content {
  width: 55%;
}

.lp-c-card-row__visual {
  width: 45%;
}

.lp-c-card-row__visual img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.lp-c-card-row__tag {
  display: inline-flex;
  height: 32px;
  padding: 0 20px 0 15px;
  margin-bottom: 10px;
  align-items: center;
  background: var(--bg-main-gradation);
  border-radius: 0 20px 20px 0;
  color: var(--color-white);
  line-height: 1em;
  font-size: 14px;
  font-weight: 700;
}

.lp-c-card-row__ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--color-black);
}

.lp-c-card-row__txt {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--color-black);
}

.lp-c-ttl-section {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

/* 4. ブロック（.lp-block-hero, .lp-block-feature 等）
   ----------------------------------------- */

/* .lp-header
   ----------------------------------------- */
.lp-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 18px 40px 13px;
}

.lp-header__inner {
  display: flex;
  padding-left: 0;
  padding-right: 0;
  align-items: center;
  justify-content: space-between;
}

.lp-header__logo {
  width: 130px;
}

.lp-header__btns {
  display: flex;
  gap: 18px;
}

.lp-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: 200px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--color-sup5);
  min-width: 140px;
  transition: all 0.3s;
}

.lp-header__btn:hover {
  opacity: 0.8;
}

.lp-header__btn--outline {
  color: var(--color-sup5);
  background-color: var(--color-white);
  border: 1px solid var(--color-sup5);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.lp-header__btn--outline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 999px;
  background-image: linear-gradient(128deg, var(--color-hue) 50%, transparent 50%);
  background-position: bottom right;
  background-size: 200% 200%;
  transition: 0.5s;
  z-index: -1;
}

.lp-header__btn--outline:hover {
  color: var(--color-white);
  border-color: var(--color-hue);
  opacity: 1;
}

.lp-header__btn--outline:hover::after {
  background-position: top left;
}

.lp-header__btn--fill {
  color: var(--color-white);
  background-color: var(--color-sup5);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--color-sup5);
}

.lp-header__btn--fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 999px;
  background-image: linear-gradient(128deg, var(--color-hue) 50%, transparent 50%);
  background-position: bottom right;
  background-size: 200% 200%;
  transition: 0.5s;
  z-index: -1;
}

.lp-header__btn--fill:hover {
  color: var(--color-white);
  border-color: var(--color-hue);
  opacity: 1;
}

.lp-header__btn--fill:hover::after {
  background-position: top left;
}

/* .lp-block-hero
   ----------------------------------------- */
.lp-block-hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  background-image: url('../img/lp/hero_bg.svg');
  background-repeat: no-repeat;
  background-position: left calc(50% - 300px) top 100px;
  background-size: auto 770px;
}

.lp-block-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 背景画像は .lp-block-hero の background-image に移行したため削除 */

.lp-block-hero__content {
  width: 55%;
}

.lp-block-hero__visual {
  width: 40%;
  text-align: right;
}

.lp-block-hero__ttl-sub {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px;
}

.lp-block-hero__ttl-main {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

.lp-block-hero__lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-sup4);
  margin: 0 0 20px;
}

.lp-block-hero__btns {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.lp-block-hero .lp-c-btn {
  font-size: 17px;
  padding-top: 15px;
  padding-bottom: 15px;
  min-width: 260px;
}

/* アンカーリンクナビ */
.lp-anchor-nav-section {
  padding: 35px 0;
  background-color: var(--color-white);
}

.lp-anchor-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.lp-anchor-nav__item {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-sup4);
  border-radius: 200px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-sup4);
  text-decoration: none;
  transition: all 0.5s ease;
  gap: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.lp-anchor-nav__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 200px;
  background-image: linear-gradient(128deg, var(--color-sup4) 50%, transparent 50%);
  background-position: bottom right;
  background-size: 200% 200%;
  transition: 0.5s;
  z-index: -1;
}

.lp-anchor-nav__item:visited {
  color: var(--color-sup4);
}

.lp-anchor-nav__item:hover {
  color: var(--color-white);
}

.lp-anchor-nav__item:hover::after {
  background-position: top left;
}

.lp-anchor-nav__icon {
  width: 10px;
  height: auto;
  transition: filter 0.5s;
}

.lp-anchor-nav__item:hover .lp-anchor-nav__icon {
  filter: brightness(0) invert(1);
}

/* .lp-block-problem
   ----------------------------------------- */
.lp-block-problem {
  padding: 40px 0 80px;
}

.lp-block-problem__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-block-problem__item {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--color-white);
  /* ボックスは白 */
  padding: 10px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.lp-block-problem__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
}

.lp-block-problem__txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-sup7);
  margin: 15px 0;
}

/* .lp-block-solution
   ----------------------------------------- */
.lp-block-solution {
  padding: 60px 0;
}

.lp-block-solution__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* .lp-block-feature
   ----------------------------------------- */
.lp-block-feature {
  padding: 50px 0;
  border-top: 1px solid #9d44f4;
  border-bottom: 1px solid #9d44f4;
  text-align: center;
}

.lp-block-feature__lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-sup4);
  margin-top: -40px;
  margin-bottom: 60px;
}

.lp-block-feature__body {
  padding: 40px 0;
  background: var(--bg-main-gradation);
}

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

.lp-block-feature__card {
  background: var(--color-white);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.lp-block-feature__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 30px;
}

.lp-block-feature__card-ttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 0 20px;
}

.lp-block-feature__card-txt {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-black);
  text-align: left;
  padding: 0 30px;
}

.lp-block-feature__footer {
  margin-top: 40px;
}

/* .lp-block-sol-detail
   ----------------------------------------- */
.lp-block-sol-detail {
  padding: 60px 0 80px;
}

.lp-block-sol-detail__lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-sup4);
  text-align: center;
  margin-top: -35px;
  margin-bottom: 60px;
}

.lp-block-sol-detail__tabs {
  max-width: 1200px;
  margin: 70px auto 0;
}

.lp-block-sol-detail__tab-btns {
  display: flex;
  gap: 10px;
}

.lp-block-sol-detail__tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 65px;
  background: #e6e6e6;
  border: none;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  color: #666;
  opacity: 1;
}

.lp-block-sol-detail__tab-btn:not(.lp-is-active):hover {
  background: #d9d9d9;
}

.lp-block-sol-detail__tab-btn img {
  width: auto;
  height: 40px;
}

.lp-block-sol-detail__tab-btn.lp-is-active {
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  opacity: 1;
  z-index: 1;
}

.lp-block-sol-detail__tab-btn.lp-is-active img {}

.lp-block-sol-detail__tab-contents {
  background: var(--color-white);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 25px;
  position: relative;
  margin-top: -1px;
}

.lp-block-sol-detail__tab-content {
  display: none;
}

.lp-block-sol-detail__tab-content.lp-is-active {
  display: block;
}

.lp-block-sol-detail__item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.lp-block-sol-detail__item-visual {
  flex: 0 0 23%;
  text-align: center;
}

.lp-block-sol-detail__item-icon {
  width: 100px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-block-sol-detail__item-icon img {
  width: auto;
  height: 60px;
  /* 縦幅でサイズを統一 */
}

.lp-block-sol-detail__item-ttl {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
}

.lp-block-sol-detail__item-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-block-sol-detail__item-list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 10px;
}

.lp-block-sol-detail__item-list li:last-child {
  margin-bottom: 0;
}

.lp-block-sol-detail__item-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-black);
}

/* .lp-block-case
   ----------------------------------------- */
.lp-block-case {
  position: relative;
  overflow: hidden;
  padding: 50px 0 40px;
  /* 下パディングを調整 */
  background-image: url("../img/lp/case_bg_vector.webp");
  background-size: 680px auto;
  background-position: left calc(50% - 300px) bottom -180px;
  background-repeat: no-repeat;
  border-top: 1px solid #9d44f4;
}

.lp-block-case .lp-inner-1200 {
  position: relative;
  z-index: 2;
}

.lp-block-case__lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-sup4);
  text-align: center;
  margin-top: -40px;
  margin-bottom: 60px;
}

.lp-block-case__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.lp-block-case__card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lp-block-case__card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 40px 10px;
  /* 共通の余白を追加 */
}

.lp-block-case__card-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 共通で収まるように調整 */
}

.lp-block-case__card-body {
  padding: 10px 40px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lp-block-case__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.lp-block-case__tag {
  display: inline-block;
  margin-left: -40px;
  padding: 8px 15px;
  background: var(--bg-main-gradation);
  border-radius: 0 20px 20px 0;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
}

.lp-block-case__company {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

.lp-block-case__impact {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  margin-bottom: 25px;
}

.lp-block-case__impact-txt {
  margin: 0;
}

.lp-block-case__impact-main {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-sup7);
  margin-bottom: 10px;
}

.lp-block-case__impact-num {
  font-size: 44px;
  font-weight: 700;
}

.lp-block-case__impact-sub {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-sup1);
}

.lp-block-case__card-footer {
  margin-top: auto;
  text-align: center;
}

.lp-c-btn-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #595757;
  color: var(--color-white);
  padding: 10px 30px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.lp-c-btn-mini::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 999px;
  background-image: linear-gradient(128deg, #902AF3 50%, transparent 50%);
  background-position: bottom right;
  background-size: 200% 200%;
  transition: 0.5s;
  z-index: -1;
}

.lp-c-btn-mini:hover {
  opacity: 1;
}

.lp-c-btn-mini:hover::after {
  background-position: top left;
}

.lp-c-btn-mini img {
  width: 14px;
  height: auto;
}

.lp-block-case__footer {
  text-align: center;
  position: relative;
  z-index: 3;
}

.lp-c-btn--dark {
  background-color: #595757;
  color: var(--color-white);
}



/* .lp-block-reason
   ----------------------------------------- */
.lp-block-reason {
  padding: 100px 0;
  border-top: 40px solid #f8f8f8;
  /* 導入事例が白、選ばれる理由も白、その間の隙間がグレー */
}

.lp-block-reason__lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-sup4);
  text-align: center;
  margin-top: -40px;
  margin-bottom: 60px;
}

.lp-block-reason__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lp-block-reason__footer {
  margin-top: 60px;
  text-align: center;
}

/* .lp-block-faq
   ----------------------------------------- */
.lp-block-faq {
  padding: 60px 0 80px;
}

.lp-block-faq__list {
  max-width: 1200px;
  /* 1440pxコンテナに合わせて少し広げる */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-block-faq__item {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.lp-block-faq__q {
  padding: 24px 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  list-style: none;
  position: relative;
  transition: background-color 0.3s;
}

.lp-block-faq__q::-webkit-details-marker {
  display: none;
}


.lp-block-faq__q-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-hue);
  margin-right: 15px;
}

.lp-block-faq__q-txt {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  flex: 1;
}

.lp-block-faq__icon {
  width: 14px;
  height: 14px;
  position: relative;
  margin-left: 20px;
}

.lp-block-faq__icon::before,
.lp-block-faq__icon::after {
  content: "";
  position: absolute;
  background-color: #595757;
  transition: all 0.3s;
}

.lp-block-faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.lp-block-faq__icon::after {
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #595757;
  border-right: 1px solid #595757;
  transform: translateY(-50%) rotate(45deg);
  background-color: transparent;
}

/* Open state icon (X) */
.lp-block-faq__item[open] .lp-block-faq__icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.lp-block-faq__item[open] .lp-block-faq__icon::after {
  border: none;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  background-color: #595757;
}

.lp-block-faq__item[open] .lp-block-faq__q::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background-color: #eee;
}

.lp-block-faq__a {
  overflow: hidden;
  display: none;
}

.lp-block-faq__item[open] .lp-block-faq__a {
  display: block;
}

.lp-block-faq__a-txt {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-black);
}

.lp-block-faq__a-inner {
  padding: 10px 40px;
  /* Qの文字位置に合わせるため左パディングを40pxに */
}

/* .lp-block-numbers
   ----------------------------------------- */
.lp-block-numbers {
  padding: 50px 0 80px;
}

.lp-block-numbers__box {
  padding: 30px 40px 50px;
  position: relative;
  z-index: 1;
}

/* グラデーション枠線 */
.lp-block-numbers__box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  /* 枠線の太さ */
  background: var(--bg-main-gradation);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.lp-block-numbers__ttl {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 10px;
}

.lp-block-numbers__sub {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
}

.lp-block-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 60px;
}

.lp-block-numbers__item {
  text-align: center;
  position: relative;
}

/* 縦の仕切り線 */
.lp-block-numbers__item:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #e5e5e5;
}

/* 横の仕切り線（1行目の下） */
.lp-block-numbers__item:nth-child(-n+4)::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: -30px;
  width: 80%;
  height: 1px;
  background-color: #e5e5e5;
}

.lp-block-numbers__num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--color-sup5);
}

.lp-block-numbers__num {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.lp-block-numbers__unit {
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
}

.lp-block-numbers__txt {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-sup4);
}

/* .lp-block-download
   ----------------------------------------- */
.lp-block-download {
  padding: 50px 0;
  border-top: 1px solid #9d44f4;
}

.lp-block-download__ttl {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-sup1);
  text-align: center;
  margin-bottom: 60px;
}

.lp-block-download__container {
  display: flex;
  width: 100%;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  /* 両端に寄せすぎず中央に寄せる */
}

.lp-block-download__info {
  width: 100%;
  max-width: 580px;
  flex: 1;
}

.lp-block-download__gallery {
  margin-bottom: 40px;
}

.lp-block-download__main-img {
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

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

.lp-block-download__thumbs {
  display: flex;
  gap: 15px;
}

.lp-block-download__thumb {
  width: calc((100% - 30px) / 3);
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.lp-block-download__thumb.lp-is-active {
  border-color: var(--color-sup1);
}

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

.lp-block-download__content {
  padding: 25px 40px 50px;
  background: var(--color-white);
  border-radius: 0;
}

.lp-block-download__content-ttl {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--color-black);
}

.lp-block-download__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-block-download__features li {
  position: relative;
  padding-left: 36px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-sup4);
  line-height: 1.4;
}

.lp-block-download__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('../img/lp/icon_check.webp') no-repeat center / contain;
}

.lp-block-download__form-box {
  width: 100%;
  max-width: 580px;
  padding: 40px;
  flex: 1;
  background: var(--color-white);
  border-radius: 0;
  box-shadow: none;
}

.lp-block-download__form-row {
  margin-bottom: 24px;
}

.lp-block-download__form-row--flex {
  display: flex;
  gap: 20px;
}

.lp-block-download__form-col {
  flex: 1;
}

.lp-block-download__label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-black);
  position: relative;
  padding-left: 18px;
}

.lp-block-download__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  background: url('../img/lp/icon_asterisk.webp') no-repeat center / contain;
}

.lp-block-download__input,
.lp-block-download__select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  color: var(--color-black);
  background-color: #fff;
  transition: border-color 0.3s;
}

.lp-block-download__input:focus,
.lp-block-download__select:focus {
  outline: none;
  border-color: var(--color-sup1);
}

.lp-block-download__note {
  color: #888;
  margin-top: 8px;
  line-height: 1.5;
}

.lp-block-download__select-wrap {
  position: relative;
}

.lp-block-download__select-wrap::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background: url('../img/lp/icon_arrow_gray_down.webp') no-repeat center / contain;
  pointer-events: none;
}

.lp-block-download__select {
  appearance: none;
  -webkit-appearance: none;
}

.lp-block-download__policy {
  text-align: center;
  margin-top: 30px;
}

.lp-block-download__policy p {
  font-size: 14px;
  margin-bottom: 15px;
}

.lp-block-download__policy a {
  color: var(--color-sup1);
  text-decoration: underline;
}

.lp-block-download__agree {
  margin: 40px 0;
  text-align: center;
}

.lp-block-download__agree-label {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.lp-block-download__agree-label::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url('../img/lp/icon_asterisk.webp') no-repeat center / contain;
}

.lp-block-download__checkbox {
  width: 20px;
  height: 20px;
}

/* Override Marketo Injected Styles */
.mktoForm .mktoFormRow:has(input[type="hidden"]) {
  display: none !important;
}

.mktoForm .mktoFormRow:has(.mktoHtmlText) {
  margin-bottom: 0 !important;
}

.mktoForm .mktoFormRow:has(.mktoHtmlText) .mktoFormCol {
  margin-bottom: 0 !important;
}

body .lp-block-download__form-box .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton,
body .lp-block-download__form-box .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton::before,
body .lp-block-download__form-box .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton::after {
  border-radius: 5px !important;
}

body .lp-block-download__form-box .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton {
  height: 60px !important;
  font-size: 24px !important;
  transition: opacity 0.3s ease !important;
}

body .lp-block-download__form-box .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton:hover {
  opacity: 0.7 !important;
}

body .lp-block-download__form-box .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton::before {
  transition: background-color 0.3s ease !important;
}

body .lp-block-download__form-box .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton::after {
  display: none !important;
  /* Remove blue sweep on hover */
}

body .lp-block-download__form-box .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton:hover::before {
  background-color: #ff8b54 !important;
  /* Change to hover orange instead of blue */
}

/* .lp-block-video
   ----------------------------------------- */
.lp-block-video {
  padding: 30px 0 70px;
}

.lp-block-video__ttl {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 40px;
}

.lp-block-video__sub {
  font-size: 16px;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 30px;
}

.lp-block-video__container {
  max-width: 560px;
  margin: 0 auto;
}

.lp-block-video__wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

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

/* .lp-footer
   ----------------------------------------- */
.lp-footer {
  margin-top: 105px;
  padding: 30px 0 20px;
  color: var(--color-white);
}

.lp-footer__top {
  margin-bottom: 30px;
}

.lp-footer__logo-img {
  width: 169px;
  height: auto;
  filter: brightness(0) invert(1);
}

.lp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-footer__links li {
  position: relative;
}

.lp-footer__links li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  opacity: 0.5;
}

.lp-footer__links a {
  color: var(--color-white);
  font-size: 12px;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.lp-footer__links a:hover {
  opacity: 1;
}

.lp-footer__copyright {
  flex-shrink: 0;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0.6;
}

/* .lp-pagetop
   ----------------------------------------- */
.lp-pagetop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 100;
  width: 44px;
  height: 44px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.lp-pagetop.lp-is-show {
  opacity: 1;
  visibility: visible;
}

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

.lp-pagetop:hover {
  transform: translateY(-5px);
}

/* 5. レスポンシブ（@media）
   ----------------------------------------- */
@media (max-width: 1300px) {
  .lp-block-hero {
    background-position: left calc(50% - 420px) top 100px;
  }
}

@media (max-width: 1024px) {
  .lp-block-hero {
    background-position: left calc(50% - 500px) top 100px;
  }
}

@media (max-width: 1080px) and (min-width: 781px) {
  .lp-block-numbers__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-block-numbers__item::after {
    display: block;
  }

  .lp-block-numbers__item:nth-child(3n)::after {
    display: none;
  }

  .lp-block-numbers__item:last-child::after {
    display: none;
  }

  .lp-block-numbers__item::before {
    display: none;
  }

  .lp-block-numbers__item:nth-child(-n+6)::before {
    display: block;
    position: absolute;
    left: 10%;
    bottom: -30px;
    width: 80%;
    height: 1px;
    background-color: #e5e5e5;
    content: "";
  }
}

@media (max-width: 1050px) and (min-width: 781px) {
  .lp-block-hero__btns {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  .lp-inner-1200 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lp-pc-only {
    display: none;
  }

  .lp-sp-only {
    display: block;
  }

  .lp-header {
    padding: 16px 0 14px;
  }

  .lp-header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .lp-header__logo {
    width: 90px;
    margin-top: 0;
    margin-bottom: 2px;
  }

  .lp-header__sp-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .lp-header__sp-btn {
    display: inline-flex;
    width: 100px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background-color: var(--color-sup5);
    color: var(--color-white) !important;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
  }

  .lp-header__sp-btn:hover {
    opacity: 0.8;
  }

  .lp-header__hamburger {
    position: relative;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .lp-header__hamburger span {
    position: absolute;
    left: 4px;
    width: 24px;
    height: 2px;
    background-color: #595757;
    transition: all 0.3s ease;
  }

  .lp-header__hamburger span:nth-child(1) {
    top: 9px;
  }

  .lp-header__hamburger span:nth-child(2) {
    top: 15px;
  }

  .lp-header__hamburger span:nth-child(3) {
    top: 21px;
  }

  .lp-header__hamburger.lp-is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .lp-header__hamburger.lp-is-active span:nth-child(2) {
    opacity: 0;
  }

  .lp-header__hamburger.lp-is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .lp-header__drawer {
    position: fixed;
    top: 62px;
    left: 0;
    z-index: 999;
    width: 100%;
    height: calc(100vh - 62px);
    padding: 30px 20px 60px;
    background-color: #ebebeb;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .lp-header__drawer.lp-is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .lp-header__drawer-inner {
    display: flex;
    flex-direction: column;
  }

  .lp-header__drawer-links {
    padding: 0;
    margin: 0 0 30px 0;
    list-style: none;
  }

  .lp-header__drawer-links li {
    border-bottom: 1px solid #dcdcdc;
  }

  .lp-header__drawer-link {
    display: block;
    padding: 15px 10px 15px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
  }

  .lp-header__drawer-btns {
    padding: 0 10px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .lp-header__drawer-btn {
    display: inline-flex;
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .lp-header__drawer-btn--download {
    background-color: #595757;
    color: var(--color-white) !important;
  }

  .lp-header__drawer-btn--contact {
    background-color: var(--color-sup5);
    color: var(--color-white) !important;
  }

  .lp-header__drawer-btn .lp-c-btn__icon {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 12px;
    height: auto;
    transform: translateY(-50%);
  }

  .lp-footer__bottom {
    flex-direction: column;
    gap: 30px;
  }

  .lp-footer__links {
    justify-content: center;
  }

  .lp-block-hero {
    padding: 40px 0 60px;
    background-position: right 5vw bottom -60vw;
    background-size: 135vw auto;
  }

  .lp-block-hero__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .lp-block-hero__breadcrumb {
    position: absolute;
    top: -25px;
    /* ヘッダー境界付近へ上に移動 */
    right: 0px;
    background-color: var(--color-white);
    padding: 6px 14px;
    border-radius: 999px;
    color: var(--color-sup4);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .lp-block-hero__content {
    order: 2;
    width: 100%;
  }

  .lp-block-hero__visual {
    order: 1;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: left;
    /* 下のテキストと左揃え */
  }

  .lp-block-hero__visual img {
    display: block;
    max-width: 230px;
    width: 100%;
    margin: 0;
    /* 左揃え */
  }

  .lp-block-hero__ttl-sub {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
  }

  .lp-block-hero__ttl-main {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.5;
  }

  .lp-block-hero__lead {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.8;
  }

  .lp-block-hero__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 全体幅に対してボタンを中央配置 */
    gap: 15px;
    width: 100%;
    margin-top: 30px;
  }

  .lp-block-hero__btns .lp-c-btn {
    width: 100%;
    max-width: 65vw;
    height: 52px;
    padding: 0 50px 0 24px;
    justify-content: flex-start;
    border-radius: 999px;
    font-size: 15px;
  }

  /* .lp-block-problem
     ----------------------------------------- */
  .lp-block-problem {
    padding: 40px 0;
  }

  .lp-block-problem__list {
    gap: 15px;
  }

  .lp-block-problem__item {
    gap: 15px;
    padding: 15px 18px;
    border-radius: 8px;
  }

  .lp-block-problem__icon {
    width: 24px;
    height: 24px;
  }

  .lp-block-problem__txt {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
  }

  /* .lp-block-solution
     ----------------------------------------- */
  .lp-block-solution {
    padding: 40px 0;
  }

  .lp-block-solution__list {
    gap: 50px;
  }

  .lp-block-solution .lp-c-card-row {
    flex-direction: column !important;
    gap: 20px;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .lp-block-solution .lp-c-card-row__content,
  .lp-block-solution .lp-c-card-row__visual {
    width: 100%;
  }

  .lp-block-solution .lp-c-card-row__tag {
    height: 28px;
    padding: 0 15px 0 12px;
    margin-bottom: 12px;
    font-size: 13px;
  }

  .lp-block-solution .lp-c-card-row__ttl {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .lp-block-solution .lp-c-card-row__txt {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
  }

  .lp-block-solution .lp-c-card-row__visual {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .lp-block-solution .lp-c-card-row__visual img {
    width: 247px;
    height: 133px;
    object-fit: cover;
    border-radius: 6px;
  }

  .lp-block-solution__footer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    padding: 35px 20px 0;
    border-top: 1px solid #9d44f4;
  }

  .lp-block-solution__footer .lp-c-btn {
    width: 100%;
    max-width: 65vw;
    height: 52px;
    padding: 0 40px 0 24px;
    justify-content: flex-start;
    border-radius: 999px;
    font-size: 15px;
  }

  /* .lp-block-feature
     ----------------------------------------- */
  .lp-block-feature {
    padding: 40px 0;
  }

  .lp-block-feature__lead {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 14px;
  }

  .lp-block-feature__body {
    padding: 30px 15px;
  }

  .lp-block-feature__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lp-block-feature__card {
    padding-bottom: 25px;
    border-radius: 12px;
  }

  .lp-block-feature__img {
    margin-bottom: 20px;
  }

  .lp-block-feature__card-ttl {
    font-size: 18px;
    margin-bottom: 12px;
    padding: 0 15px;
    line-height: 1.5;
  }

  .lp-block-feature__card-txt {
    font-size: 14px;
    line-height: 1.8;
    padding: 0 20px;
  }

  .lp-block-feature__footer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
  }

  .lp-block-feature__footer .lp-c-btn {
    width: 100%;
    max-width: 65vw;
    height: 52px;
    padding: 0 40px 0 24px;
    justify-content: flex-start;
    border-radius: 999px;
    font-size: 15px;
  }

  .lp-header__btns {
    display: none;
  }


  .lp-c-ttl-section {
    font-size: 24px;
    line-height: 1.5;
    margin: 0 0 30px;
  }

  .lp-block-solution__card,
  .lp-block-reason__card,
  .lp-c-card-row {
    flex-direction: column !important;
    gap: 30px;
    padding: 30px 20px;
  }

  .lp-block-solution__content,
  .lp-block-solution__visual,
  .lp-block-reason__content,
  .lp-block-reason__visual,
  .lp-c-card-row__content,
  .lp-c-card-row__visual {
    width: 100%;
  }

  /* .lp-block-sol-detail
     ----------------------------------------- */
  .lp-block-sol-detail {
    padding: 50px 0;
  }

  .lp-block-sol-detail__lead {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 14px;
  }

  .lp-block-sol-detail__tabs {
    margin-top: 30px;
  }

  .lp-block-sol-detail__tab-btns {
    display: flex;
    width: 100%;
    gap: 6px;
  }

  .lp-block-sol-detail__tab-btn {
    display: flex;
    height: auto;
    padding: 15px 5px;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: #e6e6e6;
    border: none;
    border-radius: 12px 12px 0 0;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    color: #666666;
    opacity: 0.5;
    transition: all 0.3s ease;
  }

  .lp-block-sol-detail__tab-btn img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .lp-block-sol-detail__tab-btn span {
    display: block;
    text-align: center;
  }

  .lp-block-sol-detail__tab-btn.lp-is-active {
    background: var(--color-white);
    box-shadow: none;
    color: var(--color-black);
    opacity: 1;
  }

  .lp-block-sol-detail__tab-contents {
    padding: 25px 20px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  }

  .lp-block-sol-detail__item {
    display: block;
  }

  .lp-block-sol-detail__item-visual {
    display: none;
  }

  .lp-block-sol-detail__item-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .lp-block-sol-detail__item-list li {
    margin-bottom: 0;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
  }

  .lp-block-sol-detail__item-list li::before {
    left: 0;
  }

  /* .lp-block-case
     ----------------------------------------- */
  .lp-block-case {
    padding: 40px 0;
    background-position: left -100px top -40px;
    background-size: 200px auto;
  }

  .lp-block-case__lead {
    margin-top: -20px;
    margin-bottom: 30px;
    font-size: 14px;
  }

  .lp-block-case__grid {
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lp-block-case__card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .lp-block-case__card-top {
    height: 120px;
    padding: 0;
  }

  .lp-block-case__card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .lp-block-case__card-top.lp-block-case__card-top--logo img {
    padding: 15px 0;
    background: #ffffff;
    object-fit: contain;
  }

  .lp-block-case__card-body {
    padding: 20px;
  }

  .lp-block-case__header {
    margin-bottom: 20px;
    gap: 10px;
  }

  .lp-block-case__tag {
    margin-left: -20px;
    padding: 7px 14px 7px 20px;
    border-radius: 0 15px 15px 0;
    font-size: 14px;
  }

  .lp-block-case__company {
    font-size: 18px;
    line-height: 1.5;
  }

  .lp-block-case__impact {
    padding: 25px 15px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .lp-block-case__impact-main {
    margin-bottom: 3px;
    font-size: 15px;
  }

  .lp-block-case__impact-num {
    font-size: 32px;
  }

  .lp-block-case__impact-sub {
    font-size: 16px;
    line-height: 2;
    margin-top: 10px;
  }

  .lp-c-btn-mini {
    display: inline-flex;
    position: relative;
    width: 100%;
    max-width: 65vw;
    height: 48px;
    padding: 0 40px 0 24px;
    align-items: center;
    justify-content: flex-start;
    background: #595757;
    border-radius: 999px;
    font-size: 15px;
  }

  .lp-c-btn-mini img {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: auto;
  }

  .lp-block-case__footer {
    display: flex;
    width: 100%;
    margin-top: 30px;
    justify-content: center;
  }

  .lp-block-case__footer .lp-c-btn--secondary {
    display: inline-flex;
    position: relative;
    width: 100%;
    max-width: 65vw;
    height: 48px;
    padding: 0 40px 0 24px;
    align-items: center;
    justify-content: flex-start;
    background: #5cb8e6;
    border: none;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(92, 184, 230, 0.3);
    font-size: 15px;
    color: var(--color-white);
  }

  .lp-block-case__footer .lp-c-btn--secondary::after {
    display: none;
  }

  .lp-block-case__footer .lp-c-btn__icon {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 12px;
    height: auto;
    transform: translateY(-50%);
  }

  /* .lp-block-reason
     ----------------------------------------- */
  .lp-block-reason {
    padding: 40px 0 0;
    border-top: 1px solid #9d44f4;
  }

  .lp-block-reason__lead {
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 14px;
    text-align: center;
  }

  .lp-block-reason__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .lp-block-reason .lp-c-card-row {
    padding: 0;
    flex-direction: column !important;
    gap: 20px;
    background: transparent;
    box-shadow: none;
  }

  .lp-block-reason .lp-c-card-row__content {
    width: 100%;
  }

  .lp-block-reason .lp-c-card-row__tag {
    height: 28px;
    padding: 0 15px 0 12px;
    margin-bottom: 15px;
    font-size: 13px;
  }

  .lp-block-reason .lp-c-card-row__ttl {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.5;
  }

  .lp-block-reason .lp-c-card-row__txt {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .lp-block-reason .lp-c-card-row__visual {
    width: 75%;
  }

  .lp-block-reason .lp-c-card-row__visual img {
    border-radius: 4px;
  }

  .lp-block-reason__footer {
    display: flex;
    width: 100%;
    margin-top: 0;
    padding: 35px 20px;
    justify-content: center;
    border-bottom: 1px solid #9d44f4;
  }

  .lp-block-reason__footer .lp-c-btn {
    width: 100%;
    max-width: 65vw;
    height: 52px;
    padding: 0 40px 0 24px;
    justify-content: flex-start;
    border-radius: 999px;
    font-size: 15px;
  }

  .lp-block-faq {
    padding: 30px 0 40px;
  }

  #faq .lp-inner-1440,
  #download .lp-inner-1440 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .lp-block-faq__list {
    gap: 15px;
  }

  .lp-block-faq__q {
    position: relative;
    padding: 18px 40px 18px 15px;
  }

  .lp-block-faq__q-num {
    margin-right: 10px;
    font-size: 16px;
  }

  .lp-block-faq__q-txt {
    font-size: 16px;
    line-height: 1.4;
  }

  .lp-block-faq__icon {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .lp-block-faq__item[open] .lp-block-faq__q::after {
    left: 15px;
    right: 15px;
  }

  .lp-block-faq__a-inner {
    padding: 12px 15px 15px;
  }

  .lp-block-faq__a-txt {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
  }

  .lp-block-download {
    padding: 40px 0;
  }

  .lp-block-download__ttl {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .lp-block-download__container {
    flex-direction: column;
    gap: 40px;
  }

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

  .lp-block-download__form-box {
    width: calc(100% + 30px);
    max-width: none;
    margin-left: -15px;
    margin-right: -15px;
    padding: 30px 20px;
    border-radius: 0;
  }

  .lp-block-download__form-row--flex {
    flex-direction: column;
    gap: 20px;
  }

  .lp-block-download__content {
    padding: 30px 20px;
  }

  .lp-block-download__features li {
    font-size: 14px;
  }

  .lp-block-download__submit {
    font-size: 20px;
    height: 56px;
  }

  body .lp-block-download__form-box .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton {
    height: 41px !important;
    font-size: 16px !important;
  }

  body .lp-block-download__form-box .mktoForm .mktoButtonRow {
    margin-top: 0 !important;
  }

  .lp-block-numbers {
    padding: 40px 0;
  }

  .lp-block-numbers__box {
    padding: 40px 20px;
  }

  .lp-block-numbers__ttl {
    font-size: 24px;
  }

  .lp-block-numbers__sub {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .lp-block-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .lp-block-numbers__item::before {
    display: none;
  }

  .lp-block-numbers__item:nth-child(2n+1)::after {
    display: block;
  }

  .lp-block-numbers__item:nth-child(2n)::after {
    display: none;
  }

  .lp-block-numbers__num-wrap {
    margin-bottom: 5px;
  }

  .lp-block-numbers__num {
    font-size: 32px;
  }

  .lp-block-numbers__unit {
    font-size: 14px;
  }

  .lp-block-numbers__txt {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
  }

  .lp-block-video {
    padding: 40px 0;
  }

  .lp-block-video__ttl {
    font-size: 24px;
  }

  .lp-block-video__sub {
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .lp-block-video__wrap {
    border-radius: 0;
  }

  /* .lp-footer
     ----------------------------------------- */
  .lp-footer {
    margin-top: 70px;
    padding: 40px 0 30px;
  }

  .lp-footer .lp-inner-1440 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .lp-footer__top {
    margin-bottom: 30px;
    text-align: left;
  }

  .lp-footer__logo {
    display: inline-block;
    width: 160px;
  }

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

  .lp-footer__bottom {
    display: block;
  }

  .lp-footer__links {
    padding: 0;
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .lp-footer__links li {
    position: relative;
    list-style: none;
  }

  .lp-footer__links li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
  }

  .lp-footer__links a {
    font-size: 11px;
    color: var(--color-white) !important;
    text-decoration: none;
  }

  .lp-footer__copyright {
    font-size: 11px;
    text-align: left;
    color: var(--color-white);
    opacity: 0.8;
  }

  /* .lp-pagetop (先頭へ戻るボタン)
     ----------------------------------------- */
  .lp-pagetop {
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 32px;
    height: 32px;
  }
}

.lp-block-download__thumb {
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.lp-block-download__thumb:hover {
  opacity: 0.7;
}

/* ==========================================================================
   6. 追加カスタムパターンセクション (template.html専用)
   ========================================================================== */

/* 共通セパレーター */
.lp-block-custom-separator {
  width: 100%;
  border: 0;
  border-top: 1px solid #E0D3FC;
  margin: 60px 0;
}

/* パターンA: タイトル＋テキスト */
.lp-block-custom-text {
  padding: 60px 0 0;
  background-color: var(--color-white);
}

.lp-block-custom-text__body {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.85;
  color: #333333;
  text-align: justify;
}

/* パターンB: タイトル＋画像/テキスト */
.lp-block-custom-split {
  padding: 0;
  background-color: var(--color-white);
}

.lp-block-custom-split__inner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.lp-block-custom-split__visual {
  flex-shrink: 0;
  width: 390px;
}

.lp-block-custom-split__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.lp-block-custom-split__content {
  flex-grow: 1;
}

.lp-block-custom-split__ttl {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  color: #1a1a1a;
  margin: 0 0 15px 0;
}

.lp-block-custom-split__sub {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

.lp-block-custom-split__txt {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
}

/* 追加パターンのレスポンシブ対応 */
@media (max-width: 780px) {
  .lp-block-custom-separator {
    margin: 40px 0;
  }

  .lp-block-custom-text {
    padding: 40px 0 0;
  }

  .lp-block-custom-text__body {
    font-size: 14px;
    line-height: 1.8;
  }

  .lp-block-custom-split__inner {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .lp-block-custom-split__visual {
    width: 100%;
    max-width: 390px;
  }

  .lp-block-custom-split__ttl {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .lp-block-custom-split__sub {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .lp-block-custom-split__txt {
    font-size: 14px;
    line-height: 1.8;
  }
}