/* ============================================================
   与信管理DX Theme — Main Stylesheet (lepont-theme デザインシステム共有)
   Design tokens → Layout → Components → Sections → Responsive
   ============================================================ */

/* ===== 1. Design Tokens ===== */
:root {
  /* Brand colors */
  --clr-orange: #ff5611;
  --clr-orange-mid: #ff7e49;
  --clr-orange-lt: #ff976c;
  --clr-cyan: #85ebfe;
  --clr-dark: #383838;
  --clr-gray-bg: #f0f0f0;
  --clr-white: #ffffff;
  --clr-border: rgba(133, 235, 254, 0.6);

  /* Typography */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Inter", sans-serif;

  /* Layout */
  --container-max: 1320px;
  --container-pad: clamp(24px, 4.17vw, 60px);

  /* Transitions */
  --ease: 0.22s ease;
}

/* ===== 2. Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-ja);
  font-size: 16px;
  color: var(--clr-dark);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}

/* ===== 3. Utility ===== */
/* PC/SP表示切り替え（900px以下をSPとする）
   表示側は元要素自身のdisplay値（flex/grid等）を壊さないよう、
   非表示にする側だけdisplay:noneを当てる */
@media (max-width: 900px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 901px) {
  .sp {
    display: none !important;
  }
}

.lp-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.lp-section {
  padding-block: clamp(60px, 20vw, 100px);
}

/* Section label (symbol + text) */
.lp-section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.lp-section-label__symbol img {
  width: 37px;
  height: 49px;
  object-fit: contain;
}
.lp-section-label__text {
  font-family: var(--font-en);
  font-size: clamp(28px, 2.6vw, 37.5px);
  font-weight: 800;
  color: var(--clr-dark);
  white-space: nowrap;
}

.lp-section__heading {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 5px;
  font-size: clamp(12px, 4vw, 16px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    opacity var(--ease),
    transform var(--ease),
    background-color var(--ease),
    border-color var(--ease);
  border: none;
}
@media (hover: hover) and (pointer: fine) {
  .lp-btn:hover {
    border-radius: 5px;
    background-color: #bdbdbd;
  }
}
.lp-btn--primary {
  background: var(--clr-orange);
  color: var(--clr-white);
}
.lp-btn--secondary {
  background: var(--clr-cyan);
  color: var(--clr-dark);
}
.lp-btn--sm {
  font-size: 13px;
  padding: 0 16px;
  height: 32px;
}
.lp-btn--outline {
  background: #fff;
  color: var(--clr-dark);
  border: 1px solid #bdbdbd;
}
@media (hover: hover) and (pointer: fine) {
  .lp-btn--outline:hover {
    background-color: #bdbdbd;
    opacity: 1;
  }
}
.lp-btn--dark {
  background: var(--clr-dark);
  color: #fff;
}

/* ===== 4. Header ===== */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(56, 56, 56, 0.08);
  transition: box-shadow var(--ease);
}
.lp-header.is-scrolled {
  border-bottom: 1px solid var(--clr-orange);
}
.lp-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.lp-header__logo img {
  width: 120px;
  height: auto;
}
.lp-header__nav {
  margin-left: auto;
}
.lp-nav__list {
  display: flex;
  gap: 28px;
}
.lp-nav__list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-dark);
  transition: color var(--ease);
}
.lp-header__cta {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Hamburger */
.lp-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.lp-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-orange);
  border-radius: 2px;
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.lp-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.lp-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.lp-mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: var(--clr-white);
  z-index: 99;
  padding: 32px var(--container-pad);
  overflow-y: auto;
  transform: translateY(-8px);
  font-weight: bold;
  opacity: 0;
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.lp-mobile-menu.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.lp-mobile-menu nav {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.lp-mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.lp-mobile-menu__list li {
  border-bottom: 1px solid #ff56114d;
}
.lp-mobile-menu__list a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
}
.lp-mobile-menu__ext {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
  padding-top: 32px;
}
.lp-mobile-menu__ext-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-dark);
}
.lp-mobile-menu__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}
.lp-mobile-menu__buttons .lp-btn {
  width: auto;
  font-size: 13px;
  font-weight: 700;
}

/* ===== 5. Hero ===== */
.lp-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 810px;
  overflow: hidden;
  /* margin-top: 64px;  */
}
.lp-hero__bg {
  position: absolute;
  inset: 0;
}
.lp-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.lp-hero__bg-sp {
  display: none;
}
.lp-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: min(730px, 70%);
  height: 100%;
  background: linear-gradient(to right, #fff 41.827%, rgba(255, 255, 255, 0));
  z-index: 1;
  pointer-events: none;
}
.lp-hero__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(var(--container-pad) + 100px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 500px;
}
.lp-hero__catchcopy {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 800;
  color: var(--clr-dark);
  line-height: 1.875;
}
.lp-hero__logo {
  width: clamp(200px, 35vw, 390px);
  height: auto;
}
.lp-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== 6. Lepontとは ===== */
.lp-about {
  padding-top: clamp(48px, 5.5vw, 80px);
}
.lp-about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 16px;
}
.lp-about__visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.lp-about__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.lp-about__visual-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.8));
}
.lp-about__visual-logo img {
  width: clamp(140px, 16.7vw, 240px);
}
.lp-about__text p {
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.96;
  color: var(--clr-dark);
}
.lp-about__more {
  margin-top: 24px;
  width: 100%;
}

/* 動画サムネイル（YouTube外部リンク） */
.lp-about__video {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f3f3;
  aspect-ratio: 447.9 / 291.5;
}
.lp-about__video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-about__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 8vw, 102px);
  height: auto;
  z-index: 2;
  transition: transform var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-about__video:hover .lp-about__video-play {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

/* ===== 7. 課題 ===== */
.lp-problems {
  padding: 0;
}
.lp-problems__bg {
  background: var(--clr-gray-bg);
  padding-block: clamp(48px, 5.5vw, 80px);
}
.lp-problems__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}
.lp-problems__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-problem-card {
  position: relative;
  background: var(--clr-white);
  /* border: 1px solid var(--clr-cyan); */
  border-radius: 8px;
  padding: 20px 20px 35px 22px;
  min-height: 115px;
}
.lp-problem-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.lp-problem-card__body {
  font-size: 13px;
  line-height: 1.6;
}
.lp-problem-card__icon {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 20px;
  color: #f5a623;
}
.lp-problems__image {
  height: 100%;
}
.lp-problems__image img {
  width: clamp(330px, 34.72vw, 500px);
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: bottom;
}

/* ===== 8. 特徴 ===== */
.lp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.lp-feature-card {
  display: flex;
  flex-direction: column;
}
.lp-feature-card__header {
  padding: 24px 0;
}
.lp-feature-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 20px;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 10px;
  font-family: var(--font-en);
  margin-bottom: 12px;
}
.lp-feature-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.lp-feature-card__body {
  font-size: 17px;
  line-height: 1.6;
}
.lp-feature-card__image {
  margin-top: auto;
}
.lp-feature-card__image img {
  width: 100%;
  height: 242px;
  object-fit: cover;
}
.lp-features__cta-text {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--clr-orange);
}

/* ===== 9. 活用方法 ===== */
.lp-usage {
  padding: 0;
}

.lp-usage__tabs-bg {
  background: var(--clr-gray-bg);
  padding-block: clamp(48px, 5.5vw, 80px);
}

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

.lp-usage__tab {
  background: var(--clr-white);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lp-usage__tab-header {
  background: #1acaeb;
  padding: 10px 24px;
  text-align: center;
}

.lp-usage__tab-label {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.02em;
}

.lp-usage__tab-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex: 1;
}

.lp-usage__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.lp-usage__feature-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-usage__feature-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-usage__feature-label strong {
  font-size: 18px;
  font-weight: 700;
}
.lp-usage__feature-item p {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 48px;
}

.lp-usage__tab-image {
  margin-top: 24px;
}
.lp-usage__tab-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Merits */
.lp-usage__merits-bg {
  background: var(--clr-orange);
  padding-block: clamp(40px, 4.4vw, 60px);
}

