@charset "UTF-8";
/* ==========================================================================
   LP トランス（高効率変圧器）  lp-transformer.css
   Figma: node 1-233 「TOP」 1440 x 13960
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens (Figma variables)
   -------------------------------------------------------------------------- */
:root {
  --trans-main: #004EA2;       /* main - resprom */
  --trans-main-80: #3371B5;    /* main 80 */
  --trans-main-60: #6695C7;    /* main 60 */
  --trans-main-40: #99B8DA;    /* main 40 */
  --trans-main-20: #CCDCEC;    /* main 20 */
  --trans-main-5: #F2F6FA;     /* main 5  (light bg) */
  --trans-black: #231815;      /* black - resprom */
  --trans-white: #FFFFFF;

  --trans-font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --trans-font-serif: "Noto Serif JP", serif;

  --trans-canvas: 1440px;      /* Figma frame width */
}

/* --------------------------------------------------------------------------
   Reset / base (scoped to .lp-trans)
   -------------------------------------------------------------------------- */
.lp-trans * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.lp-trans {
  margin: 0;            /* ブラウザ既定のbody margin(8px)を打ち消す */
  padding: 0;
  font-family: var(--trans-font-sans);
  color: var(--trans-black);
  background: var(--trans-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;  /* MV等の全幅要素による横スクロール防止 */
}

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

.lp-trans a {
  color: inherit;
  text-decoration: none;
}

.lp-trans ul,
.lp-trans ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Layout helper
   -------------------------------------------------------------------------- */
.lp-trans__inner {
  width: 100%;
  max-width: 1080px;   /* content width — adjust per section to match Figma */
  margin-inline: auto;
  padding-inline: 20px;
}

/* ==========================================================================
   Section styles (filled in per section, top → bottom)
   ========================================================================== */

/* --- header (Figma 1:1490) --- */
.lp-trans .trans-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--trans-white);
  z-index: 1000;
}
.lp-trans .trans-header__inner {
  width: 100%;
  max-width: var(--trans-canvas);
  height: 100%;
  margin-inline: auto;
  padding-inline: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-trans .trans-header__logo {
  display: block;
  flex-shrink: 0;
}
.lp-trans .trans-header__logo img {
  width: auto;
  height: 40px;
}
.lp-trans .trans-header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.lp-trans .trans-header__tel-hours,
.lp-trans .trans-header__tel-staff {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #555;
  text-align: center;
}
.lp-trans .trans-header__tel-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Roboto", var(--trans-font-sans);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: #555;
  letter-spacing: 1.2px;
}
.lp-trans .trans-header__tel-icon {
  width: 26px;
  height: 26px;
}
.lp-trans .trans-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  height: 56px;
  background: var(--trans-main);
  color: var(--trans-white);
  font-weight: 700;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
.lp-trans .trans-header__cta-icon {
  width: 24px;
  height: 24px;
}

/* --- MV (Figma 1:235) --- */
.lp-trans .mv {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--trans-main-5);
}
/* 1440px設計のステージ。768〜1440pxは scale で構図を変えずに縮小する */
.lp-trans .mv__stage {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 1440px;
  min-height: 740px;
  padding: 100px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.lp-trans .mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-trans .mv__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-trans .mv__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 246, 250, 0.8);
}
.lp-trans .mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.lp-trans .mv__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

/* heading block */
.lp-trans .mv__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-trans .mv__badge {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 30px;
  align-self: flex-start;
}
/* 中央の長方形（コピー） */
.lp-trans .mv__badge-text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eb8034;
  color: var(--trans-white);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0.96px;
  padding: 4px 24px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
/* 左右の燕尾タール（ダークオレンジ・5px下げて折り返し影に） */
.lp-trans .mv__badge-arrow {
  position: absolute;
  top: 5px;
  width: 41px;
  height: 40px;
  z-index: 0;
}
.lp-trans .mv__badge-arrow--left {
  left: 0;
  transform: rotate(180deg);
}
.lp-trans .mv__badge-arrow--right {
  right: 0;
}
.lp-trans .mv__badge-arrow img {
  display: block;
  width: 100%;
  height: 100%;
}
.lp-trans .mv__title {
  font-family: var(--trans-font-serif);
  font-weight: 900;
  color: #555;
  letter-spacing: 2.24px;
  line-height: 1.35;
}
.lp-trans .mv__title-line {
  display: block;
  font-size: 48px;
}
.lp-trans .mv__title-accent {
  color: #eb8034;
}
.lp-trans .mv__title-sm {
  font-size: 48px;
}
.lp-trans .mv__title-lg {
  font-size: 64px;
}

/* feature cards */
.lp-trans .mv__cards {
  display: flex;
  gap: 10px;
  width: 100%;
}
.lp-trans .mv__card {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  overflow: hidden;
}
.lp-trans .mv__card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #eb8034;
  white-space: nowrap;
}
.lp-trans .mv__card-desc {
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  color: #4d4d4d;
  text-align: center;
  white-space: nowrap;
}

/* lower block (catch + contact) */
.lp-trans .mv__lower {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.lp-trans .mv__catch {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.lp-trans .mv__catch-laurel {
  flex-shrink: 0;
  width: 15px;
  height: 54px;
}
.lp-trans .mv__catch-laurel img {
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
}
.lp-trans .mv__catch-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-trans .mv__catch-main {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: var(--trans-main);
}
.lp-trans .mv__catch-main strong {
  font-weight: 700;
  font-size: 26px;
}
.lp-trans .mv__catch-sub {
  font-size: 14px;
  line-height: normal;
  color: #555;
}

/* contact box */
.lp-trans .mv__contact {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--trans-white);
  border: 1px solid var(--trans-main);
  border-radius: 12px;
  padding: 32px 24px 24px;
}
.lp-trans .mv__contact-ribbon {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--trans-white);
  border: 1px solid var(--trans-main);
  border-radius: 40px;
  padding: 8px 24px;
  white-space: nowrap;
}
.lp-trans .mv__contact-ribbon-main {
  font-weight: 500;
  font-size: 16px;
  color: var(--trans-main);
  letter-spacing: 0.32px;
}
.lp-trans .mv__contact-ribbon-note {
  font-size: 12px;
  color: #949494;
  letter-spacing: 0.24px;
}
.lp-trans .mv__tel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.lp-trans .mv__tel-hours,
.lp-trans .mv__tel-staff {
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: #555;
}
.lp-trans .mv__tel-num {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", var(--trans-font-sans);
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: #555;
  letter-spacing: 1.2px;
}
.lp-trans .mv__tel-icon {
  width: 26px;
  height: 26px;
}
.lp-trans .mv__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 260px;
  height: 56px;
  background: var(--trans-main);
  color: var(--trans-white);
  font-weight: 700;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}
.lp-trans .mv__cta-icon {
  width: 24px;
  height: 24px;
}

