@charset "UTF-8";
/* ============================================================
   GMOクラウドEC — Design Tokens
   Source: makeshop-jp/design-gmocloudec (WordPress theme)
   ============================================================ */
/* ----------------------------------------------------------
   Web Fonts  ※ Google Fonts CDN で読み込み（index.html <link> 参照）
   ---------------------------------------------------------- */
/* ----------------------------------------------------------
   Base Color Palette
   ---------------------------------------------------------- */
:root {
  /* Blues */
  --color-blue-primary: #005BAC; /* logo, main brand blue */
  --color-blue-dark: #08408A; /* header links, btn-electric--blue */
  --color-blue-medium: #147AC8; /* table headers, body links */
  --color-blue-light: #2883EB; /* contact CTA */
  --color-blue-tel: #096EBD; /* telephone number */
  --color-blue-sky: #3ADFFD; /* gradient start (blue CTA) */
  --color-blue-nav: #127FAD; /* indicator, sub-nav */
  --color-blue-indicator: #9FCDE1; /* indicator bar */
  /* Orange / Red CTA */
  --color-orange-start: #fa6e30; /* gradient start (primary CTA) */
  --color-orange-end: #ef380e; /* gradient end (primary CTA) */
  --color-orange-shadow: #971111; /* pushdown 3D shadow */
  --color-red-shadow: #C72C09; /* badge/period shadow */
  /* Product Plan Colors */
  --color-plan-enterprise: #C6951A; /* Enterprise plan – gold */
  --color-plan-gold-light: #ffc431; /* gradient start for yellow btn */
  --color-plan-cloud: #4849B7; /* CloudEC plan – blue-purple */
  --color-plan-cloud-deep: #553991; /* BtoB / deep purple */
  --color-plan-cloud-light: #885be8; /* purple gradient start */
  --color-plan-package: #BA3E00; /* Package / Auction – red-brown */
  --color-plan-brown-dark: #5D5121; /* Brown button variant */
  /* Text */
  --color-text-body: #666666;
  --color-text-heading: #333333;
  --color-text-dark: #1e1e1e;
  --color-text-muted: #939393;
  --color-text-subtle: #707070;
  /* Backgrounds */
  --color-bg-white: #ffffff;
  --color-bg-light: #f4f6f7;
  --color-bg-gray: #F2F2F2;
  --color-bg-offwhite: #fafcfd;
  --color-bg-dark: #1e1e1e; /* desktop dropdown nav */
  /* Borders */
  --color-border: #e5e6e6;
  --color-border-light: #D5D5D5;
  --color-border-mid: #bfbfbf;
  --color-border-dark: #6e6e6e;
  /* Tags (pill labels) */
  --color-tag-enterprise: #C6951A;
  --color-tag-package: #BA3E00;
  --color-tag-cloud: #4849B7;
  --color-tag-gray: #afb0b1;
  --color-tag-alert: #ff6969;
  /* Gradients (as custom props for convenience) */
  --gradient-cta: linear-gradient(270deg, #fa6e30 0%, #ef380e 100%);
  --gradient-yellow: linear-gradient(270deg, #ffc431 0%, #c6951a 100%);
  --gradient-purple: linear-gradient(270deg, #885be8 0%, #553991 100%);
  --gradient-blue: linear-gradient(270deg, #3ADFFD 0%, #005BAC 100%);
  /* Shadows */
  --shadow-card: 1px 1px 15px rgba(0,0,0,0.06);
  --shadow-hover: 1px 1px 15px rgba(0,0,0,0.35);
  --shadow-popup: 1px 1px 15px rgba(0,0,0,0.30);
  /* Border Radius */
  --radius-btn: 30px; /* standard button pill */
  --radius-btn-lg: 35px; /* large CTA pill */
  --radius-card: 0px; /* content cards are flat-edged */
  --radius-subplan: 10px; /* subplan mini cards */
  /* Spacing scale (rem-based) */
  --space-xs: 0.8rem;
  --space-sm: 1.5rem;
  --space-md: 2.0rem;
  --space-lg: 3.0rem;
  --space-xl: 4.0rem;
  --space-2xl: 6.0rem;
  --space-3xl: 9.0rem;
  /* Typography scale */
  --font-family-base: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック', YuGothic, 'メイリオ', Meiryo, sans-serif;
  --font-size-xs: 1.0rem; /* 10px */
  --font-size-sm: 1.2rem; /* 12px */
  --font-size-base: 1.4rem; /* 14px mobile */
  --font-size-md: 1.6rem; /* 16px desktop base */
  --font-size-lg: 1.8rem; /* 18px */
  --font-size-xl: 2.0rem; /* 20px */
  --font-size-2xl: 2.4rem; /* 24px */
  --font-size-3xl: 2.8rem; /* 28px */
  --font-size-4xl: 3.2rem; /* 32px */
  --font-size-5xl: 3.6rem; /* 36px */
  --font-size-6xl: 4.4rem; /* 44px */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --line-height-base: 1.75;
  --line-height-tight: 1.2;
  --line-height-heading: 1.4;
  --letter-spacing-base: 0.056em;
  --letter-spacing-tight: 0.009em;
  /* Container */
  --container-max: 1240px;
  --container-wide: 1640px;
  --container-full: 1790px;
  --container-padding: 20px;
  /* Header heights */
  --header-height-sp: 60px;
  --header-height-tab: 90px;
  --header-height-pc: 113px;
  /* Transitions */
  --transition-fast: 0.1s ease-in-out;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-anim: 1s ease;
}

/* ----------------------------------------------------------
   Semantic / Usage-Oriented Variables
   ---------------------------------------------------------- */
:root {
  /* Text roles */
  --text-primary: var(--color-text-heading);
  --text-secondary: var(--color-text-body);
  --text-muted: var(--color-text-muted);
  --text-link: var(--color-text-body);
  --text-link-hover: #0578a7;
  --text-inverse: var(--color-bg-white);
  /* Brand accent */
  --accent-primary: var(--color-blue-primary);
  --accent-secondary: var(--color-orange-end);
  --accent-cta: var(--gradient-cta);
  /* Surfaces */
  --surface-page: var(--color-bg-white);
  --surface-section: var(--color-bg-light);
  --surface-card: var(--color-bg-white);
  --surface-nav: var(--color-bg-dark);
  /* Interactive */
  --btn-primary-bg: var(--gradient-cta);
  --btn-primary-border: var(--color-orange-end);
  --btn-primary-color: var(--color-bg-white);
  --btn-secondary-bg: var(--color-blue-dark);
  --btn-secondary-border: var(--color-blue-dark);
  --btn-secondary-color: var(--color-bg-white);
}

/* ----------------------------------------------------------
   Heading & Body Semantic Classes
   ---------------------------------------------------------- */
.h-display {
  font-family: var(--font-family-base);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-base);
  color: var(--text-primary);
}

.h1 {
  font-family: var(--font-family-base);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-heading);
  color: var(--text-primary);
}

.h2 {
  font-family: var(--font-family-base);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-heading);
  color: var(--text-primary);
}

.h3 {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  color: var(--text-primary);
}

.h4 {
  font-family: var(--font-family-base);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  color: var(--text-primary);
}

.body-text {
  font-family: var(--font-family-base);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  color: var(--text-secondary);
}

.body-small {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-base);
  color: var(--text-secondary);
}