.lp-usage__merit-heading {
  font-size: clamp(18px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 20px;
}

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

.lp-merit-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.lp-merit-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lp-merit-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1;
  margin-bottom: 6px;
  white-space: nowrap;
}
.lp-merit-card__body {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.lp-merit-card__detail {
  font-size: 11px;
  color: #999;
  line-height: 1.7;
  margin-top: auto;
}
.lp-merit-card__image img {
  width: 120px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.lp-usage__merits-cta {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--clr-white);
  margin-top: 32px;
}

/* ===== 10. 導入プラン ===== */
.lp-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.lp-plan-card {
  position: relative;
  background: var(--clr-white);
  border: 1px solid var(--plan-color, var(--clr-orange));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 4px #ff561133;
}

.lp-plan-card--recommended {
  z-index: 1;
}
.lp-plan-card__badge {
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--clr-white);
  color: var(--clr-orange);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0 0 6px 6px;
  border: 1px solid var(--clr-white);
}
.lp-plan-card__header {
  background: var(--plan-color, var(--clr-orange));
  padding: 18px 22px 20px;
}
.lp-plan-card__name {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 14px;
}
.lp-plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--clr-white);
}
.lp-plan-card__price strong {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: -0.02em;
}
.lp-plan-card__price-unit {
  font-size: 16px;
  font-weight: 700;
}
.lp-plan-card__price-unit small {
  font-size: 13px;
  font-weight: 400;
}
.lp-plan-card__features {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-plan-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.lp-check {
  color: var(--clr-orange);
  font-weight: 700;
}

/* 導入フロー */
.lp-plans__flow-heading {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  margin-bottom: 20px;
}
.lp-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.lp-flow__step {
  flex: 1;
  min-width: 200px;
  background: var(--clr-white);
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  min-height: 170px;
}
.lp-flow__step-img img {
  width: 33px;
  /* height: 160px; */
  /* object-fit: cover; */
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.lp-flow__num,
.lp-flow__title,
.lp-flow__body {
  display: block;
  padding-inline: 18px;
}
.lp-flow__num {
  margin-top: 16px;
  margin-bottom: 8px;
}
.lp-flow__body {
  padding-bottom: 18px;
}
.lp-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 24px;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 12px;
  font-family: var(--font-en);
  margin-bottom: 8px;
  margin-left: 15px;
}
.lp-flow__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.lp-flow__body {
  font-size: 13px;
  line-height: 1.6;
}
.lp-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  padding: 0 4px;
}
.lp-flow__arrow img {
  width: 24px;
  height: 24px;
}

/* CTA バナー */
.lp-plans__cta {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 218px;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
}
.lp-plans__cta-content {
  position: relative;
  margin-left: auto;
  width: 56%;
  max-width: 600px;
  min-height: 218px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffcab5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  text-align: center;
  border-radius: 0 8px 8px 0;
}
.lp-plans__cta-logo {
  margin-bottom: 12px;
}
.lp-plans__cta-heading {
  font-size: clamp(16px, 1.52vw, 22px);
  font-weight: 700;
  margin-bottom: 6px;
}
.lp-plans__cta-sub {
  font-size: 14px;
  margin-bottom: 16px;
}
.lp-plans__cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== 11. Edison Platform ===== */
.lp-ep {
  padding: 0;
}
.lp-ep__bg {
  background: #ffeddf;
  position: relative;
  padding-block: clamp(40px, 4.4vw, 60px);
  overflow: hidden;
}
.lp-ep__back-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
  user-select: none;
  display: block;
}
.lp-ep__layout {
  display: grid;
  grid-template-columns: clamp(220px, 22vw, 300px) 1fr;
  gap: clamp(40px, 5.5vw, 80px);
  align-items: stretch;
  position: relative;
}

/* 左パネル: ロゴ上端・リンク+説明下端 */
.lp-ep__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
/* 装飾シェイプ (Figma 319:346 — #ffd8ba マスク) */
.lp-ep__left-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lp-ep__logo {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.lp-ep__logo img {
  width: clamp(160px, 21vw, 306px);
  max-width: 100%;
  height: auto;
}
.lp-ep__left-bottom {
  position: relative;
  z-index: 1;
}
.lp-ep__ep-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-orange);
  margin-bottom: 8px;
}
.lp-ep__link-icon {
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
}
.lp-ep__platform-label {
  font-weight: 600;
  color: #ff5611;
  margin-bottom: 4px;
  line-height: 1.3;
}
.lp-ep__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--clr-dark);
}

/* 右パネル: サービス一覧 */
.lp-ep__services {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.lp-ep__service {
  display: grid;
  grid-template-columns: clamp(140px, 16vw, 210px) 1fr;
  gap: 20px;
  align-items: center;
}
.lp-ep__service-logo img {
  height: auto;
  width: auto;
  max-width: 100%;
}
.lp-ep__service-logo--mirarobo img,
.lp-ep__service-logo--yoshin img {
  position: relative;
  top: 10px;
}
.lp-ep__service-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
@media (hover: hover) and (pointer: fine) {
  a.lp-ep__service-name:hover {
    opacity: 0.8;
  }
}
.lp-ep__service-info p {
  font-size: 14px;
  color: var(--clr-dark);
  line-height: 1.6;
}

/* ===== 12. 会社概要 ===== */
.lp-company__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}
.lp-company__table {
  width: 100%;
  border-collapse: collapse;
}
.lp-company__table tr {
  border-bottom: 1px solid #e0e0e0;
}
.lp-company__table th {
  text-align: left;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  width: 120px;
  padding: 14px 0;
  vertical-align: top;
}
.lp-company__table td {
  font-size: 15px;
  padding: 14px 0;
}
.lp-company__table a {
  color: var(--clr-orange);
  text-decoration: underline;
}
.lp-company__offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-office-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.lp-office-card__label {
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* ===== 13. 教育機関 ===== */
.lp-education__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lp-education__text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.lp-education__image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.lp-education__btn {
  margin-top: 8px;
}

/* ===== 14. Footer ===== */
.lp-footer {
  background: #fff;
  border-top: 1px solid var(--clr-orange);
}
.lp-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-block: 48px;
}
.lp-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.lp-footer__top-right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
}
.lp-footer__nav {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
}
.lp-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-footer__nav a {
  font-size: 14px;
  font-weight: 700;
  color: #383838;
  white-space: nowrap;
  transition: opacity var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-footer__nav a:hover {
    opacity: 0.65;
  }
}
.lp-footer__ext {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.lp-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(56, 56, 56, 0.12);
  padding-top: 24px;
}
.lp-footer__cert-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.lp-footer__cert-logos img {
  width: auto;
  height: auto;
}
.lp-footer__bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-footer__copy {
  font-size: 11px;
  font-weight: 500;
  color: #383838;
}
.lp-footer__cert {
  font-size: 11px;
  white-space: nowrap;
}
.lp-footer__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.lp-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 141px;
  padding-inline: 16px;
  background: #383838;
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-footer__cta:hover {
    opacity: 0.8;
  }
}

/* ===== 15. Contact ===== */

.lp-contact__crosslink {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 24px;
}
.lp-contact__crosslink a {
  color: var(--clr-orange);
  text-decoration: underline;
}

/* ── 二段組レイアウト ── */
.lp-contact__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 5.5vw, 80px);
  align-items: start;
}
.lp-contact__sidebar {
  position: sticky;
  top: 84px;
}
.lp-contact__desc {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 2.2;
  color: var(--clr-dark);
  margin-top: 24px;
}
.lp-contact__main {
  min-width: 0;
}

/* ── CF7 ラッパー ── */
.lp-contact__main .wpcf7 {
  margin: 0;
}
.lp-contact__main .wpcf7-form-control-wrap {
  display: block;
}

/* ── フォーム行 ── */
.lp-cf7-rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.lp-cf7-row {
  display: grid;
  grid-template-columns: 254px 1fr;
  align-items: start;
}

/* ── ラベル ── */
.lp-cf7-label {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  flex-wrap: wrap;
  line-height: 1.5;
}
.lp-cf7-row--radio .lp-cf7-label,
.lp-cf7-row--check .lp-cf7-label {
  padding-top: 2px;
}
.lp-cf7-row--textarea .lp-cf7-label {
  padding-top: 17px;
}
.lp-cf7-row--privacy .lp-cf7-label {
  padding-top: 0;
}
.lp-cf7-row--terms.is-hidden {
  display: none;
}