/* product image */
/* Figma I1:235;1:96 — backdrop-blur + 放射状グロー、中の正方形フレームに画像を 153.38% で配置 */
.lp-trans .mv__product {
  flex: 1 0 0;
  min-width: 0;
  height: 539px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: radial-gradient(ellipse closest-side at 50% 50%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.lp-trans .mv__product-inner {
  flex: 1 0 0;
  min-width: 0;
  aspect-ratio: 631 / 540;
  position: relative;
  overflow: hidden;
}
.lp-trans .mv__product-inner img {
  position: absolute;
  left: -26.51%;
  top: -27.58%;
  width: 153.38%;
  height: 179.23%;
  max-width: none;
  object-fit: contain;
}

/* --- 課題提起 (Figma 1:237) --- */
.lp-trans .problem {
  background: var(--trans-white);
  overflow-x: clip;
}
.lp-trans .problem__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1440px;
  margin-inline: auto;
  padding: 80px 80px 0;
}

/* heading */
.lp-trans .problem__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 1024px;
  max-width: 100%;
}
.lp-trans .problem__title {
  font-family: var(--trans-font-serif);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: #555;
  letter-spacing: 1.28px;
}
.lp-trans .problem__title-line {
  display: block;
}
.lp-trans .problem__title-accent {
  color: #eb8034;
}
.lp-trans .problem__bar {
  display: block;
  width: 4px;
  height: 64px;
  background: var(--trans-main-60);
  border-radius: 10px;
}

/* cards */
.lp-trans .problem__cards {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
.lp-trans .problem__card {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--trans-white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  overflow: hidden;
}
.lp-trans .problem__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #fdf4ef;
  border-radius: 32px;
}
.lp-trans .problem__icon img {
  width: 36px;
  height: 36px;
}
.lp-trans .problem__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.lp-trans .problem__card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: #eb8034;
  text-align: center;
}
.lp-trans .problem__card-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

/* bottom wedge（≥1440pxでも全幅にし、次セクション背景と上端ラインを揃える） */
.lp-trans .problem__wedge {
  width: 100%;
  margin: 28px 0 0;
}
.lp-trans .problem__wedge img {
  display: block;
  width: 100%;
  height: 150px;
}

/* --- ソリューション (Figma 1:287) --- */
.lp-trans .solution {
  background: var(--trans-main-5);
  padding-bottom: 64px;
  overflow-x: clip;
}
.lp-trans .solution__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1280px;
  margin-inline: auto;
}

/* heading */
.lp-trans .solution__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 1024px;
  max-width: 100%;
}
.lp-trans .solution__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .solution__title-line {
  display: block;
}
.lp-trans .solution__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}

/* intro block (gradient) */
.lp-trans .solution__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 24px 64px;
  background: linear-gradient(to bottom, var(--trans-main-5), var(--trans-white));
}
.lp-trans .solution__lead {
  font-family: var(--trans-font-serif);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.75;
  text-align: center;
  color: #eb8034;
  letter-spacing: 0.96px;
}
.lp-trans .solution__lead-line {
  display: block;
}

/* media */
.lp-trans .solution__media {
  display: flex;
  align-items: flex-start;
}
.lp-trans .solution__media-photo,
.lp-trans .solution__media-product {
  width: 326px;
  height: 182px;
  overflow: hidden;
}
.lp-trans .solution__media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-trans .solution__media-product {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #254e7c;
}
.lp-trans .solution__media-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lp-trans .solution__caption {
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  color: #555;
  letter-spacing: 0.64px;
}
.lp-trans .solution__caption-line {
  display: block;
}

/* cards */
.lp-trans .solution__cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
.lp-trans .solution__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 400px;
  padding: 24px;
  background: var(--trans-white);
  border-radius: 6px;
}
.lp-trans .solution__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 24px;
  background: var(--trans-main);
  border-radius: 40px;
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.75;
  color: var(--trans-white);
  text-align: center;
  letter-spacing: 0.96px;
  white-space: nowrap;
}
.lp-trans .solution__card-title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.75;
  color: var(--trans-main);
  text-align: center;
  letter-spacing: 0.8px;
}
.lp-trans .solution__card-desc {
  width: 100%;
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  letter-spacing: 0.64px;
}

/* --- REASON (Figma 1:328) --- */

/* --- スタッフ (Figma 1:413) --- */
.lp-trans .staff {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 0;
  background: var(--trans-main-5);
  overflow-x: clip;
}
.lp-trans .staff__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1280px;
}
.lp-trans .staff__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 1024px;
  max-width: 100%;
}
.lp-trans .staff__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .staff__title-line {
  display: block;
}
.lp-trans .staff__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}

/* list / card */
.lp-trans .staff__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.lp-trans .staff-card {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 30px 40px;
  background: var(--trans-white);
  border-radius: 12px;
  overflow: hidden;
}
.lp-trans .staff-card__photo {
  flex-shrink: 0;
  width: 240px;
  border-radius: 10px;
  overflow: hidden;
}
/* 背景グラデーション込みで画像化（Figma Photo 1:418 を合成） */
.lp-trans .staff-card__photo img {
  display: block;
  width: 100%;
  height: auto;
}
.lp-trans .staff-card__info {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
}
.lp-trans .staff-card__name-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.lp-trans .staff-card__name {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.75;
  color: #1a3c6e;
  letter-spacing: 0.96px;
}
.lp-trans .staff-card__dept {
  font-family: var(--trans-font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #666;
  letter-spacing: 0.64px;
}
.lp-trans .staff-card__certs {
  display: flex;
  gap: 8px;
  width: 100%;
}
.lp-trans .staff-card__cert {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: #1a3c6e;
  border-radius: 3px;
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.75;
  color: var(--trans-white);
  letter-spacing: 0.48px;
  white-space: nowrap;
}
.lp-trans .staff-card__desc {
  width: 100%;
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #666;
  letter-spacing: 0.64px;
}

/* --- REASON (Figma 1:328) --- */
.lp-trans .reason {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 0;
  background: var(--trans-white);
  overflow-x: clip;
}
.lp-trans .reason__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1280px;
}
.lp-trans .reason__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 1024px;
  max-width: 100%;
}
.lp-trans .reason__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .reason__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}

/* cards grid */
.lp-trans .reason__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  max-width: 920px;
}
.lp-trans .reason__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 440px;
  min-height: 232px;
  padding: 24px;
  background: var(--trans-white);
  border: 2px solid var(--trans-main);
  border-radius: 6px;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.25));
}
.lp-trans .reason__card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* badge: Figma書き出し画像（REASON タグ＋番号、reason1〜6） */
.lp-trans .reason__badge {
  flex-shrink: 0;
  width: 104px;
  height: 54px;
}
.lp-trans .reason__badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* titles */
.lp-trans .reason__card-title {
  flex: 1 0 0;
  min-width: 0;
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: var(--trans-main);
  letter-spacing: 0.64px;
}
.lp-trans .reason__card-title--lg {
  font-size: 18px;
  letter-spacing: 0.72px;
}
.lp-trans .reason__card-title-line {
  display: block;
}
.lp-trans .reason__card-desc {
  width: 100%;
  font-family: var(--trans-font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #777;
  letter-spacing: 0.64px;
}

/* --- CTA (Figma 1:441 ほか) --- */
.lp-trans .trans-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.lp-trans .trans-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.lp-trans .trans-cta__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-trans .trans-cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 129, 197, 0.4);
}
.lp-trans .trans-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 592px;   /* Figma inner content frame 1:117 = 592px centered */
  margin-inline: auto;
  padding: 40px 0;
}