.caption {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  color: var(--text-muted);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--fz-body);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  color: var(--color-text-body);
  background: var(--color-bg-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

/* ===== LP固有トークン（BtoB ECカラー） ===== */
:root {
  --btob-primary: var(--color-plan-cloud-deep); /* #553991 */
  --btob-light: #f0ebfb;
  --btob-dark: #3a2568;
  /* ===== タイポグラフィスケール ===== */
  --fz-caption: 1.2rem;
  --fz-sm: 1.4rem;
  --fz-body: 1.6rem;
  --fz-h4: 2.0rem;
  --fz-h3: 2.4rem;
  --fz-h2: 3.0rem;
  --fz-h1: 3.4rem;
  --fz-hero: 4.2rem;
  --lh-body: 1.7;
  --lh-tight: 1.4;
  --btob-grad: linear-gradient(270deg, var(--color-plan-cloud-light) 0%, var(--color-plan-cloud-deep) 100%);
}

/* ===== LAYOUT ===== */
.l-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.l-section {
  padding: 6rem 0;
}

.l-section--gray {
  background: var(--color-bg-light);
}

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

/* ===== SECTION HEADING ===== */
.c-section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.c-section-head--left {
  text-align: left;
}

.c-section-head__label {
  display: inline-block;
  font-size: var(--fz-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.12em;
  color: var(--btob-primary);
  background: var(--btob-light);
  padding: 0.3rem 1.2rem;
  margin-bottom: 1.2rem;
}

.c-section-head__title {
  font-size: var(--fz-h2);
  font-weight: var(--font-weight-black);
  color: var(--color-text-heading);
  line-height: var(--line-height-heading);
  margin-bottom: 1.2rem;
}

.c-section-head__title em {
  font-style: normal;
  color: var(--btob-primary);
}

.c-section-head__bar {
  width: 4rem;
  height: 0.3rem;
  background: var(--btob-primary);
  margin: 0 auto 1.6rem;
}

.c-section-head--left .c-section-head__bar {
  margin-left: 0;
}

.c-section-head__desc {
  font-size: var(--fz-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  max-width: 100%;
  margin: 0 auto;
}

.c-section-head--left .c-section-head__desc {
  margin-left: 0;
}

/* ===== BUTTONS ===== */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: var(--lh-tight);
}

/* Primary CTA: オレンジ赤グラデーション＋3D押下 */
.c-btn--primary {
  position: relative;
  background: var(--gradient-cta);
  color: #fff;
  border-radius: var(--radius-btn-lg);
  padding: 1.4rem 3.6rem;
  font-size: var(--fz-body);
  overflow: visible;
  border: 2px solid var(--color-orange-end);
}

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

/* Secondary: ブルー */
.c-btn--secondary {
  background: var(--color-blue-dark);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 1.2rem 2.8rem;
  font-size: var(--fz-body);
  border: 2px solid var(--color-blue-dark);
}

.c-btn--secondary:hover {
  background: #fff;
  color: var(--color-blue-dark);
  opacity: 1;
}

/* Ghost: BtoB紫 */
.c-btn--ghost-purple {
  background: transparent;
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 1.2rem 2.8rem;
  font-size: var(--fz-body);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.c-btn--ghost-purple:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  opacity: 1;
}

/* Large size modifier */
.c-btn--lg {
  padding: 1.8rem 4.4rem;
  font-size: var(--fz-h4);
}

/* ===== HEADER ===== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height-pc);
  transition: box-shadow var(--transition-base);
}

.l-header.is-scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 2.4rem;
}

.l-header__logo img {
  height: 2.8rem;
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 100%;
}

.l-header__nav-link {
  padding: 0 1rem;
  font-size: var(--fz-body);
  color: var(--color-text-heading);
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.l-header__nav-link:hover {
  color: var(--btob-primary);
  opacity: 1;
}

.l-header__right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.l-header__tel {
  text-align: right;
  line-height: var(--lh-tight);
}

.l-header__tel-num {
  display: block;
  font-size: var(--fz-h4);
  font-weight: var(--font-weight-black);
  color: var(--color-blue-tel);
  white-space: nowrap;
}

.l-header__tel-num .fa {
  margin-right: 0.4rem;
}

.l-header__tel-hours {
  display: block;
  font-size: var(--fz-caption);
  color: var(--color-text-muted);
}

.l-header__cta .c-btn--primary {
  padding: 0.9rem 1.6rem;
  font-size: var(--fz-caption);
}

.l-header__cta .c-btn--primary::after {
  display: none;
}

/* Hamburger */
.l-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.8rem;
  background: none;
  border: none;
}

.l-header__hamburger span {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background: var(--color-text-heading);
  border-radius: 0.2rem;
  transition: all var(--transition-base);
}

/* ===== MOBILE NAV ===== */
.l-mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height-sp);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  z-index: 999;
  padding: 2rem 2.4rem;
  box-shadow: var(--shadow-popup);
}