/* ── バッジ ── */
.lp-cf7-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 30px;
  margin-left: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
}
.lp-cf7-badge--req {
  background: var(--clr-orange);
}
.lp-cf7-badge--opt {
  background: #bdbdbd;
}

/* ── 添付ファイル ── */
.lp-cf7-file-note {
  font-size: 13px;
  color: #757575;
  margin: 0 0 12px;
  line-height: 1.6;
}
.lp-cf7-file-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-cf7-file-item {
  border: 1px solid #bababa;
  border-radius: 5px;
  padding: 10px 16px;
}
.lp-cf7-file-item input[type="file"] {
  display: block;
  width: 100%;
  font-size: 14px;
}
.lp-cf7-file-hint {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: #9e9e9e;
}

/* ── テキスト入力 ── */
.lp-cf7-input {
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #bababa;
  border-radius: 5px;
  padding: 14px 24px;
  font-size: 16px;
  font-family: var(--font-ja);
  color: #171717;
  background: #fff;
  transition:
    border-color var(--ease),
    box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.lp-cf7-input:focus {
  outline: none;
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(255, 86, 17, 0.12);
}
.lp-cf7-input.wpcf7-not-valid {
  border-color: #e53e3e;
}

/* ── テキストエリア ── */
.lp-cf7-textarea {
  display: block;
  width: 100%;
  min-height: 200px;
  border: 1px solid #bababa;
  border-radius: 5px;
  padding: 16px 24px;
  font-size: 16px;
  font-family: var(--font-ja);
  color: #171717;
  background: #fff;
  resize: vertical;
  transition:
    border-color var(--ease),
    box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.lp-cf7-textarea:focus {
  outline: none;
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(255, 86, 17, 0.12);
}
.lp-cf7-textarea.wpcf7-not-valid {
  border-color: #e53e3e;
}

/* ── 二列入力（名前・フリガナ） ── */
.lp-cf7-field--half p {
  display: flex;
  gap: 10px;
}

/* ── ラジオ・チェックボックス カードスタイル ── */
.lp-contact__main .wpcf7-radio,
.lp-contact__main .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-contact__main .wpcf7-radio .wpcf7-list-item,
.lp-contact__main .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}

/* カード本体 */
.lp-contact__main .wpcf7-radio .wpcf7-list-item label,
.lp-contact__main .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
  line-height: 1.4;
  transition:
    border-color 0.15s,
    background 0.15s;
}
@media (hover: hover) and (pointer: fine) {
  .lp-contact__main .wpcf7-radio .wpcf7-list-item label:hover,
  .lp-contact__main .wpcf7-checkbox .wpcf7-list-item label:hover {
    border-color: #ff5611;
  }
}

/* ネイティブ input を非表示 */
.lp-contact__main .wpcf7-radio .wpcf7-list-item input[type="radio"],
.lp-contact__main .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] {
  display: none;
}

/* カスタム インジケーター (::before で生成) */
.lp-contact__main .wpcf7-radio .wpcf7-list-item label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #bfbdb8;
  background: #fff;
  flex-shrink: 0;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.lp-contact__main .wpcf7-checkbox .wpcf7-list-item label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1.5px solid #bfbdb8;
  background: #fff;
  flex-shrink: 0;
  transition:
    border-color 0.15s,
    background 0.15s;
}

/* 選択済み: カード */
.lp-contact__main .wpcf7-radio .wpcf7-list-item:has(input:checked) label,
.lp-contact__main .wpcf7-checkbox .wpcf7-list-item:has(input:checked) label {
  border-color: #ff5611;
}
/* 選択済み: テキスト */
.lp-contact__main
  .wpcf7-radio
  .wpcf7-list-item:has(input:checked)
  .wpcf7-list-item-label,
.lp-contact__main
  .wpcf7-checkbox
  .wpcf7-list-item:has(input:checked)
  .wpcf7-list-item-label {
  color: #ff5611;
}
/* 選択済み: ラジオ — オレンジ塗り + 中心白ドット */
.lp-contact__main
  .wpcf7-radio
  .wpcf7-list-item:has(input:checked)
  label::before {
  border-color: #ff5611;
  background: radial-gradient(circle, #ff5611 6px, #fff 3.5px);
}
/* 選択済み: チェックボックス — オレンジ塗り + 白チェックマーク */
.lp-contact__main
  .wpcf7-checkbox
  .wpcf7-list-item:has(input:checked)
  label::before {
  border-color: #ff5611;
  background: #ff5611;
}

/* ── プライバシーテキスト ── */
.lp-cf7-privacy-text {
  line-height: 1.9;
  margin-bottom: 12px;
}
.lp-cf7-privacy-text a {
  text-decoration: underline;
}
.lp-contact__main .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.lp-contact__main .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  cursor: pointer;
}
.lp-contact__main .wpcf7-acceptance input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  border: 1px solid #bdbdbd;
  border-radius: 0;
  background: #fff;
}
.lp-contact__main .wpcf7-acceptance input[type="checkbox"]:checked {
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='1,6.5 4.5,10 11,2.5' stroke='%23ff5611' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/16px no-repeat;
}
.lp-contact__main .wpcf7-acceptance .wpcf7-list-item-label {
  display: inline;
}

/* ── CF7 バリデーションエラー ── */
.lp-contact__main .wpcf7-not-valid-tip {
  display: block;
  font-size: 13px;
  color: #e53e3e;
  margin-top: 4px;
}

/* ── CF7 レスポンスメッセージ ── */
.lp-contact__main .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 20px;
  border-radius: 5px;
  font-size: 14px;
  border: none !important;
}
.lp-contact__main .wpcf7-form.sent .wpcf7-response-output {
  background: #f0fff4;
  border: 1px solid #9ae6b4 !important;
  color: #276749;
}
.lp-contact__main .wpcf7-form.failed .wpcf7-response-output,
.lp-contact__main .wpcf7-form.invalid .wpcf7-response-output,
.lp-contact__main .wpcf7-form.spam .wpcf7-response-output {
  background: #fff5f5;
  border: 1px solid #fed7d7 !important;
  color: #c53030;
}
.lp-contact__main .wpcf7-spinner {
  margin-left: 12px;
  vertical-align: middle;
}

/* ── reCAPTCHA 注記 ── */
.lp-recaptcha-notice {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: #8a8a8a;
}
.lp-recaptcha-notice a {
  color: #8a8a8a;
  text-decoration: underline;
}
.lp-recaptcha-notice a:hover {
  color: #555;
}

/* ── 送信ボタン ── */
.lp-cf7-submit-wrap {
  padding-top: 8px;
}
.lp-contact__main .wpcf7-submit {
  display: block;
  width: 100%;
  height: 48px;
  background: var(--clr-orange);
  color: var(--clr-white);
  border: none;
  border-radius: 5px;
  font-size: clamp(16px, 1.35vw, 19.5px);
  font-weight: 700;
  font-family: var(--font-ja);
  cursor: pointer;
  transition: background-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
@media (hover: hover) and (pointer: fine) {
  .lp-contact__main .wpcf7-submit:hover {
    background-color: #bdbdbd;
  }
}

/* ===== 15b. Contact 確認 / 完了 ===== */
.lp-contact-confirm__main {
  max-width: 700px;
  margin-inline: auto;
}
.lp-contact-thanks__body {
  max-width: 700px;
}

.lp-confirm-rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 32px 0 40px;
}
.lp-confirm-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-confirm-label {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  line-height: 1.8;
}
.lp-confirm-value {
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  line-height: 1.8;
}
.lp-confirm-value--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-confirm-value--pre {
  white-space: pre-wrap;
}

.lp-confirm-submit-wrap .wpcf7-submit,
.lp-confirm-submit-wrap button,
.lp-confirm-submit-wrap input[type="submit"] {
  display: block;
  width: 100%;
  height: 48px;
  background: var(--clr-orange);
  color: var(--clr-white);
  border: none;
  border-radius: 5px;
  font-size: clamp(16px, 1.35vw, 19.5px);
  font-weight: 700;
  font-family: var(--font-ja);
  cursor: pointer;
  transition:
    opacity var(--ease),
    transform var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-confirm-submit-wrap .wpcf7-submit:hover,
  .lp-confirm-submit-wrap button:hover,
  .lp-confirm-submit-wrap input[type="submit"]:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }
}