/* heading */
.lp-trans .trans-cta__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}
.lp-trans .trans-cta__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.lp-trans .trans-cta__lead-bar {
  flex-shrink: 0;
  width: 2px;
  height: 22px;
  background: #d9d9d9;
}
.lp-trans .trans-cta__lead-bar--left {
  transform: rotate(-30deg);
}
.lp-trans .trans-cta__lead-bar--right {
  transform: rotate(30deg);
}
.lp-trans .trans-cta__lead-text {
  font-family: var(--trans-font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: var(--trans-white);
  white-space: nowrap;
}
.lp-trans .trans-cta__title {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: var(--trans-white);
  white-space: nowrap;
}

/* pills */
.lp-trans .trans-cta__pills {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lp-trans .trans-cta__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--trans-main-5);
  border-radius: 40px;
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: var(--trans-main-80);
  white-space: nowrap;
}

/* bottom row: tel + form button */
.lp-trans .trans-cta__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.lp-trans .trans-cta__tel {
  flex-shrink: 0; /* Figma(更新版 1:132) 内容幅。フォーム側を flex-1 で残り幅に */
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--trans-white);
}
.lp-trans .trans-cta__tel-num {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0; /* Figma(更新版 1:133) tracking なし */
  white-space: nowrap;
}
.lp-trans .trans-cta__tel-hours {
  font-family: var(--trans-font-sans);
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  white-space: nowrap;
}
.lp-trans .trans-cta__form {
  flex: 1 0 0;
  min-width: 0;
}
.lp-trans .trans-cta__form-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 63px;
  padding: 14px 40px;
  background: #eb8034;
  border-radius: 6px;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.25));
}
.lp-trans .trans-cta__form-note {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  color: var(--trans-white);
  text-align: center;
}
.lp-trans .trans-cta__form-main {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.lp-trans .trans-cta__form-icon {
  flex-shrink: 0;
  width: 20px;
  height: 16px;
}
.lp-trans .trans-cta__form-text {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.36px;
  color: var(--trans-white);
  white-space: nowrap;
}

/* --- 対応施設 (Figma 1:442) --- */
.lp-trans .facilities {
  background: var(--trans-white);
  padding: 64px 0;
}
.lp-trans .facilities__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1280px;
  margin-inline: auto;
}

/* heading */
.lp-trans .facilities__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 1024px;
  max-width: 100%;
}
.lp-trans .facilities__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .facilities__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}
.lp-trans .facilities__lead {
  font-family: var(--trans-font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #666;
}

/* grid */
.lp-trans .facilities__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
.lp-trans .facility {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 240px;
  padding: 10px;
}
.lp-trans .facility__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--trans-main);
  border-radius: 100px;
  overflow: hidden;
}
.lp-trans .facility__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
/* nodes with larger glyph frames */
.lp-trans .facility:nth-child(5) .facility__icon img { /* 学校・教育施設 (84) */
  width: 84px;
  height: 84px;
}
.lp-trans .facility:nth-child(8) .facility__icon img { /* 公共施設・その他 (74) */
  width: 74px;
  height: 74px;
}
.lp-trans .facility__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--trans-main);
  white-space: nowrap;
}
.lp-trans .facility__name {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
}
.lp-trans .facility__desc {
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
}


/* --- 場面・用途 (Figma 1:574) --- */
.lp-trans .usecase {
  background: var(--trans-white);
  padding: 80px 0;
}
.lp-trans .usecase__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1280px;
  margin-inline: auto;
}

/* heading */
.lp-trans .usecase__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.lp-trans .usecase__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .usecase__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}

/* grid: 2 rows x 3 columns */
.lp-trans .usecase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.lp-trans .usecase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--trans-white);
  border: 1px solid #e3e4e7;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.lp-trans .usecase-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #fdf4ef;
  border-radius: 48px;
  overflow: hidden;
}
.lp-trans .usecase-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.lp-trans .usecase-card__title {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.75;
  text-align: center;
  color: #eb8034;
  letter-spacing: 0.96px;
}
.lp-trans .usecase-card__desc {
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  color: #666;
  letter-spacing: 0.64px;
}

/* --- 主な特徴＋ラインナップ＋比較 (Figma 1:657) --- */

/* --- 他社比較表 (Figma 1:848) --- */

/* --- 品質エビデンス (Figma 1:951) --- */
.lp-trans .quality {
  background: var(--trans-white);
  padding: 80px 0;
}
.lp-trans .quality__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1280px;
  margin-inline: auto;
}

/* heading */
.lp-trans .quality__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 1024px;
  max-width: 100%;
}
.lp-trans .quality__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .quality__title-line {
  display: block;
}
.lp-trans .quality__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}
.lp-trans .quality__lead {
  font-family: var(--trans-font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75;
  text-align: center;
  color: #555;
  letter-spacing: 0.72px;
}
.lp-trans .quality__lead-line {
  display: block;
}

/* card rows */
.lp-trans .quality__grid {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
.lp-trans .quality__grid--lower {
  justify-content: center;
}

/* card */
.lp-trans .quality-item {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 20px;
  background: var(--trans-white);
  border: 1px solid #e3e4e7;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.lp-trans .quality-item--fixed {
  flex: 0 0 auto;
  width: 390px;
}
.lp-trans .quality-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #fdf4ef;
  border-radius: 32px;
  overflow: hidden;
}
.lp-trans .quality-item__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.lp-trans .quality-item__title {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  text-align: center;
  color: #eb8034;
  white-space: nowrap;
}
.lp-trans .quality-item__desc {
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  color: #555;
}

/* --- 導入事例 (Figma 1:1007) --- */
.lp-trans .cases {
  background: var(--trans-white);
  padding: 64px 16px;
}
.lp-trans .cases__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1280px;
  margin-inline: auto;
}

/* heading */
.lp-trans .cases__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 1024px;
  max-width: 100%;
}
.lp-trans .cases__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .cases__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}

/* list */
.lp-trans .cases__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