.l-mobile-nav.is-open {
  display: block;
}

.l-mobile-nav a {
  display: block;
  padding: 1.2rem 0;
  font-size: var(--fz-body);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  border-bottom: 1px solid var(--color-border);
}

.l-mobile-nav .c-btn--primary {
  display: flex;
  width: 100%;
  margin-top: 1.6rem;
  justify-content: center;
}

.l-mobile-nav .c-btn--primary::after {
  display: none;
}

/* ===== HERO ===== */
.p-hero {
  padding-top: var(--header-height-pc);
  background-image: linear-gradient(150deg, rgba(42, 15, 80, 0.7) 0%, rgba(58, 26, 110, 0.7) 40%, rgba(85, 57, 145, 0.7) 100%), url("../images/btob/bg_btob_hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.p-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(136, 91, 232, 0.18) 0%, transparent 55%), radial-gradient(ellipse at 10% 90%, rgba(85, 57, 145, 0.15) 0%, transparent 50%);
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
  display: flex;
  gap: 80px;
  align-items: center;
}

.p-hero__lead,
.p-hero__actions {
  flex: 0 0 50%;
  min-width: 0;
}

.p-hero__lead {
  display: flex;
  flex-direction: column;
}

.p-hero__actions {
  display: flex;
  flex-direction: column;
}

.p-hero__tag {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d4bfff;
  font-size: var(--fz-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  padding: 0.6rem 1.4rem;
  border-radius: 10rem;
  margin-bottom: 2.4rem;
}

.p-hero__tag .fa {
  color: #fbbf24;
}

.p-hero__title {
  font-size: clamp(var(--fz-h4), 4vw, var(--fz-hero));
  font-weight: var(--font-weight-black);
  line-height: var(--lh-tight);
  color: #fff;
  margin-bottom: 2.4rem;
  max-width: 72rem;
}

.p-hero__title .u-accent {
  display: block;
  width: 100%;
  font-size: 5.4rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 1rem;
  border-radius: 0.4rem;
  text-align: center;
}

.p-hero__desc {
  font-size: clamp(var(--fz-body), 1.8vw, var(--fz-h4));
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-body);
  max-width: 68rem;
  margin-bottom: 3.2rem;
}

.p-hero__badges {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 4.8rem;
}

.p-hero__badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: var(--fz-h4);
  font-weight: var(--font-weight-bold);
  padding: 0.8rem 1.6rem;
  border-radius: 10rem;
}