.lp-contact-thanks__desc {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 2.2;
  color: var(--clr-dark);
  margin: 24px 0 32px;
}
.lp-btn--block {
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: var(--clr-orange);
  color: var(--clr-white);
  border: none;
  border-radius: 5px;
  font-size: clamp(16px, 1.35vw, 19.5px);
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-btn--block:hover {
    background-color: #bdbdbd;
  }
}

/* ===== 15c. 導入プラン（3プラン + システム要件注記） ===== */

/* Premiumプランの注記行（チェックマークなし・小さいグレー文字）
   .lp-plan-card__features li の共通スタイル（display:flex; font-size:12px 等）を
   このセクション専用に上書きするための、より詳細度の高いセレクタ */
.lp-plan-card__features li.lp-plan-card__features-note {
  display: block;
  gap: 0;
  font-size: 11px;
  line-height: 21px;
  color: #999;
  font-weight: 500;
}

.lp-plan-card__note-link {
  color: var(--clr-orange);
  font-weight: 700;
  text-decoration: underline;
}

/* カードグリッド下部：システム要件などの注記テキスト */
.lp-plans__system-notes {
  margin-top: -28px;
}

.lp-plans__system-notes p {
  font-size: 11px;
  line-height: 21px;
  color: #999;
  font-weight: 500;
}

.lp-plans__system-notes p + p {
  margin-top: 0;
}

/* ===== 15d. サポート体制 ===== */

.lp-support__panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 260px;
}

.lp-support__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 8px;
  overflow: hidden;
}

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

/* 写真の左側を白へフェードさせ、上に重なるテキストを読みやすくする */
.lp-support__gradient {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(
    to right,
    var(--clr-white) 2%,
    var(--clr-white) 53.19%,
    rgba(255, 255, 255, 0) 96.226%
  );
}

.lp-support__content {
  position: relative;
  z-index: 1;
  max-width: 554px;
  width: 100%;
}

.lp-support__list {
  display: flex;
  flex-direction: column;
}

.lp-support__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 23px 40px;
  border-bottom: 1px solid #bdbdbd;
}

.lp-support__item:last-child {
  border-bottom: none;
}

.lp-support__icon {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.lp-support__icon img {
  width: 17px;
  height: 27px;
}

.lp-support__title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--clr-dark);
  white-space: nowrap;
}

.lp-support__logo {
  margin-left: auto;
  width: 69px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.lp-support__note {
  margin-left: auto;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  color: #bdbdbd;
  white-space: nowrap;
}

.lp-support__cta {
  display: flex;
  width: calc(100% - 80px);
  margin: 40px 40px 0;
  padding: 18px 30px;
  font-size: 20px;
  border-radius: 7px;
}

/* ===== 15e. よくあるご質問 ===== */
/* 質問行: bg白 / border 1px #bdbdbd / radius 4px / 高さ60px / Inter Bold 22px / gap 15px。
   開閉アイコン・展開時の回答デザインはFigma側に定義が無いため、独自にプラスアイコン＋
   grid-template-rows アニメーションで実装（--ease を使用）。 */

.lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lp-faq__item {
  background-color: var(--clr-white);
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--ease);
}

.lp-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 60px;
  padding: 10px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--clr-dark);
  text-align: left;
}

.lp-faq__question-text {
  flex: 1 1 auto;
}

/* 開閉アイコン（プラス/マイナス）。Figmaにアイコン定義が無いため独自実装 */
.lp-faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}
.lp-faq__icon::before,
.lp-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--clr-orange);
  transform: translate(-50%, -50%);
  transition: transform var(--ease);
}
.lp-faq__icon::before {
  width: 100%;
  height: 2px;
}
.lp-faq__icon::after {
  width: 2px;
  height: 100%;
}
.lp-faq__question[aria-expanded="true"] .lp-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* 回答パネル: grid-template-rows で高さアニメーション（hiddenは使わずCSSで開閉） */
.lp-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--ease);
}
.lp-faq__answer > .lp-faq__answer-text {
  overflow: hidden;
}
.lp-faq__question[aria-expanded="true"] + .lp-faq__answer {
  grid-template-rows: 1fr;
}

.lp-faq__answer-text {
  padding: 0 24px;
  color: var(--clr-dark);
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.8;
}
.lp-faq__question[aria-expanded="true"] + .lp-faq__answer .lp-faq__answer-text {
  padding: 0 24px 20px;
}

/* ===== 15f. ご導入までの流れ ===== */
.lp-flow2 {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.lp-flow2__step {
  flex: 1;
  min-width: 200px;
  background: var(--clr-white);
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  min-height: 170px;
  position: relative;
}
.lp-flow2__step-img img {
  width: 33px;
  height: auto;
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.lp-flow2__num,
.lp-flow2__title,
.lp-flow2__body {
  display: block;
  padding-inline: 18px;
}
.lp-flow2__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 24px;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 12px;
  font-family: var(--font-en);
  margin-top: 16px;
  margin-bottom: 8px;
  margin-left: 15px;
}
.lp-flow2__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.lp-flow2__body {
  font-size: 13px;
  line-height: 1.6;
  padding-bottom: 18px;
}
.lp-flow2__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  padding: 0 4px;
}
.lp-flow2__arrow img {
  width: 24px;
  height: 24px;
}

/* ===== 15g. お知らせ ===== */
.lp-news__panel {
  max-width: 900px;
  margin-inline: auto;
  padding: 33px 50px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
}

.lp-news__list {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 20px;
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd transparent;
}

/* Chrome / Edge / Safari 用のスクロールバー（Figmaの丸みのあるグレーのつまみを再現） */
.lp-news__list::-webkit-scrollbar {
  width: 6px;
}
.lp-news__list::-webkit-scrollbar-track {
  background: transparent;
}
.lp-news__list::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 10px;
}

.lp-news__item {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #bdbdbd;
  transition: opacity var(--ease);
}
.lp-news__item:first-child {
  padding-top: 0;
}
.lp-news__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (hover: hover) and (pointer: fine) {
  a.lp-news__item:hover {
    opacity: 0.7;
  }
}

.lp-news__date {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-dark);
  margin-bottom: 8px;
}

.lp-news__title {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--clr-dark);
}

.lp-news__more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.lp-news__empty {
  padding: 40px 0;
  text-align: center;
  font-size: 15px;
  color: var(--clr-dark);
}

/* ===== 17. サブページ共通(パンくず / ページタイトル / EPチャットウィジェット) ===== */
.lp-page-title {
  padding-top: 30px;
}
.lp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 31px;
}
.lp-breadcrumb__home {
  display: block;
  line-height: 0;
}
.lp-breadcrumb__sep {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-breadcrumb__sep img {
  transform: rotate(180deg);
}
.lp-breadcrumb__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-dark);
}
a.lp-breadcrumb__label,
a.lp-breadcrumb__home {
  transition: opacity var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  a.lp-breadcrumb__label:hover,
  a.lp-breadcrumb__home:hover {
    opacity: 0.6;
  }
}

/* 大バナー(H1)を持つページ(ミラロボとは/ミラロボマネージャー)用の共通枠 */
.lp-page-banner {
  position: relative;
  height: 370px;
  overflow: hidden;
}
.lp-page-banner__bg {
  position: absolute;
  inset: 0;
}
.lp-page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-page-banner__title {
  position: absolute;
  left: var(--container-pad);
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 700;
  color: var(--clr-dark);
}

/* ===== 18. カスタマーサポート ハブページ ===== */
.lp-support-hub__group {
  margin-bottom: 40px;
}
.lp-support-hub__group:last-child {
  margin-bottom: 0;
}
.lp-support-hub__heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.lp-support-hub__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-support-hub__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 65px;
  padding: 16px 20px;
  background: var(--clr-white);
  border: 1px solid var(--clr-orange);
  border-radius: 8px;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--clr-dark);
  text-align: center;
  transition: background-color var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-support-hub__btn:hover {
    background-color: #fff3ee;
  }
}
.lp-support-hub__btn-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.lp-support-hub__btn--contact {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;
}
.lp-support-hub__btn--contact .lp-support-hub__btn-icon {
  filter: brightness(0) invert(1);
}
@media (hover: hover) and (pointer: fine) {
  .lp-support-hub__btn--contact:hover {
    background-color: #e14e0a;
  }
}
@media (max-width: 900px) {
  .lp-support-hub__buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .lp-support-hub__buttons {
    grid-template-columns: 1fr;
  }
}