/* card */
.lp-trans .case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 812px;
  max-width: 100%;
  background: var(--trans-white);
  border: 1px solid var(--trans-main-40);
  border-radius: 6px;
  padding: 40px 24px 24px;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.25));
}
.lp-trans .case-card__label {
  position: absolute;
  top: -26px;
  left: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  background: var(--trans-main);
  border-radius: 6px 40px 40px 6px;
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-white);
  letter-spacing: 0.96px;
  white-space: nowrap;
}
.lp-trans .case-card__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lp-trans .case-card__name {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.75;
  color: var(--trans-main);
  letter-spacing: 0.96px;
}
.lp-trans .case-card__meta {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.75;
  color: #eb8034;
  letter-spacing: 0.72px;
}
.lp-trans .case-card__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.lp-trans .case-card__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}
.lp-trans .case-card__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--trans-font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: var(--trans-white);
  letter-spacing: 0.64px;
  white-space: nowrap;
}
.lp-trans .case-card__badge--issue {
  background: var(--trans-main-60);
}
.lp-trans .case-card__badge--result {
  background: #eb8034;
}
.lp-trans .case-card__text {
  flex: 1 0 0;
  min-width: 0;
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--trans-black);
  letter-spacing: 0.64px;
  word-break: break-word;
}

/* --- ご依頼の流れ (Figma 1:1060) --- */
.lp-trans .flow {
  background: var(--trans-white);
  padding: 64px 0;
}
.lp-trans .flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1280px;
  margin-inline: auto;
}

/* heading */
.lp-trans .flow__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 1024px;
  max-width: 100%;
}
.lp-trans .flow__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .flow__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}

/* steps row */
.lp-trans .flow__row {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* step card */
.lp-trans .flow-step {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--trans-white);
  border: 1px solid var(--trans-main);
  border-radius: 12px;
  padding: 20px 8px 16px;
  overflow: hidden;
}
.lp-trans .flow-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: var(--trans-main);
  color: var(--trans-white);
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.lp-trans .flow-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: #fdf4ef;
  flex-shrink: 0;
}
.lp-trans .flow-step__icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.lp-trans .flow-step__label {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #1a3c6e;
  white-space: nowrap;
}
.lp-trans .flow-step__desc {
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 11px;
  line-height: 17px;
  text-align: center;
  color: #737373;
  white-space: nowrap;
}

/* arrow connector */
.lp-trans .flow-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 128px;
  flex-shrink: 0;
  list-style: none;
}
.lp-trans .flow-step__arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* --- お客様の声 (Figma 1:1168 / 1:1199) --- */

/* --- 小川電機について (Figma 1:1342) --- */
.lp-trans .about {
  display: flex;
  justify-content: center;
  background: var(--trans-main-5);
  padding: 80px 0;
}
.lp-trans .about__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 1280px;
  background: var(--trans-white);
  border-radius: 12px;
  padding: 40px;
}

/* heading */
.lp-trans .about__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.lp-trans .about__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .about__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}

/* facts */
.lp-trans .about__facts {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}
.lp-trans .about-fact {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  text-align: center;
  background: #f9f9f9;
  border: 1px solid #e3e4e7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.lp-trans .about-fact__label {
  font-family: var(--trans-font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: var(--trans-black);
  white-space: nowrap;
}
.lp-trans .about-fact__value {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: #eb8034;
  white-space: nowrap;
}

/* photo + text row */
.lp-trans .about__row {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.lp-trans .about__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 420px;
  flex-shrink: 0;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.lp-trans .about__photo img {
  width: 100%;
  aspect-ratio: 1496 / 912;
  object-fit: cover;
  display: block;
}
.lp-trans .about__text {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  gap: 20px;
}
.lp-trans .about__text p {
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.8px;
  color: #555;
  word-break: break-word;
}

/* --- FAQ (Figma 1:1364) --- */
.lp-trans .faq {
  background: var(--trans-white);
  padding: 64px 16px;
}
.lp-trans .faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1280px;
  margin-inline: auto;
}

/* heading */
.lp-trans .faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 1024px;
  max-width: 100%;
}
.lp-trans .faq__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .faq__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}

/* card */
.lp-trans .faq__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 40px;
  background: var(--trans-main-5);
  border-radius: 12px;
}

/* accordion item */
.lp-trans .faq__item {
  width: 100%;
}

/* question (summary) */
.lp-trans .faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px;
  background: var(--trans-white);
  border-bottom: 1px solid #c4c4c4;
  cursor: pointer;
  list-style: none;
}
.lp-trans .faq__q::-webkit-details-marker {
  display: none;
}
.lp-trans .faq__q-mark {
  flex-shrink: 0;
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.72px;
  color: #555;
  white-space: nowrap;
}
.lp-trans .faq__q-text {
  flex: 1 0 0;
  min-width: 0;
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.72px;
  color: #555;
  word-break: break-word;
}
.lp-trans .faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}
.lp-trans .faq__item[open] .faq__icon {
  transform: rotate(0deg);
}

/* answer */
.lp-trans .faq__a {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding: 16px;
  background: #f2f5f7;
}
.lp-trans .faq__a-mark {
  flex-shrink: 0;
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: #eb8034;
  white-space: nowrap;
}
.lp-trans .faq__a-text {
  flex: 1 0 0;
  min-width: 0;
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.64px;
  color: #555;
  word-break: break-word;
}

/* --- 会社情報 (Figma 1:1447) --- */
.lp-trans .company-info {
  background: var(--trans-main-5);
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-trans .company-info__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 1024px;
  padding: 40px;
  background: var(--trans-white);
  border-radius: 12px;
}

/* heading */
.lp-trans .company-info__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.lp-trans .company-info__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  text-align: center;
  color: var(--trans-main);
  letter-spacing: 1.28px;
}
.lp-trans .company-info__bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--trans-main-60);
  border-radius: 10px;
}

/* table */
.lp-trans .company-info__table {
  width: 930px;
  max-width: 100%;
}
.lp-trans .company-info__row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
.lp-trans .company-info__label {
  flex-shrink: 0;
  width: 117px;   /* Figma value offset ml-[117px] — fixed first column keeps all values aligned */
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--trans-main);
}
.lp-trans .company-info__value {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #555;
  word-break: break-word;
}
.lp-trans .company-info__value-line {
  display: block;
}