.p-hero__badge .fa {
  color: #fbbf24;
}

.p-hero__cta-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.4rem;
  align-items: center;
}

.p-hero__cta-group .c-btn {
  font-size: var(--fz-body);
}

.p-hero__note {
  margin-top: 1.4rem;
  font-size: var(--fz-caption);
  color: rgba(255, 255, 255, 0.5);
}

/* ===== STATS BAR ===== */
.p-stats {
  background: var(--color-blue-primary);
  padding: 0;
}

.p-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container-max);
  margin: 0 auto;
}

.p-stats__item {
  text-align: center;
  padding: 2.4rem 1.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.p-stats__item:last-child {
  border-right: none;
}

.p-stats__num {
  font-size: clamp(var(--fz-h3), 3vw, var(--fz-h1));
  font-weight: var(--font-weight-black);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.p-stats__label {
  font-size: var(--fz-caption);
  color: rgba(255, 255, 255, 0.8);
}

/* ===== PROBLEM ===== */
.p-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}

.p-problem-item {
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.p-problem-item__icon {
  width: 4rem;
  height: 4rem;
  background: var(--btob-light);
  color: var(--btob-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-h4);
  flex-shrink: 0;
}

.p-problem-item__text {
  font-size: var(--fz-body);
  color: var(--color-text-heading);
  line-height: var(--lh-body);
}

.p-problem-cta {
  background: var(--btob-primary);
  padding: 2.4rem 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.p-problem-cta__text {
  font-size: var(--fz-h4);
  font-weight: var(--font-weight-black);
  color: #fff;
  margin-bottom: 0.4rem;
}

.p-problem-cta__sub {
  font-size: var(--fz-body);
  color: rgba(255, 255, 255, 0.8);
}

/* ===== REASONS ===== */
.p-reason-intro {
  font-size: var(--fz-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  max-width: 80rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.p-reason-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 36rem;
  gap: 4rem;
  align-items: center;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 3.6rem 4rem;
  margin-bottom: 2.4rem;
  overflow: hidden;
  border-radius: 20px;
}

.p-reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
}

.p-reason-card > * {
  position: relative;
  z-index: 1;
}

.p-reason-card--bg01::before {
  background-image: url("../images/btob/bg_reason_01.png");
}

.p-reason-card--bg02::before {
  background-image: url("../images/btob/bg_reason_02.png");
}

.p-reason-card--bg03::before {
  background-image: url("../images/btob/bg_reason_03.png");
}

.p-reason-card--reverse {
  grid-template-columns: 36rem 1fr;
}

.p-reason-card--reverse .p-reason-card__content {
  order: 2;
}

.p-reason-card--reverse .p-reason-card__visual {
  order: 1;
}

.p-reason-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--btob-primary);
  color: #fff;
  font-size: var(--fz-caption);
  font-weight: var(--font-weight-bold);
  padding: 0.5rem 1.4rem;
  border-radius: 10rem;
  margin-bottom: 1.6rem;
}

.p-reason-card__title {
  font-size: var(--fz-h4);
  font-weight: var(--font-weight-black);
  color: var(--color-text-heading);
  line-height: var(--line-height-heading);
  margin-bottom: 1.4rem;
}

.p-reason-card__desc {
  font-size: var(--fz-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  margin-bottom: 1.6rem;
}

.p-reason-card__points {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-reason-card__point {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: var(--fz-body);
  color: var(--color-text-body);
  font-weight: var(--font-weight-bold);
}

.p-reason-card__point .fa {
  color: var(--btob-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.p-reason-card__visual {
  background: var(--btob-light);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-reason-visual__item {
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.p-reason-visual__icon {
  width: 3.6rem;
  height: 3.6rem;
  background: var(--btob-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-body);
  flex-shrink: 0;
}

.p-reason-visual__text {
  font-size: var(--fz-body);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  line-height: var(--lh-tight);
}

.p-reason-visual__sub {
  font-size: var(--fz-caption);
  color: var(--color-text-muted);
}

.p-reason-visual__arrow {
  text-align: center;
  color: var(--btob-primary);
  font-size: var(--fz-h4);
  padding: 0.2rem 0;
}

/* ===== INTEGRATION ===== */
.p-integration-diagram {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 3.2rem;
  align-items: center;
  margin-bottom: 2.4rem;
}

.p-integration-core {
  background: var(--btob-primary);
  color: #fff;
  text-align: center;
  padding: 3.2rem 2rem;
  box-shadow: var(--shadow-card);
}

.p-integration-core__title {
  margin-bottom: 0.6rem;
}

.p-integration-core__title img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.p-integration-core__sub {
  font-size: var(--fz-caption);
  opacity: 0.85;
}

.p-integration-systems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.p-integration-system {
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1.8rem 1.6rem;
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.4rem;
  align-items: center;
}

.p-integration-system::before {
  content: "→";
  position: absolute;
  left: -1.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--btob-primary);
  font-size: var(--fz-body);
  font-weight: bold;
}

.p-integration-system__icon {
  width: 3.2rem;
  height: 3.2rem;
  background: var(--btob-light);
  color: var(--btob-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-body);
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1;
}

.p-integration-system__name {
  font-size: var(--fz-body);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  margin-bottom: 0;
  line-height: var(--lh-tight);
  grid-column: 2;
  grid-row: 1;
}

.p-integration-system__desc {
  font-size: var(--fz-caption);
  color: var(--color-text-muted);
  line-height: var(--lh-tight);
  grid-column: 2;
  grid-row: 2;
}

.p-integration-note {
  background: #fff;
  border-left: 0.4rem solid var(--btob-primary);
  padding: 1.6rem 2rem;
  font-size: var(--fz-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
}

.p-integration-note strong {
  color: var(--color-text-heading);
}

/* ===== FEATURES ===== */
.p-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.p-feature-card {
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 2.4rem 2rem;
  transition: box-shadow var(--transition-base);
}

.p-feature-card:hover {
  box-shadow: var(--shadow-hover);
}

.p-feature-card__icon {
  width: 5rem;
  height: 5rem;
  background: var(--btob-light);
  color: var(--btob-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-h4);
  margin-bottom: 1.6rem;
}

.p-feature-card__title {
  font-size: var(--fz-body);
  font-weight: var(--font-weight-black);
  color: var(--color-text-heading);
  margin-bottom: 0.8rem;
  line-height: var(--lh-tight);
}

.p-feature-card__desc {
  font-size: var(--fz-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
}

/* Build types */
.p-build-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.p-build-card {
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 3.2rem;
  position: relative;
  overflow: hidden;
}

.p-build-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.4rem;
}

.p-build-card--package::before {
  background: var(--color-blue-dark);
}

.p-build-card--headless::before {
  background: var(--btob-primary);
}

.p-build-card__tag {
  display: inline-block;
  font-size: var(--fz-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  margin-bottom: 1.2rem;
}

.p-build-card--package .p-build-card__tag {
  background: var(--color-blue-dark);
  color: #fff;
}

.p-build-card--headless .p-build-card__tag {
  background: var(--btob-primary);
  color: #fff;
}

.p-build-card__title {
  font-size: var(--fz-h4);
  font-weight: var(--font-weight-black);
  color: var(--color-text-heading);
  margin-bottom: 1.2rem;
  line-height: var(--lh-tight);
}

.p-build-card__desc {
  font-size: var(--fz-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  margin-bottom: 1.6rem;
}

.p-build-card__merits {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-build-card__merit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--fz-body);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
}

.p-build-card__merit .fa {
  color: #16a34a;
}

/* ===== CASES ===== */
.p-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-bottom: 2rem;
}

.p-case-card {
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base);
}

.p-case-card:hover {
  box-shadow: var(--shadow-hover);
}

.p-case-card__head {
  background: var(--btob-primary);
  padding: 2.4rem;
  color: #fff;
}

.p-case-card__company {
  font-size: var(--fz-caption);
  font-weight: var(--font-weight-bold);
  opacity: 0.8;
  margin-bottom: 0.6rem;
}

.p-case-card__title {
  font-size: var(--fz-body);
  font-weight: var(--font-weight-bold);
  line-height: var(--lh-tight);
}

.p-case-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-bg-light);
}

.p-case-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-case-card__body {
  padding: 2.4rem;
}

.p-case-card__result {
  background: var(--btob-light);
  padding: 1.2rem 1.6rem;
  margin-bottom: 1.6rem;
}

.p-case-card__result-label {
  font-size: var(--fz-caption);
  font-weight: var(--font-weight-bold);
  color: var(--btob-primary);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.p-case-card__result-value {
  font-size: var(--fz-h4);
  font-weight: var(--font-weight-black);
  color: var(--btob-primary);
  line-height: var(--lh-tight);
}

.p-case-card__result-sub {
  font-size: var(--fz-caption);
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.p-case-card__points {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-case-card__point {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: var(--fz-body);
  color: var(--color-text-body);
  line-height: var(--lh-tight);
}

.p-case-card__point .fa {
  color: var(--btob-primary);
  font-size: var(--fz-caption);
  margin-top: 0.3rem;
}

.p-cases-note {
  text-align: center;
  font-size: var(--fz-body);
  color: var(--color-text-muted);
}

/* ===== FLOW ===== */
.p-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5.2rem;
}

.p-flow-step {
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 2.8rem 2.2rem;
  text-align: center;
  position: relative;
}

.p-flow-step::after {
  content: "\f054";
  font-family: FontAwesome;
  position: absolute;
  right: -1.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--btob-primary);
  font-size: var(--fz-body);
  z-index: 1;
}

.p-flow-step:nth-child(3)::after,
.p-flow-step:nth-child(6)::after {
  display: none;
}

.p-flow-step__num {
  width: 4.4rem;
  height: 4.4rem;
  background: var(--btob-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--fz-h4);
  font-weight: var(--font-weight-black);
  margin: 0 auto 1.4rem;
}

.p-flow-step__title {
  font-size: var(--fz-body);
  font-weight: var(--font-weight-black);
  color: var(--color-text-heading);
  margin-bottom: 0.8rem;
  line-height: var(--lh-tight);
}

.p-flow-step__desc {
  font-size: var(--fz-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
}

/* Support cards */
.p-support-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.p-support-card {
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: box-shadow var(--transition-base);
}

.p-support-card:hover {
  box-shadow: var(--shadow-hover);
}

.p-support-card__icon {
  width: 5.2rem;
  height: 5.2rem;
  background: var(--btob-light);
  color: var(--btob-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-h4);
  margin: 0 auto 1.4rem;
}

.p-support-card__title {
  font-size: var(--fz-body);
  font-weight: var(--font-weight-black);
  color: var(--color-text-heading);
  margin-bottom: 0.8rem;
}

.p-support-card__desc {
  font-size: var(--fz-caption);
  color: var(--color-text-body);
  line-height: var(--lh-body);
}

/* ===== FAQ ===== */
.p-faq-list {
  max-width: 86rem;
  margin: 0 auto;
}

.p-faq-item {
  border: 1px solid var(--color-border);
  background: #fff;
  margin-bottom: 1.2rem;
}

.p-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2.2rem 2.4rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  transition: background var(--transition-fast);
  font-family: var(--font-family-base);
}

.p-faq-question:hover {
  background: var(--color-bg-light);
}

.p-faq-question.is-open {
  background: var(--btob-light);
}

.p-faq-question__icon {
  width: 2.8rem;
  height: 2.8rem;
  min-width: 2.8rem;
  background: var(--btob-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--fz-body);
  font-weight: var(--font-weight-black);
}

.p-faq-question__text {
  font-size: var(--fz-body);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
  flex: 1;
  line-height: var(--lh-tight);
}

.p-faq-question__arrow {
  color: var(--btob-primary);
  font-size: var(--fz-body);
  transition: transform var(--transition-base);
}

.p-faq-question.is-open .p-faq-question__arrow {
  transform: rotate(180deg);
}

.p-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.p-faq-answer.is-open {
  max-height: 40rem;
}

.p-faq-answer__inner {
  padding: 0 2.4rem 2.2rem 6.8rem;
  font-size: var(--fz-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
}

/* ===== CTA / CONTACT BAND ===== */
.p-contact-band {
  background: var(--color-bg-gray);
  padding: 5.6rem 2rem;
}

.p-contact-band__inner {
  max-width: 100rem;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.p-contact-band__text {
  text-align: center;
}

.p-contact-band__title {
  font-size: var(--fz-h3);
  font-weight: var(--font-weight-black);
  color: var(--color-text-heading);
  margin-bottom: 0.6rem;
}

.p-contact-band__sub {
  font-size: var(--fz-body);
  color: var(--color-text-muted);
}

.p-contact-band__btns {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.p-contact-band__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0.3rem solid var(--color-bg-gray);
  width: 36rem;
  height: 8.8rem;
}

.p-contact-band__tel-num {
  font-size: var(--fz-h3);
  font-weight: var(--font-weight-black);
  color: var(--color-text-heading);
}

.p-contact-band__tel-hours {
  font-size: var(--fz-caption);
  color: var(--color-text-muted);
  margin-top: 0.4rem;
}

.p-contact-band__trust {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 2.8rem;
}

.p-contact-band__trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fz-body);
  color: var(--color-text-body);
}

.p-contact-band__trust-item .fa {
  color: var(--btob-primary);
}

/* ===== FOOTER ===== */
.l-footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.l-footer__nav-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.l-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-bottom: 3.2rem;
}

.l-footer__group-title {
  font-size: var(--fz-body);
  font-weight: var(--font-weight-black);
  color: var(--color-text-heading);
  margin-bottom: 1.2rem;
}

.l-footer__link {
  display: block;
  font-size: var(--fz-caption);
  font-weight: var(--font-weight-light);
  color: var(--color-text-body);
  padding: 0.4rem 0;
}

.l-footer__marks {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.l-footer__marks img {
  height: 5rem;
}

.l-footer__copy {
  padding: 1.6rem 2rem;
  background: #fafcfd;
  text-align: center;
  font-size: var(--fz-caption);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-light);
}

/* ===== FOOTER (WordPress theme footer.php overrides) ===== */
.footer .sns-share-area a,
.footer .gmo-security-footer .corp-sns a {
  display: inline-flex;
  align-items: center;
}

.footer .sns-share-area img,
.footer .gmo-security-footer .corp-sns img {
  width: auto;
  height: 3.2rem;
  display: block;
}

@media (max-width: 480px) {
  .footer .sns-share-area img,
  .footer .gmo-security-footer .corp-sns img {
    height: 2.8rem;
  }
}
/* ===== FLOATING CTA ===== */
.p-float-cta {
  position: fixed;
  bottom: 2.4rem;
  right: 2.4rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.p-float-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.p-float-cta .c-btn--primary {
  padding: 1.2rem 2rem;
  font-size: var(--fz-body);
}

.p-float-cta .c-btn--primary::after {
  display: none;
}

.p-float-cta .c-btn--secondary {
  padding: 1rem 2rem;
  font-size: var(--fz-body);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity var(--transition-anim), transform var(--transition-anim);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-d1 {
  transition-delay: 0.2s;
}

.fade-in-d2 {
  transition-delay: 0.4s;
}

.fade-in-d3 {
  transition-delay: 0.6s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
  .l-header__tel {
    display: none;
  }
  .l-header__hamburger {
    display: flex;
  }
  .l-header {
    height: var(--header-height-tab);
  }
  .p-hero {
    padding-top: var(--header-height-tab);
  }
  .p-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-reason-card,
  .p-reason-card--reverse {
    grid-template-columns: 1fr;
  }
  .p-reason-card--reverse .p-reason-card__content {
    order: 1;
  }
  .p-reason-card--reverse .p-reason-card__visual {
    order: 2;
  }
  .p-integration-diagram {
    grid-template-columns: 1fr;
  }
  .p-integration-system::before {
    display: none;
  }
  .p-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-flow-step:nth-child(2)::after {
    display: none;
  }
  .p-flow-step:nth-child(4)::after {
    display: none;
  }
  .p-support-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-footer__nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 56.25%;
  }
  .l-header {
    height: var(--header-height-sp);
  }
  .l-header__cta {
    display: none;
  }
  .p-hero {
    padding-top: var(--header-height-sp);
    min-height: auto;
  }
  .p-hero__inner {
    padding: 4rem 2rem 6rem;
    flex-direction: column;
    gap: 3.2rem;
  }
  .p-hero__lead,
  .p-hero__actions {
    flex-basis: auto;
    width: 100%;
  }
  .p-hero__title .u-accent {
    font-size: 4.4rem;
  }
  .p-hero__badges {
    margin-bottom: 3.6rem;
  }
  .p-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-stats__item:nth-child(2) {
    border-right: none;
  }
  .p-problem-grid {
    grid-template-columns: 1fr;
  }
  .p-problem-cta {
    flex-direction: column;
    text-align: center;
  }
  .p-reason-card {
    padding: 2.4rem;
  }
  .p-integration-systems {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-features-grid {
    grid-template-columns: 1fr;
  }
  .p-build-types {
    grid-template-columns: 1fr;
  }
  .p-cases-grid {
    grid-template-columns: 1fr;
  }
  .p-flow-steps {
    grid-template-columns: 1fr;
  }
  .p-flow-step::after {
    display: none;
  }
  .p-support-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-contact-band__inner {
    flex-direction: column;
  }
  .p-contact-band__tel {
    width: 100%;
  }
  .c-btn--primary.c-btn--lg,
  .c-btn--ghost-purple.c-btn--lg {
    width: 100%;
  }
  .l-footer__nav-grid {
    grid-template-columns: 1fr 1fr;
  }
  .p-float-cta {
    bottom: 1.6rem;
    right: 1.6rem;
  }
}
@media (max-width: 480px) {
  .p-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-hero__title .u-accent {
    font-size: 3.6rem;
  }
  .p-hero__badges {
    margin-bottom: 2.8rem;
  }
  .p-hero__badge {
    font-size: var(--fz-body);
  }
  .p-hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .p-hero__cta-group .c-btn {
    width: 100%;
    justify-content: center;
  }
  .p-support-cards {
    grid-template-columns: 1fr;
  }
  .l-footer__nav-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=btob-lp.css.map */