/* ===== 19. 規約・ポリシー系ドキュメントページ ===== */
.lp-doc__body {
  max-width: 728px;
  margin-inline: auto;
}
.lp-doc__intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--clr-dark);
  margin-bottom: 32px;
}
.lp-doc__item {
  margin-bottom: 32px;
}
.lp-doc__item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-dark);
}
.lp-doc__item-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--clr-dark);
}
.lp-doc__outro {
  margin-top: 40px;
  font-size: 14px;
  color: var(--clr-dark);
  text-align: right;
}
.lp-doc__section-heading {
  font-size: 26px;
  font-weight: 700;
  margin: 48px 0 24px;
}
.lp-doc__section-heading:first-child {
  margin-top: 0;
}

/* ===== 20. アップデート情報(アコーディオン) ===== */
.lp-update__list {
  max-width: 728px;
  margin-inline: auto;
}
.lp-update__item {
  border: 1px solid #bdbdbd;
  margin-bottom: -1px;
}
.lp-update__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 32px;
  background: var(--clr-dark);
  border: none;
  border-bottom: 1px solid var(--clr-white);
  cursor: pointer;
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-white);
  text-align: left;
}
.lp-update__answer {
  display: grid;
  grid-template-rows: 0fr;
  background: var(--clr-white);
  transition: grid-template-rows var(--ease);
}
.lp-update__toggle[aria-expanded="true"] + .lp-update__answer {
  grid-template-rows: 1fr;
}
.lp-update__answer-inner {
  overflow: hidden;
}
.lp-update__answer-body {
  padding: 20px 32px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--clr-dark);
}
.lp-update__answer-body ul {
  list-style: disc;
  padding-left: 27px;
}
.lp-update__empty {
  text-align: center;
  color: #999;
  padding: 48px 0;
}

/* ===== 21. 操作体験 ===== */
.lp-experience__lead {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--clr-dark);
  margin-bottom: 40px;
}
.lp-experience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.lp-experience-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  border-radius: 8px;
  background: var(--clr-orange-lt);
}
.lp-experience-card:nth-child(2) {
  background: var(--clr-orange-mid);
}
.lp-experience-card:nth-child(3) {
  background: #ff6c30;
}
.lp-experience-card:nth-child(4) {
  background: var(--clr-orange);
}
.lp-experience-card__body {
  color: var(--clr-white);
}
.lp-experience-card__level {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.7;
}
.lp-experience-card__desc {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.7;
}
.lp-experience-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 71px;
  padding: 13px 20px;
  border-radius: 8px;
  background: var(--clr-white);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 800;
  color: var(--clr-dark);
  text-align: center;
  transition: opacity var(--ease), transform var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-experience-card__btn:hover {
    opacity: 0.7;
  }
}

/* ===== 22. シナリオ作成 ===== */
.lp-scenario-demo,
.lp-scenario-sample {
  padding-block: clamp(32px, 4vw, 56px);
}
.lp-scenario-video__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
  margin-top: 24px;
}
.lp-scenario-video {
  display: flex;
  flex-direction: column;
}
.lp-scenario-video__thumb {
  position: relative;
  display: block;
  aspect-ratio: 260 / 169.23;
  border-radius: 6px;
  overflow: hidden;
  background: #ffd8ba;
}
.lp-scenario-video__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-scenario-video__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}
.lp-scenario-video__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(44px, 5.7vw, 60px);
  height: clamp(44px, 5.7vw, 60px);
  z-index: 1;
  transition: transform var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-scenario-video__thumb:hover .lp-scenario-video__play {
    transform: translate(-50%, -50%) scale(1.08);
  }
}
.lp-scenario-video__title {
  margin-top: 16px;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--clr-dark);
}
.lp-scenario-video__desc {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--clr-dark);
}
.lp-scenario-video__note {
  color: #999;
}

/* ===== 23. お知らせ一覧・詳細 ===== */
.lp-news-list-page {
  padding-top: clamp(20px, 4vw, 40px);
}
.lp-news-list {
  max-width: 720px;
  margin-inline: auto;
}
.lp-news-list__empty {
  padding: 60px 0;
  text-align: center;
  font-size: 15px;
  color: var(--clr-dark);
}
.lp-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 6vw, 56px);
}
.lp-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 4vw, 50px);
  list-style: none;
}
.lp-pagination .page-numbers li {
  display: flex;
  align-items: center;
}
.lp-pagination a.page-numbers,
.lp-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 19px;
  font-family: var(--font-en);
  font-size: 19px;
  font-weight: 500;
  line-height: 27px;
  color: var(--clr-dark);
}
.lp-pagination a.page-numbers {
  transition: opacity var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-pagination a.page-numbers:hover {
    opacity: 0.6;
  }
}
.lp-pagination span.page-numbers.current {
  color: var(--clr-orange);
  font-weight: 700;
}
.lp-pagination .page-numbers.dots {
  color: var(--clr-dark);
}
.lp-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9px;
  height: 16px;
}
.lp-pagination__arrow img {
  width: 100%;
  height: 100%;
  display: block;
}
.lp-pagination__arrow--next img {
  transform: rotate(180deg);
}
.lp-pagination a.page-numbers.prev,
.lp-pagination a.page-numbers.next,
.lp-pagination span.page-numbers.prev,
.lp-pagination span.page-numbers.next {
  min-width: auto;
}
.lp-news-detail__date {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-dark);
  margin-bottom: 24px;
}
.lp-news-detail__content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--clr-dark);
}
.lp-news-detail__content p {
  margin-bottom: 1.6em;
}
.lp-news-detail__content p:last-child {
  margin-bottom: 0;
}
.lp-news-detail__content img {
  max-width: 100%;
  height: auto;
  margin-block: 1.6em;
}
.lp-news-detail__content a {
  color: var(--clr-orange);
  text-decoration: underline;
}
.lp-news-detail__content h2,
.lp-news-detail__content h3,
.lp-news-detail__content h4 {
  font-weight: 700;
  line-height: 1.6;
  margin: 1.8em 0 0.8em;
}
.lp-news-detail__content h2:first-child,
.lp-news-detail__content h3:first-child,
.lp-news-detail__content h4:first-child {
  margin-top: 0;
}
.lp-news-detail__content ul,
.lp-news-detail__content ol {
  margin: 0 0 1.6em 1.4em;
  list-style: revert;
}
.lp-news-detail__back {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ===== 24. ミラロボマネージャー ===== */
.lp-page-banner--manager .lp-page-banner__bg img {
  transform: scaleX(-1);
}
.lp-page-banner__logo {
  position: absolute;
  left: var(--container-pad);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.68vw, 24.11px);
}
.lp-page-banner__logo-icon {
  width: clamp(80px, 15.12vw, 217.68px);
  height: auto;
  flex-shrink: 0;
}
.lp-page-banner__logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(4px, 0.62vw, 8.92px);
}
.lp-page-banner__logo-text img {
  height: auto;
  display: block;
}
.lp-page-banner__logo-text-line1 {
  width: clamp(130px, 18.37vw, 264.45px);
}
.lp-page-banner__logo-text-line2 {
  width: clamp(124px, 17.57vw, 252.94px);
}

.lp-manager-about {
  padding-top: clamp(48px, 5.5vw, 80px);
}
.lp-manager-about__text p {
  font-size: clamp(15px, 1.53vw, 22px);
  font-weight: 700;
  line-height: 1.95;
  color: var(--clr-dark);
}
.lp-manager-about__cta {
  margin-top: 24px;
  width: 100%;
}
.lp-manager-about__note {
  margin-top: 16px;
  font-size: 11px;
  color: #999;
}
.lp-manager-about__note a {
  color: var(--clr-orange);
  text-decoration: underline;
  font-weight: 700;
}

.lp-manager-features {
  background: #f0f0f0;
}
.lp-manager-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