/* --- 主な特徴＋ラインナップ＋比較 (Figma 1:657) --- */
.lp-trans .spec {
  background: var(--trans-main-5);
  padding: 64px 16px;
}
.lp-trans .spec__inner {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 見出し */
.lp-trans .spec__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lp-trans .spec__title {
  font-family: var(--trans-font-sans);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.75;
  letter-spacing: 1.28px;
  color: var(--trans-main);
  text-align: center;
}
.lp-trans .spec__bar {
  width: 64px;
  height: 4px;
  border-radius: 10px;
  background: var(--trans-main-60);
}

/* 主な特徴 */
.lp-trans .features {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.lp-trans .features__media {
  flex: 1 0 0;
  min-width: 0;
  height: 343px;
  background: var(--trans-main-20);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lp-trans .features__media img {
  width: 100%;
  height: 298px;
  object-fit: contain;
}
.lp-trans .features__body {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-trans .features__heading {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #1a3c6e;
}
.lp-trans .features__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-trans .features__item {
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.72px;
  color: #1a1a1a;
}

/* 主要ラインナップ・容量別一覧 */
.lp-trans .lineup {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-trans .lineup__head,
.lp-trans .compare__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-trans .lineup__bar,
.lp-trans .compare__bar {
  flex: none;
  width: 4px;
  background: #eb8034;
  border-radius: 2px;
}
.lp-trans .lineup__bar {
  height: 28px;
}
.lp-trans .compare__bar {
  height: 30px;
}
.lp-trans .lineup__title,
.lp-trans .compare__title {
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  white-space: nowrap;
}

.lp-trans .lineup__tables {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.lp-trans .lineup-block {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-trans .lineup-block__badge {
  align-self: flex-start;
  background: #eb8034;
  color: var(--trans-white);
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  padding: 4px 14px;
  border-radius: 4px;
  white-space: pre;
}
.lp-trans .lineup-table__scroll {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: var(--trans-white);
}

.lp-trans .lineup-table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.lp-trans .lineup-table th,
.lp-trans .lineup-table td {
  border: 0.5px solid #e0e3e5;
  padding: 6px 10px;
  text-align: center;
  vertical-align: middle;
  font-family: var(--trans-font-sans);
  white-space: nowrap; /* Figma: セルは折り返さない（容量「1500・2000」等を1行に。<br>は維持） */
}
.lp-trans .lineup-table thead th {
  background: #1a3c6e;
  color: var(--trans-white);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.15; /* 2行「容量(kVA)」が高さ40pxに収まるよう調整 */
  height: 40px;
}
.lp-trans .lineup-table tbody td {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.4;
  color: #333;
}
.lp-trans .lineup-table tbody tr:nth-child(odd) td {
  background: #ffffff;
}
.lp-trans .lineup-table tbody tr:nth-child(even) td {
  background: #f9fafc;
}
.lp-trans .lineup-table__model {
  text-align: left !important;
}
.lp-trans .lineup-table__col-model { width: 27.4%; }
.lp-trans .lineup-table__col-cap   { width: 12.1%; }
.lp-trans .lineup-table__col-pri   { width: 26.6%; }
.lp-trans .lineup-table__col-sec   { width: 17.7%; }
.lp-trans .lineup-table__col-con   { width: 16.1%; }

/* 他社との比較 */
.lp-trans .compare {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-trans .compare__wrap {
  position: relative;
  padding-top: 40px; /* おすすめバッジをヘッダー上に余白を空けて配置（Figma: 重なりなし） */
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.06));
}
.lp-trans .compare__badge {
  position: absolute;
  top: 0;
  left: calc(200px + (100% - 200px) / 6);
  transform: translateX(-50%);
  z-index: 2;
  background: #eb8034;
  color: var(--trans-white);
  font-family: var(--trans-font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.lp-trans .compare-table__scroll {
  width: 100%;
}
.lp-trans .compare-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  background: transparent; /* 左上コーナーからセクション背景(薄い青)を透過させる */
}
.lp-trans .compare-table th,
.lp-trans .compare-table td {
  font-family: var(--trans-font-sans);
  border: 1px solid #edf0f2;
}
.lp-trans .compare-table thead th.compare-table__corner {
  width: 200px;
  padding: 16px;
  background: transparent; /* Figma: コーナーセルは opacity:0（不可視） */
  border: none;
}
.lp-trans .compare-table__corner-text {
  opacity: 0;
}
.lp-trans .compare-table thead th {
  height: 67px;
  vertical-align: middle;
  text-align: center;
  color: var(--trans-white);
  background: #1a3c6e;
}
.lp-trans .compare-table__col-main {
  background: #eb8034 !important;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
.lp-trans .compare-table__col-other {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}
.lp-trans .compare-table thead th:nth-child(2) { border-top-left-radius: 12px; } /* 小川電機ヘッダーの左上角丸（Figma 1:761） */
.lp-trans .compare-table thead th:last-child   { border-top-right-radius: 12px; }
.lp-trans .compare-table__rowlabel {
  width: 200px;
  background: #1a3c6e;
  color: var(--trans-white);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  padding: 14px 16px;
}
.lp-trans .compare-table tbody tr:first-child .compare-table__rowlabel { border-top-left-radius: 12px; }
.lp-trans .compare-table tbody tr:last-child .compare-table__rowlabel  { border-bottom-left-radius: 12px; }
.lp-trans .compare-table tbody td {
  padding: 14px 16px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.lp-trans .compare-table__main {
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #d1661f;
}
/* 小川電機列の交互背景 */
.lp-trans .compare-table tbody tr:nth-child(odd) .compare-table__main  { background: #fff6f1; }
.lp-trans .compare-table tbody tr:nth-child(even) .compare-table__main { background: #fef1e8; }
/* 他2列の交互背景 */
.lp-trans .compare-table tbody tr:nth-child(odd) td:not(.compare-table__main):not(.compare-table__rowlabel)  { background: #ffffff; }
.lp-trans .compare-table tbody tr:nth-child(even) td:not(.compare-table__main):not(.compare-table__rowlabel) { background: #f7f8fa; }
.lp-trans .compare-table tbody tr:last-child td:last-child { border-bottom-right-radius: 12px; }
/* 記号色（セル全体に適用） */
.lp-trans .compare-table td.sym-green { color: #2e9e57; }
.lp-trans .compare-table td.sym-blue  { color: #3373bf; }
.lp-trans .compare-table td.sym-gray  { color: #8c8c8c; }
.lp-trans .compare-table td.sym-red   { color: #d13833; }

/* --- 会社情報 (Figma 1:1447) --- */

/* --- footer (Figma 1:1483 / 1:1489) --- */
.lp-trans .trans-footer {
  background: var(--trans-white);
  width: 100%;
}
.lp-trans .trans-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 215px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
  box-sizing: border-box;
}
.lp-trans .trans-footer__logo {
  width: 235px;
  height: 71.918px;
}
.lp-trans .trans-footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lp-trans .trans-footer__privacy {
  margin-top: 16px;
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  color: #555;
  text-decoration: underline;
  text-underline-position: from-font;
  white-space: nowrap;
}
.lp-trans .trans-footer__copyright {
  margin: 0;
  margin-top: 16px;
  font-family: var(--trans-font-sans);
  font-weight: 400;
  font-size: 10px;
  line-height: normal;
  color: #555;
  white-space: nowrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
/* 構図維持スケール対象セクションの横はみ出しクリップ */
.lp-trans .facilities,
.lp-trans .usecase,
.lp-trans .spec,
.lp-trans .quality,
.lp-trans .cases,
.lp-trans .flow,
.lp-trans .faq,
.lp-trans .about,
.lp-trans .company-info {
  overflow-x: clip;
}

/* 768〜1440px: 1440px設計を比率維持で縮小（構図を変えない）。--lp-scale は JS が付与 */
@media screen and (min-width: 769px) and (max-width: 1439.98px) {
  .lp-trans .mv {
    height: calc(100vw * 740 / 1440);
  }
  .lp-trans .mv__stage {
    transform: scale(var(--lp-scale, 1));
    transform-origin: top center;
  }
  /* 課題提起・ソリューション・選ばれる理由は可変高さのため zoom で縮小（レイアウト高さも連動） */
  .lp-trans .problem__inner,
  .lp-trans .solution__inner,
  .lp-trans .reason__inner,
  .lp-trans .staff__inner,
  .lp-trans .facilities__inner,
  .lp-trans .usecase__inner,
  .lp-trans .spec__inner,
  .lp-trans .quality__inner,
  .lp-trans .cases__inner,
  .lp-trans .flow__inner,
  .lp-trans .faq__inner,
  .lp-trans .about__card,
  .lp-trans .company-info__card {
    zoom: var(--lp-scale, 1);
  }
}

/* SP専用要素はPC（769px以上）では非表示 */
.lp-trans .mv__sp-product,
.lp-trans .mv__sp-contact,
.lp-trans .trans-cta__tel-sp {
  display: none;
}
.lp-trans .mv__catch-br-sp {
  display: none; /* キャッチ本文のSP専用改行（PCでは1行） */
}

@media screen and (max-width: 768px) {
  /* SP overrides per section */

  /* 構図維持スケール対象セクション: SPでは全幅＋zoom解除（縦積み） */
  .lp-trans .facilities__inner,
  .lp-trans .usecase__inner,
  .lp-trans .spec__inner,
  .lp-trans .quality__inner,
  .lp-trans .cases__inner,
  .lp-trans .flow__inner,
  .lp-trans .faq__inner,
  .lp-trans .about__card,
  .lp-trans .company-info__card {
    width: 100%;
    zoom: normal;
  }

  /* --- header --- */
  .lp-trans .trans-header {
    height: 64px;
  }
  .lp-trans .trans-header__inner {
    padding-inline: 12px;
  }
  .lp-trans .trans-header__logo img {
    height: 28px;
  }
  .lp-trans .trans-header__tel {
    display: none;
  }
  .lp-trans .trans-header__cta {
    height: 44px;
    padding: 0 14px;
    font-size: 14px;
    gap: 8px;
  }
  .lp-trans .trans-header__cta-icon {
    width: 18px;
    height: 18px;
  }

  /* --- MV --- */
  /* === SP ファーストビュー (Figma 183:341) === */
  /* 375px設計を画面幅に合わせて拡縮し、構図(カード3+2・改行など)を全幅で固定 */
  .lp-trans .mv__stage {
    width: 375px;
    zoom: var(--sp-scale, 1);
    min-height: 0;
    padding: 100px 16px 40px;
  }
  .lp-trans .mv__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .lp-trans .mv__content {
    width: 100%;
    gap: 8px; /* 見出し→商品→カード = 8 */
  }
  /* 商品画像: PC用を隠しSP用を表示（見出しと特長カードの間） */
  .lp-trans .mv__product { display: none; }
  .lp-trans .mv__sp-product {
    display: block;
    width: 100%;
    aspect-ratio: 343 / 202;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    background: radial-gradient(ellipse closest-side at 50% 50%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .lp-trans .mv__sp-product img {
    position: absolute;
    left: -26.72%;
    top: -66.68%;
    width: 153.38%;
    height: 260.45%;
    max-width: none;
    object-fit: contain;
  }

  /* 見出し: バッジ・タイトル中央 */
  .lp-trans .mv__heading {
    gap: 10px;
    align-items: stretch;
  }
  .lp-trans .mv__badge {
    align-self: center;
    padding: 0 20px; /* 矢印(28px)を帯に重ねて燕尾を密着させる */
  }
  .lp-trans .mv__badge-text {
    font-size: 14px;
    letter-spacing: 0.56px;
    padding: 4px 20px;
    white-space: nowrap;
  }
  .lp-trans .mv__badge-arrow {
    top: 4px;
    width: 28px;
    height: 27px;
  }
  .lp-trans .mv__title {
    text-align: center;
    letter-spacing: 1.04px;
  }
  .lp-trans .mv__title-line,
  .lp-trans .mv__title-sm,
  .lp-trans .mv__title-lg {
    font-size: 26px;
  }

  /* 特長カード: 110px固定・折返し・中央 */
  .lp-trans .mv__cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
  .lp-trans .mv__card {
    flex: 0 0 110px;
    width: 110px;
    min-width: 0;
    padding: 4px 14px;
  }
  .lp-trans .mv__card-title {
    font-size: 14px;
    line-height: 24px;
  }
  .lp-trans .mv__card-desc {
    font-size: 10px;
  }

  /* 下部ブロック: カード→キャッチ16 / キャッチ→連絡先32 */
  .lp-trans .mv__lower {
    gap: 32px;
    margin-top: 8px; /* content gap 8 + 8 = 16 */
  }
  .lp-trans .mv__catch {
    gap: 12px;
    align-items: flex-end;
  }
  .lp-trans .mv__catch-laurel {
    width: 28px;
    height: 101px;
  }
  .lp-trans .mv__catch-text {
    flex: 1 0 0;
    min-width: 0;
    text-align: center; /* SP: キャッチを中央揃え */
  }
  .lp-trans .mv__catch-br-sp {
    display: inline; /* SPでは「創業60年以上続く」の後で改行 */
  }
  .lp-trans .mv__catch-main {
    font-size: 14px;
    white-space: nowrap; /* 「信頼と実績」を折り返さない（Figma準拠） */
  }
  .lp-trans .mv__catch-main strong {
    font-size: 26px;
  }
  .lp-trans .mv__catch-sub {
    font-size: 12px;
  }

  /* 連絡先: PC用を隠しSP用（タップ発信ボタン）を表示 */
  .lp-trans .mv__contact { display: none; }
  .lp-trans .mv__sp-contact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 24px;
    background: var(--trans-white);
    border: 1px solid var(--trans-main);
    border-radius: 12px;
  }
  .lp-trans .mv__sp-ribbon {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--trans-white);
    border: 1px solid var(--trans-main);
    border-radius: 40px;
    padding: 8px 24px;
    font-size: 12px;
    letter-spacing: 0.24px;
    color: var(--trans-main);
    white-space: nowrap;
  }
  .lp-trans .mv__sp-note {
    font-size: 12px;
    letter-spacing: 0.24px;
    color: #949494;
    white-space: nowrap;
  }
  .lp-trans .mv__sp-tel {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 63px;
    border: 2px solid var(--trans-main);
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
    text-decoration: none;
  }
  .lp-trans .mv__sp-tel-label {
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    color: var(--trans-main);
  }
  .lp-trans .mv__sp-tel-num {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    color: var(--trans-main);
  }
  .lp-trans .mv__sp-tel-num img {
    width: 20px;
    height: 20px;
  }
  .lp-trans .mv__sp-telinfo {
    margin-top: 8px;
    font-size: 12px;
    color: #555;
    white-space: nowrap;
  }
  .lp-trans .mv__sp-form {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 295px;
    max-width: 100%;
    height: 56px;
    background: var(--trans-main);
    border-radius: 6px;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.25));
    text-decoration: none;
  }
  .lp-trans .mv__sp-form img {
    width: 27px;
    height: 24px;
  }
  .lp-trans .mv__sp-form span {
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: var(--trans-white);
  }

  /* --- 課題提起 --- */
  .lp-trans .problem__inner {
    width: 100%;
    zoom: normal;
    gap: 28px;
    padding: 48px 16px 0;
  }
  .lp-trans .problem__title {
    font-size: 24px;
  }
  .lp-trans .problem__bar {
    height: 40px;
  }
  .lp-trans .problem__cards {
    flex-wrap: wrap;
    gap: 16px;
  }
  .lp-trans .problem__card {
    flex: 1 1 100%;
    width: 100%;
    padding: 20px 16px;
    gap: 16px;
  }
  .lp-trans .problem__card-title {
    font-size: 18px;
  }
  .lp-trans .problem__card-desc {
    font-size: 14px;
  }

  /* --- ソリューション --- */
  .lp-trans .solution {
    padding: 0 16px 48px; /* SP: 左右マージン16px（他セクションと統一） */
  }
  .lp-trans .solution__inner {
    width: 100%;
    zoom: normal;
    gap: 28px;
  }
  .lp-trans .solution__title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .lp-trans .solution__bar {
    width: 48px;
  }
  .lp-trans .solution__intro {
    gap: 20px;
    padding: 24px 16px;
  }
  .lp-trans .solution__lead {
    font-size: 18px;
  }
  .lp-trans .solution__media {
    flex-direction: column;
    width: 100%;
    max-width: 326px;
  }
  .lp-trans .solution__media-photo,
  .lp-trans .solution__media-product {
    width: 100%;
  }
  .lp-trans .solution__caption {
    font-size: 14px;
    text-align: left;
  }
  .lp-trans .solution__caption-line {
    display: inline;
  }
  .lp-trans .solution__cards {
    gap: 16px;
  }
  .lp-trans .solution__card {
    width: 100%;
    max-width: 400px;
    gap: 16px;
    padding: 20px 16px;
  }
  .lp-trans .solution__badge {
    font-size: 20px;
  }
  .lp-trans .solution__card-title {
    font-size: 18px;
  }
  .lp-trans .solution__card-desc {
    font-size: 14px;
  }

  /* --- REASON --- */
  .lp-trans .reason {
    padding: 48px 16px;
  }
  .lp-trans .reason__inner {
    width: 100%;
    zoom: normal;
    gap: 28px;
  }
  .lp-trans .reason__title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .lp-trans .reason__bar {
    width: 48px;
  }
  .lp-trans .reason__cards {
    gap: 16px;
  }
  .lp-trans .reason__card {
    width: 100%;
    max-width: 440px;
    min-height: 0;
    gap: 12px;
    padding: 20px 16px;
  }
  .lp-trans .reason__card-title {
    font-size: 16px;
  }
  .lp-trans .reason__card-title--lg {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
  .lp-trans .reason__card-desc {
    font-size: 14px;
  }

  /* --- スタッフ --- */
  .lp-trans .staff {
    padding: 48px 16px;
  }
  .lp-trans .staff__inner {
    width: 100%;
    zoom: normal;
    gap: 28px;
  }
  .lp-trans .staff__title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .lp-trans .staff__bar {
    width: 48px;
  }
  .lp-trans .staff-card {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 16px;
  }
  .lp-trans .staff-card__photo {
    align-self: center;
    width: 200px;
    height: auto;
  }
  .lp-trans .staff-card__info {
    flex: none;       /* 縦並びで flex:1 0 0 が高さ0に潰れるのを防ぐ */
    width: 100%;
    overflow: visible;
  }
  .lp-trans .staff-card__name {
    font-size: 20px;
  }
  .lp-trans .staff-card__dept,
  .lp-trans .staff-card__desc {
    font-size: 14px;
  }
  .lp-trans .staff-card__certs {
    flex-wrap: wrap;
  }

  /* --- CTA --- */
  .lp-trans .trans-cta__inner {
    gap: 20px;
    padding: 32px 16px;
  }
  .lp-trans .trans-cta__lead-text {
    font-size: 13px;
    white-space: normal;
    text-align: center;
  }
  .lp-trans .trans-cta__title {
    font-size: 28px;
    white-space: normal;
    text-align: center;
  }
  .lp-trans .trans-cta__pills {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .lp-trans .trans-cta__pill {
    font-size: 13px;
    padding: 8px 16px;
  }
  .lp-trans .trans-cta__actions {
    flex-direction: column;
    gap: 16px;
  }
  .lp-trans .trans-cta__form {
    flex: none;
    width: 100%;
    max-width: 320px;
  }
  /* 電話表示をheroと同じタップ発信ボタンに */
  .lp-trans .trans-cta__tel {
    display: none;
  }
  .lp-trans .trans-cta__tel-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
  }
  .lp-trans .trans-cta__tel-sp-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 63px;
    background: var(--trans-white);
    border: 2px solid var(--trans-main);
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
    text-decoration: none;
  }
  .lp-trans .trans-cta__tel-sp-label {
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    color: var(--trans-main);
  }
  .lp-trans .trans-cta__tel-sp-num {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    color: var(--trans-main);
  }
  .lp-trans .trans-cta__tel-sp-num img {
    width: 20px;
    height: 20px;
  }
  .lp-trans .trans-cta__tel-sp-hours {
    font-size: 12px;
    color: var(--trans-white);
  }

  /* --- 対応施設 --- */
  .lp-trans .facilities {
    padding: 48px 16px;
  }
  .lp-trans .facilities__inner {
    gap: 28px;
  }
  .lp-trans .facilities__title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .lp-trans .facilities__bar {
    width: 48px;
  }
  .lp-trans .facilities__lead {
    font-size: 15px;
  }
  .lp-trans .facilities__grid {
    gap: 16px 12px;
  }
  .lp-trans .facility {
    width: calc(50% - 6px);
    padding: 6px;
  }
  .lp-trans .facility__icon {
    width: 80px;
    height: 80px;
  }
  .lp-trans .facility__icon img {
    width: 48px;
    height: 48px;
  }
  .lp-trans .facility:nth-child(5) .facility__icon img {
    width: 66px;
    height: 66px;
  }
  .lp-trans .facility:nth-child(8) .facility__icon img {
    width: 58px;
    height: 58px;
  }
  .lp-trans .facility__name {
    font-size: 16px;
  }
  .lp-trans .facility__desc {
    font-size: 13px;
    white-space: normal;
    text-align: center;
  }

  /* --- 場面・用途 --- */
  .lp-trans .usecase {
    padding: 48px 16px;
  }
  .lp-trans .usecase__inner {
    gap: 28px;
  }
  .lp-trans .usecase__title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .lp-trans .usecase__bar {
    width: 48px;
  }
  .lp-trans .usecase__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-trans .usecase-card {
    padding: 24px 16px;
  }
  .lp-trans .usecase-card__title {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
  .lp-trans .usecase-card__desc {
    font-size: 15px;
  }

  /* --- 主な特徴＋ラインナップ＋比較 --- */
  .lp-trans .spec {
    padding: 48px 16px;
  }
  .lp-trans .spec__inner {
    gap: 32px;
  }
  .lp-trans .spec__title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .lp-trans .spec__bar {
    width: 48px;
  }
  .lp-trans .features {
    flex-direction: column;
    gap: 24px;
  }
  .lp-trans .features__media {
    width: 100%;
    flex: none;
    height: 240px;
  }
  .lp-trans .features__media img {
    height: 200px;
  }
  .lp-trans .features__body {
    flex: none;
    width: 100%;
  }
  .lp-trans .features__heading {
    font-size: 20px;
  }
  .lp-trans .features__item {
    font-size: 16px;
  }
  /* テーブルは横スクロールで崩さない */
  .lp-trans .lineup__tables {
    flex-direction: column;
    gap: 28px;
  }
  .lp-trans .lineup-block {
    flex: none;
    width: 100%;
  }
  .lp-trans .lineup-table__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lp-trans .lineup-table {
    width: 560px;
  }
  .lp-trans .compare__wrap {
    overflow: visible;
  }
  .lp-trans .compare-table__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lp-trans .compare-table {
    width: 720px;
  }
  .lp-trans .compare__badge {
    left: calc(180px + (720px - 180px) / 6);
    font-size: 14px;
  }
  .lp-trans .compare-table__corner,
  .lp-trans .compare-table__rowlabel {
    width: 120px;
  }
  .lp-trans .compare-table__col-main {
    font-size: 18px;
  }
  .lp-trans .compare-table__col-other {
    font-size: 14px;
  }
  .lp-trans .compare-table__rowlabel {
    font-size: 15px;
    padding: 12px;
  }
  .lp-trans .compare-table tbody td {
    font-size: 14px;
    padding: 12px;
  }
  .lp-trans .compare-table__main {
    font-size: 15px !important;
  }

  /* --- 品質エビデンス --- */
  .lp-trans .quality {
    padding: 48px 16px;
  }
  .lp-trans .quality__inner {
    gap: 28px;
  }
  .lp-trans .quality__title {
    font-size: 22px;
    letter-spacing: 0.88px;
  }
  .lp-trans .quality__lead {
    font-size: 15px;
    letter-spacing: 0.6px;
    text-align: left;
  }
  .lp-trans .quality__lead-line {
    display: inline;
  }
  .lp-trans .quality__grid,
  .lp-trans .quality__grid--lower {
    flex-direction: column;
    gap: 16px;
  }
  .lp-trans .quality-item,
  .lp-trans .quality-item--fixed {
    flex: none; /* 縦並びで flex:1 0 0 が高さ0に潰れるのを防ぐ */
    width: 100%;
    padding: 24px 16px;
  }
  .lp-trans .quality-item__title {
    font-size: 20px;
    white-space: normal;
  }
  .lp-trans .quality-item__desc {
    font-size: 15px;
  }

  /* --- 導入事例 --- */
  .lp-trans .cases {
    padding: 48px 16px;
  }
  .lp-trans .cases__inner {
    gap: 32px;
  }
  .lp-trans .cases__title {
    font-size: 22px;
    letter-spacing: 0.88px;
  }
  .lp-trans .cases__list {
    gap: 32px;
  }
  .lp-trans .case-card {
    width: 100%;
    padding: 32px 16px 20px;
    gap: 16px;
  }
  .lp-trans .case-card__label {
    top: -22px;
    left: 16px;
    padding: 4px 14px;
    font-size: 20px;
    letter-spacing: 0.8px;
  }
  .lp-trans .case-card__name {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
  .lp-trans .case-card__meta {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
  .lp-trans .case-card__rows {
    gap: 16px;
  }
  .lp-trans .case-card__row {
    flex-direction: column;
    gap: 8px;
  }
  .lp-trans .case-card__text {
    font-size: 15px;
    letter-spacing: 0.6px;
  }

  /* ご依頼の流れ */
  .lp-trans .flow {
    padding: 48px 16px;
  }
  .lp-trans .flow__inner {
    gap: 32px;
  }
  .lp-trans .flow__title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .lp-trans .flow__row {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: stretch; /* 各行のカード高さを揃える */
  }
  .lp-trans .flow-step {
    flex: 1 1 calc(50% - 6px);
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
  .lp-trans .flow-step__arrow {
    display: none;
  }
  .lp-trans .flow-step__label {
    font-size: 14px;
  }
  .lp-trans .flow-step__desc {
    font-size: 12px;
    white-space: normal;
  }

  /* 小川電機について */
  .lp-trans .about {
    padding: 48px 16px;
  }
  .lp-trans .about__card {
    gap: 32px;
    padding: 24px 16px;
    border-radius: 10px;
  }
  .lp-trans .about__title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .lp-trans .about__facts {
    flex-direction: column;
    gap: 12px;
  }
  .lp-trans .about-fact {
    padding: 20px 16px;
  }
  .lp-trans .about-fact__value {
    font-size: 32px;
  }
  .lp-trans .about__row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .lp-trans .about__photo {
    width: 100%;
  }
  .lp-trans .about__text p {
    font-size: 16px;
    letter-spacing: 0.64px;
  }

  /* FAQ */
  .lp-trans .faq {
    padding: 48px 16px;
  }
  .lp-trans .faq__inner {
    gap: 28px;
  }
  .lp-trans .faq__title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .lp-trans .faq__card {
    padding: 16px;
    border-radius: 10px;
  }
  .lp-trans .faq__q {
    gap: 10px;
    padding: 14px 12px;
  }
  .lp-trans .faq__q-mark,
  .lp-trans .faq__q-text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
  .lp-trans .faq__a {
    gap: 12px;
    padding: 14px 12px;
  }
  .lp-trans .faq__a-mark {
    font-size: 16px;
  }
  .lp-trans .faq__a-text {
    font-size: 15px;
    letter-spacing: 0.6px;
  }

  /* 会社情報 */
  .lp-trans .company-info {
    padding: 48px 16px;
  }
  .lp-trans .company-info__card {
    gap: 28px;
    padding: 24px 16px;
    border-radius: 10px;
  }
  .lp-trans .company-info__title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .lp-trans .company-info__table {
    width: 100%;
  }
  .lp-trans .company-info__row {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 0;
  }
  .lp-trans .company-info__label {
    width: auto;
    font-size: 14px;
  }
  .lp-trans .company-info__value {
    font-size: 15px;
    line-height: 22px;
  }

  /* --- footer (Figma 1:1483) --- */
  .lp-trans .trans-footer__inner {
    height: auto;
    padding: 32px 16px 28px;
  }
  .lp-trans .trans-footer__logo {
    width: 180px;
    height: auto;
  }
  .lp-trans .trans-footer__privacy {
    margin-top: 18px;
    font-size: 12px;
  }
  .lp-trans .trans-footer__copyright {
    margin-top: 16px;
    font-size: 10px;
    text-align: center;
  }
}