/* 汎用: 白背景カード（左=見出し+説明+タグ / 右=写真）。他ページでも再利用可能なパターン */
.lp-feature-card2 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--clr-white);
  border-radius: 8px;
  padding: 21px 25px;
  min-height: 190px;
}
.lp-feature-card2__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lp-feature-card2__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1.3;
  margin-bottom: 12px;
}
.lp-feature-card2__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--clr-dark);
  margin-bottom: 0;
}
.lp-feature-card2__tags {
  margin-top: auto;
  padding-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: #999;
}
.lp-feature-card2__image {
  flex: 0 0 120px;
  width: 120px;
  height: 144px;
  border-radius: 8px;
  overflow: hidden;
}
.lp-feature-card2__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 25. ユーザー向けセミナー 一覧・詳細 ===== */
.lp-seminar-list__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-seminar-list__item-wrap {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}
.lp-seminar-list__item-wrap:last-child {
  border-bottom: none;
}
.lp-seminar-list__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-seminar-list__item:hover {
    opacity: 0.75;
  }
}
.lp-seminar-list__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 534px;
  min-width: 0;
  padding-block: 10px;
}
.lp-seminar-list__updated {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-dark);
}
.lp-seminar-list__date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lp-seminar-list__date img {
  width: 18px;
  height: 20px;
  flex-shrink: 0;
}
.lp-seminar-list__date span {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20px;
  color: var(--clr-orange);
}
.lp-seminar-list__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--clr-dark);
}
.lp-seminar-list__excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--clr-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-seminar-list__thumb {
  flex: 0 0 370px;
  width: 370px;
  height: 211px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}
.lp-seminar-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-seminar-list__empty {
  padding-block: 60px;
  text-align: center;
  font-size: 15px;
  color: var(--clr-dark);
}
.lp-seminar-list__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 50px);
  margin-top: 60px;
}
.lp-seminar-list__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 19px;
  font-weight: 500;
  line-height: 27px;
  color: var(--clr-dark);
  text-decoration: none;
  transition: color var(--ease);
}
.lp-seminar-list__pagination .page-numbers.current {
  color: var(--clr-orange);
}
.lp-seminar-list__pagination .page-numbers.dots {
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .lp-seminar-list__pagination a.page-numbers:hover {
    color: var(--clr-orange);
  }
}
.lp-seminar-list__pagination-icon {
  display: block;
  width: 9px;
  height: 16px;
}
.lp-seminar-list__pagination-icon--next {
  transform: rotate(180deg);
}

.lp-seminar-detail__container {
  display: flex;
  flex-direction: column;
}
.lp-seminar-detail__hero {
  max-width: 481px;
  width: 100%;
  margin-inline: auto;
  border-radius: 8px;
  overflow: hidden;
}
.lp-seminar-detail__hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.lp-seminar-detail__head {
  max-width: 728px;
  width: 100%;
  margin-inline: auto;
  margin-top: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}
.lp-seminar-detail__date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.lp-seminar-detail__date img {
  width: 24px;
  height: 27px;
  flex-shrink: 0;
}
.lp-seminar-detail__date span {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 25px;
  color: var(--clr-orange);
}
.lp-seminar-detail__title {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.4;
  color: var(--clr-dark);
}
.lp-seminar-detail__table {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: var(--clr-gray-bg);
  padding-block: 60px;
  padding-inline: var(--container-pad);
  margin-top: 60px;
}
.lp-seminar-detail__table-inner {
  max-width: 976px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.lp-seminar-detail__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}
.lp-seminar-detail__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.lp-seminar-detail__row-label {
  flex: 0 0 160px;
  font-size: 19px;
  font-weight: 700;
  color: var(--clr-dark);
}
.lp-seminar-detail__row-value {
  flex: 1 1 400px;
  min-width: 0;
  font-size: 19px;
  font-weight: 500;
  color: var(--clr-dark);
  line-height: 1.6;
}
.lp-seminar-detail__body {
  max-width: 728px;
  width: 100%;
  margin-inline: auto;
  margin-top: 60px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--clr-dark);
}
.lp-seminar-detail__body :where(p) {
  margin-bottom: 1.4em;
}
.lp-seminar-detail__body :where(h2, h3, h4) {
  font-weight: 700;
  margin: 1.6em 0 0.6em;
}
.lp-seminar-detail__body :where(ul, ol) {
  margin: 0 0 1.4em 1.4em;
}
.lp-seminar-detail__body :where(ul) {
  list-style: disc;
}
.lp-seminar-detail__body :where(ol) {
  list-style: decimal;
}
.lp-seminar-detail__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.lp-seminar-detail__lecturer {
  max-width: 976px;
  width: 100%;
  margin-inline: auto;
  margin-top: 80px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.lp-seminar-detail__lecturer + .lp-seminar-detail__lecturer {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}
.lp-seminar-detail__lecturer-photo {
  flex: 0 0 185px;
  width: 185px;
  height: 172px;
  border-radius: 4px;
  overflow: hidden;
  background: #f0f0f0;
}
.lp-seminar-detail__lecturer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-seminar-detail__lecturer-info {
  flex: 1 1 auto;
  min-width: 0;
}
.lp-seminar-detail__lecturer-label {
  font-size: 14px;
  font-weight: 500;
  color: #bdbdbd;
  margin-bottom: 10px;
}
.lp-seminar-detail__lecturer-name {
  font-size: 21px;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 8px;
}
.lp-seminar-detail__lecturer-role,
.lp-seminar-detail__lecturer-company {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-dark);
  line-height: 1.5;
}
.lp-seminar-detail__lecturer-bio {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--clr-dark);
  margin-top: 14px;
}
.lp-seminar-detail__cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.lp-seminar-detail__cta-btn.lp-seminar-detail__cta-btn {
  font-size: 20px;
  padding: 18px 42px;
}

/* ===== 26. ミラロボとは ===== */
.lp-about-breadcrumb-bar {
  padding-top: 30px;
}
.lp-about-feature {
  padding-bottom: clamp(70px, 12vw, 130px);
}
.lp-about-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 6vw, 81px);
  margin-top: 40px;
}
.lp-about-feature__card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 20px;
  padding-inline: 6px;
  border-radius: 10px;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 700;
}
.lp-about-feature__card-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--clr-dark);
  margin-top: 16px;
  line-height: 1.4;
}
.lp-about-feature__card-body {
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.6;
  color: var(--clr-dark);
  margin-top: 12px;
}
.lp-about-feature__card-image {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.25);
  aspect-ratio: 386 / 245;
}
.lp-about-feature__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-about-feature__tagline {
  margin-top: 48px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1.5;
}
.lp-about-function {
  background: var(--clr-gray-bg);
}
.lp-about-function__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.lp-about-function-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--clr-white);
  border-radius: 8px;
  padding: 24px;
  min-height: 190px;
}
.lp-about-function-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 142px;
}
.lp-about-function-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1.4;
}
.lp-about-function-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--clr-dark);
  margin-top: 12px;
}
.lp-about-function-card__tags {
  font-size: 12px;
  line-height: 1.5;
  color: #999;
  margin-top: auto;
  padding-top: 16px;
}
.lp-about-function-card__image {
  flex: 0 0 120px;
  width: 120px;
  height: 144px;
  border-radius: 8px;
  overflow: hidden;
}
.lp-about-function-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-about-function-card--cta .lp-about-function-card__body {
  justify-content: space-between;
}
.lp-about-function-card__btn {
  align-self: flex-start;
  margin-top: 16px;
}
.lp-about-usecase {
  background: var(--clr-orange);
}
.lp-about-usecase__heading {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--clr-white);
}
.lp-about-usecase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.lp-about-usecase-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-white);
  border-radius: 8px;
  padding: 25px;
  min-height: 200px;
}
.lp-about-usecase-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 44px;
  height: 20px;
  padding-inline: 8px;
  border-radius: 10px;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: 13px;
  font-weight: 700;
}
.lp-about-usecase-card__company {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-orange);
  margin-top: 20px;
}
.lp-about-usecase-card__stat {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-orange);
  margin-top: 4px;
}
.lp-about-usecase-card__desc {
  font-size: 12px;
  line-height: 1.5;
  color: #090000;
  margin-top: auto;
  padding-top: 16px;
}

/* ===== 27. 学べるコンテンツ ===== */
.lp-content-list__group {
  margin-bottom: 48px;
}
.lp-content-list__group:last-child {
  margin-bottom: 0;
}
.lp-content-list__item {
  background-color: #f8f9f9;
  border-bottom: 1px solid #e0e0e0;
}
.lp-content-list__item a {
  display: block;
  padding: 18px 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-dark);
  transition: opacity var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .lp-content-list__item a:hover {
    opacity: 0.7;
  }
}
.lp-content-detail__body {
  font-size: 15px;
  line-height: 1.9;
}

/* ── 見出し ── */
.lp-content-detail__body h3 {
  margin: 40px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--clr-orange);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--clr-dark);
}
.lp-content-detail__body h3:first-child {
  margin-top: 0;
}
.lp-content-detail__body h4 {
  margin: 28px 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-dark);
}
.lp-content-detail__body > p {
  margin-bottom: 16px;
}

/* ── ショートカットキー表 ── */
.lp-shortcut-table {
  display: block;
  overflow-x: auto;
  width: 100%;
  margin: 16px 0 24px;
  border-collapse: collapse;
  font-size: 14px;
}
.lp-shortcut-table th,
.lp-shortcut-table td {
  padding: 10px 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
  white-space: nowrap;
}
.lp-shortcut-table thead th {
  background: var(--clr-dark);
  color: #fff;
  font-weight: 700;
}
.lp-shortcut-table tbody tr:nth-child(even) {
  background: #f8f9f9;
}
.lp-shortcut-table td:first-child {
  white-space: normal;
}

/* ── サンプルダウンロード ── */
.lp-sample-downloads {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 24px;
  padding: 0;
  list-style: none;
}
.lp-sample-downloads li {
  margin: 0;
}
.lp-sample-downloads a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #f8f9f9;
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-dark);
  word-break: break-all;
  transition: background-color var(--ease), border-color var(--ease);
}
.lp-sample-downloads a::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--clr-orange);
  mask: url('../images/Icon-download.svg') center / contain no-repeat;
  -webkit-mask: url('../images/Icon-download.svg') center / contain no-repeat;
}
@media (hover: hover) and (pointer: fine) {
  .lp-sample-downloads a:hover {
    background: #fff3ee;
    border-color: var(--clr-orange);
  }
}

/* ── 動画コマンド説明の画像ギャラリー ── */
.lp-content-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.lp-content-gallery img {
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

/* ── Gutenberg ファイルブロック(サンプルダウンロード) ── */
/* .lp-sample-downloads と見た目を統一: アイコン+ファイル名の1行ボックスのみを表示し、
   コアブロックが生成する黒い「ダウンロード」ボタンは非表示にする。 */
.lp-content-detail__body .wp-block-file {
  display: block;
  margin: 16px 0 24px;
}
.lp-content-detail__body .wp-block-file > a:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #f8f9f9;
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-dark);
  word-break: break-all;
  transition: background-color var(--ease), border-color var(--ease);
}
.lp-content-detail__body .wp-block-file > a:first-child::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--clr-orange);
  mask: url('../images/Icon-download.svg') center / contain no-repeat;
  -webkit-mask: url('../images/Icon-download.svg') center / contain no-repeat;
}
@media (hover: hover) and (pointer: fine) {
  .lp-content-detail__body .wp-block-file > a:first-child:hover {
    background: #fff3ee;
    border-color: var(--clr-orange);
  }
}
.lp-content-detail__body .wp-block-file__button {
  display: none;
}
.wp-block-file__button {
  padding: 5px 10px;
}

/* ===== 28. 無料動画研修 ===== */
.lp-tutorial__body {
  display: grid;
  grid-template-columns: 447px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}
.lp-tutorial__thumb {
  width: 100%;
}
.lp-tutorial__title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--clr-dark);
}
.lp-tutorial__desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--clr-dark);
}
.lp-tutorial__download {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .lp-tutorial__body {
    grid-template-columns: 1fr;
  }
}

/* ===== 16. Responsive ===== */
@media (max-width: 1024px) {
  .lp-ep__layout {
    grid-template-columns: 1fr;
    gap: 102px;
  }
  .lp-ep__service {
    grid-template-columns: 160px 1fr;
  }
}

@media (max-width: 900px) {
  .lp-header__nav,
  .lp-header__login,
  .lp-header__cta {
    display: none;
  }
  .lp-header__hamburger {
    display: flex;
  }
  .lp-footer__bottom {
    border-top: none;
    padding-top: 0;
  }
  .lp-footer__logo img {
    width: 120px;
  }
  .lp-footer__top {
    margin-bottom: 20px;
  }
  .lp-footer__inner {
    padding: 20px;
  }
  .lp-about__layout,
  .lp-problems__layout,
  .lp-company__layout,
  .lp-education__layout {
    grid-template-columns: 1fr;
  }
  .lp-about__layout {
    gap: 20px;
  }
  .lp-features__grid {
    grid-template-columns: 1fr;
  }

  .lp-plans__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-usage__merits {
    grid-template-columns: 1fr;
  }
  .lp-usage__tabs {
    grid-template-columns: 1fr;
  }
  .lp-company__offices {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-plans__cta-content {
    width: 100%;
    border-radius: 8px;
  }

  .lp-flow {
    flex-direction: column;
  }
  .lp-flow__arrow {
    transform: rotate(90deg);
    align-self: flex-start;
    margin-left: 20px;
  }
}

@media (max-width: 900px) {
  /* Contact — タブレット: サイドバーをスタック */
  .lp-contact__layout {
    grid-template-columns: 1fr;
  }
  .lp-contact__sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .lp-header__logo img {
    width: 100px;
  }
  .lp-problems__image img {
    width: 100%;
  }
  /* Contact — モバイル: フォーム行をスタック */
  .lp-cf7-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .lp-cf7-label {
    padding-top: 0;
  }
  .lp-cf7-row--radio .lp-cf7-label,
  .lp-cf7-row--check .lp-cf7-label,
  .lp-cf7-row--textarea .lp-cf7-label,
  .lp-cf7-row--privacy .lp-cf7-label {
    padding-top: 0;
  }
  .lp-cf7-field--half {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .lp-ep__service {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .lp-hero {
    max-height: none;
    height: 100svh;
  }
  .lp-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }
  .lp-hero__bg-sp {
    display: block;
    position: absolute;
    inset: -20px -16px;
    z-index: -1;
    background-image: url("../images/icatch-bg_sp.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    opacity: 0.55;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
  .lp-hero__gradient {
    display: none;
  }
  .lp-hero__content {
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--container-pad) * 2);
  }
  .lp-hero__logo {
    width: clamp(160px, 80vw, 290px);
  }
  .lp-hero__buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .lp-hero__buttons .lp-btn {
    flex: 1 1 0;
    padding-inline: 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  .lp-hero__btn {
    max-width: 240px;
  }

  .lp-about__text p {
    font-size: 12px;
    line-height: 20px;
  }
  .lp-problem-card {
    padding: 15px 10px;
  }
  .lp-problems__cards {
    grid-template-columns: 1fr;
  }
  .lp-problem-card__icon {
    top: 15px;
    bottom: auto;
    right: 14px;
  }
  .lp-company__offices {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .lp-office-card img {
    height: 100px;
  }
  .lp-office-card__label {
    font-size: 11px;
    text-align: center;
  }
  .lp-ep__service {
    grid-template-columns: 120px 1fr;
    gap: 12px;
  }
  .lp-ep__service-logo {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
  }
  .lp-ep__service-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .lp-ep__service-name {
    font-size: 13px;
  }
  .lp-ep__service-info p {
    font-size: 10px;
  }
  .lp-ep__back-img {
    display: block;
    height: 20%;
  }
  .lp-features__grid {
    gap: 30px;
  }
  .lp-feature-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    height: 100px;
  }
  .lp-feature-card__header {
    flex: 0 0 50%;
    min-width: 0;
    padding: 16px 0;
  }
  .lp-feature-card__image {
    flex: 0 0 50%;
    min-width: 0;
    margin-top: 0;
  }
  .lp-feature-card__image img {
    height: 100px;
  }
  .lp-feature-card__title {
    font-size: 14px;
  }
  .lp-feature-card__body {
    font-size: 10px;
  }
  .lp-merit-card__image {
    flex-shrink: 0;
  }
  .lp-merit-card__title {
    line-height: 1.3;
  }
  .lp-flow__step {
    min-height: unset;
  }
  .lp-flow__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-inline: 18px;
    margin-top: 16px;
    margin-bottom: 8px;
  }
  .lp-flow__head .lp-flow__num,
  .lp-flow__head .lp-flow__title {
    padding-inline: 0;
    margin: 0;
  }

  .lp-section-label__text {
    font-size: 24px;
  }
  .lp-btn {
    width: 100%;
  }

  .lp-section-label__symbol img {
    width: 20px;
  }
  .lp-footer__top {
    flex-direction: column;
    gap: 24px;
  }
  .lp-footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .lp-footer__nav-col {
    gap: 20px;
  }
  .lp-footer__nav a {
    white-space: normal;
  }
  .lp-footer__bottom {
    gap: 12px;
  }
  .lp-footer__cert-logos {
    justify-content: flex-start;
  }
  .lp-footer__bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* SP: CTA バナー — 縦積みレイアウト */
  .lp-plans__cta {
    display: flex;
    flex-direction: column;
    min-height: unset;
    background: none;
  }
  .lp-plans__cta-content {
    width: 100%;
    border-radius: 8px;
    background-image: var(--cta-bg-sp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 0;
    min-height: 350px;
    padding-top: calc(100% * 2 / 5 + 50px);
    padding-right: 20px;
    padding-bottom: 32px;
    padding-left: 20px;
  }
  .lp-plans__cta-heading {
    font-size: clamp(13px, 4.5vw, 18px);
    white-space: nowrap;
  }
  .lp-plans__cta-sub {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .lp-plans__cta-buttons {
    gap: 10px;
  }
  .lp-plans__cta-buttons .lp-btn {
    flex: 1;
    width: auto;
    min-width: 0;
  }
}

@media (min-width: 1200px) {
  .lp-hero__video {
    width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Edison Suite 固有の追加・上書き（lp- コンポーネントを拡張）
   ============================================================ */

/* 課題: 3カード縦並び（Figma準拠） */
.lp-problems__cards--stack {
  grid-template-columns: 1fr;
}
.lp-problems__layout--stack {
  grid-template-columns: 1fr clamp(280px, 34vw, 450px);
}

/* 導入プラン: サブ名称・利用想定バッジ */
.lp-plan-card__name .lp-plan-card__sub {
  font-size: 14px;
  font-weight: 700;
  margin-left: 4px;
}
.lp-plan-card__use {
  margin: 0 22px 22px;
  padding: 7px 12px;
  background: #f5f5f5;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-dark);
  text-align: center;
}

/* 導入プラン: 注記 */
.lp-plans__notice {
  font-size: 13px;
  color: #666;
  margin: -28px 0 40px;
}
.lp-plans__notice a {
  color: var(--clr-orange);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .lp-problems__layout--stack {
    grid-template-columns: 1fr;
  }
}

/* 特徴: 8カード（アイコン画像を写真ではなくアイコンとして中央表示） */
.lp-feature-card__image--icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-feature-card__image--icon img {
  width: 100%;
  object-fit: contain;
}

/* 活用方法: 想定されるユースケース（オレンジ帯・7カード） */
.lp-usecase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-usecase-card {
  display: flex;
  align-items: stretch;
  gap: 16px;
  background: var(--clr-white);
  border-radius: 8px;
  padding: 20px;
}
.lp-usecase-card__text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.lp-usecase-card__tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.lp-usecase-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1.4;
  margin-bottom: 10px;
}
.lp-usecase-card__body {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: auto;
}
.lp-usecase-card__placeholder {
  position: relative;
  flex: 0 0 130px;
  width: 130px;
  height: 130px;
  border-radius: 6px;
  background: #d9d9d9;
  overflow: hidden;
}
.lp-usecase-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.lp-usecase-card__swipe-hint {
  display: none;
}
.lp-usecase__dots {
  display: none;
}

@media (max-width: 900px) {
  .lp-usecase__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .lp-usecase-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
  .lp-usecase-card__tag {
    font-size: 10px;
  }
  .lp-usecase-card__title {
    font-size: 14px;
  }
  .lp-usecase-card__body {
    font-size: 10px;
  }
  .lp-usecase-card__placeholder {
    flex: 0 0 100px;
    width: 100px;
    height: 136px;
  }
  .lp-usecase-card__swipe-hint {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  .lp-usecase-card__swipe-hint.is-hidden {
    opacity: 0;
  }
  .lp-usecase__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .lp-usecase__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1.5px solid #bdbdbd;
    border-radius: 50%;
    background: var(--clr-white);
    cursor: pointer;
    transition:
      background-color var(--ease),
      border-color var(--ease);
  }
  .lp-usecase__dot.is-active {
    background: transparent;
    border-color: var(--clr-white);
  }
}

@media (max-width: 900px) {
  /* サポート体制 */
  .lp-support__panel {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .lp-support__bg {
    position: static;
    order: 2;
    aspect-ratio: 343 / 220;
    border-radius: 8px;
    overflow: hidden;
  }
  .lp-support__gradient {
    display: none;
  }
  .lp-support__content {
    order: 1;
    max-width: 100%;
    background: var(--clr-gray-bg);
    border-radius: 8px;
  }
  .lp-support__item {
    padding: 16px 20px;
    gap: 8px;
  }
  .lp-support__title {
    white-space: normal;
  }
  .lp-support__note {
    white-space: normal;
    text-align: right;
  }
  .lp-support__cta {
    width: calc(100% - 40px);
    margin: 24px 20px 20px;
    font-size: 16px;
    padding: 14px 20px;
  }

  /* よくあるご質問 */
  .lp-faq__question {
    min-height: 52px;
    padding: 10px 16px;
    font-size: 15px;
  }
  .lp-faq__answer-text {
    padding: 0 16px;
    font-size: 13px;
  }
  .lp-faq__question[aria-expanded="true"] + .lp-faq__answer .lp-faq__answer-text {
    padding: 0 16px 16px;
  }

  /* ご導入までの流れ */
  .lp-flow2 {
    flex-direction: column;
  }
  .lp-flow2__arrow {
    transform: rotate(90deg);
    align-self: flex-start;
    margin-left: 20px;
  }

  /* お知らせ */
  .lp-news__panel {
    max-width: 100%;
    padding: 24px 20px;
  }
  .lp-news__list {
    max-height: 260px;
    padding-right: 12px;
  }

  /* 操作体験 */
  .lp-experience__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-experience-card {
    padding: 24px;
    gap: 24px;
  }

  /* シナリオ作成 */
  .lp-scenario-video__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* お知らせ一覧・詳細 */
  .lp-pagination .page-numbers {
    gap: 16px;
  }
  .lp-pagination a.page-numbers,
  .lp-pagination span.page-numbers {
    font-size: 16px;
  }

  /* ミラロボマネージャー */
  .lp-manager-about__text p {
    font-size: 14px;
    line-height: 1.8;
  }
  .lp-manager-features__grid {
    grid-template-columns: 1fr;
  }
  .lp-feature-card2 {
    min-height: 0;
    padding: 18px;
  }
  .lp-feature-card2__title {
    font-size: 18px;
  }
  .lp-feature-card2__image {
    flex-basis: 100px;
    width: 100px;
    height: 120px;
  }

  /* ユーザー向けセミナー */
  .lp-seminar-list__item {
    flex-direction: column;
  }
  .lp-seminar-list__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 370 / 211;
    flex: none;
  }
  .lp-seminar-list__title {
    font-size: 17px;
  }
  .lp-seminar-detail__row-label {
    flex-basis: 100%;
  }
  .lp-seminar-detail__lecturer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ミラロボとは */
  .lp-about-feature__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-about-function__grid {
    grid-template-columns: 1fr;
  }
  .lp-about-function-card {
    flex-wrap: wrap;
  }
  .lp-about-usecase__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .lp-scenario-video__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-scenario-video__title {
    font-size: 16px;
  }
  .lp-page-banner__logo {
    gap: 10px;
  }
  .lp-page-banner__logo-icon {
    width: 72px;
  }
  .lp-page-banner__logo-text-line1 {
    width: 118px;
  }
  .lp-page-banner__logo-text-line2 {
    width: 112px;
  }
}

@media (max-width: 600px) {
  .lp-flow2__step {
    min-height: unset;
  }
  .lp-flow2__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-inline: 18px;
    margin-top: 16px;
    margin-bottom: 8px;
  }
  .lp-flow2__head .lp-flow2__num,
  .lp-flow2__head .lp-flow2__title {
    padding-inline: 0;
    margin: 0;
  }
}

