/* LIMARKS サービス紹介サイト
   ブランドガイド準拠: メイン #EF7B25 / 文字 #333 / 薄オレンジ #FFF3EA / 薄グレー #F6F2EF / 黒 #111
   余白を広く・情報はカードで・重要語だけ色で強調・1画面1メッセージ */

:root {
  --orange: #EF7B25;
  --orange-deep: #C75F12;
  --pale: #FFF3EA;
  --paper: #FBF8F4;
  --gray: #F6F2EF;
  --ink: #333333;
  --black: #111111;
  --sub: #5c5c5c;
  --faint: #9a948f;
  --line: #E8E2DC;
  --green: #06C755;
  --green-deep: #04a647;
  --r-lg: 24px;
  --r: 16px;
  --shadow: 0 22px 60px rgba(70, 36, 6, .12);
  --shadow-sm: 0 8px 24px rgba(70, 36, 6, .08);
  --wrap: 1120px;
  --font: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: #fff;
  font-size: 16px; line-height: 1.85; letter-spacing: .02em;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
h1, h2, h3, h4 { line-height: 1.45; font-weight: 800; word-break: auto-phrase; line-break: strict; text-wrap: balance; }
p, li, dd, td { line-break: strict; text-wrap: pretty; }
.chapters span, .pstep p, .svc__role, .pat li, .checks li, .dev__tag { word-break: auto-phrase; text-wrap: pretty; }
ul, ol { padding: 0; }
button { font-family: inherit; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sp { display: none; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
em { font-style: normal; color: var(--orange); }
strong { font-weight: 800; }

/* ───────── ボタン */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 16px; line-height: 1.3; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(239, 123, 37, .45); outline-offset: 3px; }
.btn svg { width: 1.25em; height: 1.25em; flex: none; }
.btn--line { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(6, 199, 85, .28); }
.btn--line:hover { background: var(--green-deep); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--orange); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: #2a2a2a; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 19px 36px; font-size: 18px; }
.btn--block { width: 100%; }

.kicker {
  display: inline-block; background: var(--orange); color: #fff; font-weight: 700; font-size: 14px;
  padding: 6px 16px; border-radius: 999px; letter-spacing: .04em;
}
.tag {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--orange-deep); background: var(--pale);
  padding: 4px 11px; border-radius: 6px; line-height: 1.5;
}

/* ───────── ブランドの共通パーツ（ドット・右下ライン） */
.deco-dots {
  position: absolute; pointer-events: none; width: 250px; height: 180px;
  background-image: radial-gradient(rgba(239, 123, 37, .2) 2.2px, transparent 2.8px); background-size: 22px 22px;
}
.deco-lines {
  position: absolute; right: 0; bottom: 0; width: 300px; height: 240px; pointer-events: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='240'><g stroke='%23EF7B25' stroke-opacity='.26' stroke-width='3'><line x1='80' y1='250' x2='330' y2='0'/><line x1='118' y1='250' x2='368' y2='0'/><line x1='156' y1='250' x2='406' y2='0'/><line x1='194' y1='250' x2='444' y2='0'/><line x1='232' y1='250' x2='482' y2='0'/></g></svg>") no-repeat right bottom;
}

/* ───────── ヘッダー */
.hd { position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, .92); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid rgba(0, 0, 0, .05); }
.hd__in { max-width: 1240px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 28px; }
.hd__logo img { height: 26px; width: auto; }
.hd__nav { display: flex; gap: 26px; margin-left: auto; font-size: 14px; font-weight: 700; }
.hd__nav a { text-decoration: none; color: var(--ink); position: relative; padding: 4px 0; }
.hd__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--orange); transform: scaleX(0); transition: transform .2s; }
.hd__nav a:hover::after { transform: scaleX(1); }

/* ───────── セクション共通 */
.sec { padding: 112px 0; position: relative; overflow: hidden; }
.sec--paper { background: var(--paper); }
.sec--gray { background: var(--gray); }
.sec-head { text-align: center; max-width: 780px; margin: 0 auto 56px; position: relative; z-index: 1; }
.sec-kicker { font-size: 13px; font-weight: 800; letter-spacing: .26em; color: var(--orange); }
.sec-head h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 900; margin-top: 8px; }
.sec-head h2::after { content: ""; display: block; width: 56px; height: 5px; border-radius: 3px; background: var(--orange); margin: 22px auto 0; }
.sec-head p { margin-top: 20px; color: var(--sub); }

/* ───────── ファーストビュー */
.fv { position: relative; background: var(--paper); padding: 64px 0 96px; overflow: hidden; }
.fv .deco-dots { top: 24px; right: 24px; }
.fv__in { display: grid; grid-template-columns: 1.12fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.fv__title { font-size: clamp(30px, 3.9vw, 52px); font-weight: 900; line-height: 1.36; letter-spacing: .01em; margin: 22px 0 24px; }
.fv__lead { font-size: clamp(15px, 1.5vw, 18px); color: var(--sub); max-width: 540px; }
.fv__lead strong { color: var(--ink); }
.fv__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.fv__monitor { margin-top: 22px; display: flex; align-items: center; flex-wrap: wrap; gap: 6px 12px; font-size: 14px; color: var(--sub); }
.fv__monitor b { color: var(--orange); font-size: 22px; font-weight: 900; margin: 0 1px; }

.fv__visual { position: relative; aspect-ratio: 560 / 470; }
.dev { position: absolute; }
.dev__screen { position: relative; overflow: hidden; background: #fff; }
.dev__screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; transition: opacity .9s ease; }
.dev__screen img.is-on { opacity: 1; }
.no-js .dev__screen img:first-child { opacity: 1; }
.dev--pc { left: 7%; top: 0; width: 86%; border-radius: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow); border: 1px solid rgba(0, 0, 0, .06); animation: float 9s ease-in-out infinite; }
.dev__bar { height: 26px; background: #F1EEEA; display: flex; align-items: center; gap: 6px; padding: 0 11px; }
.dev__bar i { width: 8px; height: 8px; border-radius: 50%; background: #FF5F57; }
.dev__bar i:nth-child(2) { background: #FEBC2E; }
.dev__bar i:nth-child(3) { background: #28C840; }
.dev--pc .dev__screen { aspect-ratio: 1440 / 900; }
.dev--phone { width: 26%; padding: 7px; border-radius: 30px; background: #16181D; box-shadow: var(--shadow); }
.dev--phone .dev__screen { aspect-ratio: 390 / 844; border-radius: 23px; }
.dev--p1 { left: 0; bottom: 0; animation: float 7s ease-in-out infinite; }
.dev--p2 { right: 0; bottom: 5%; animation: float 8s ease-in-out -3s infinite; }
.dev__tag {
  position: absolute; z-index: 2; white-space: nowrap; font-size: 12px; font-weight: 700; color: var(--ink);
  background: #fff; border-radius: 999px; padding: 4px 12px; box-shadow: var(--shadow-sm); line-height: 1.5;
}
.dev--pc .dev__tag { top: 36px; right: 12px; }
.dev--phone .dev__tag { left: 50%; bottom: -14px; transform: translateX(-50%); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ───────── 数字の帯 */
.nums { background: var(--black); color: #fff; padding: 60px 0; }
.nums__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.num { padding: 6px 26px; border-left: 1px solid rgba(255, 255, 255, .12); }
.num:first-child { border-left: 0; padding-left: 0; }
.num__label { font-size: 13px; font-weight: 700; color: rgba(255, 255, 255, .72); }
.num__before { position: relative; display: inline-block; margin-top: 10px; font-size: 17px; color: rgba(255, 255, 255, .55); line-height: 1.4; }
.num__before::after { content: ""; position: absolute; left: -3px; right: -3px; top: 52%; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .6s ease .25s; }
.num__after { display: block; font-size: clamp(26px, 3.1vw, 40px); font-weight: 900; color: var(--orange); line-height: 1.3; opacity: 0; transform: translateY(14px); transition: opacity .6s ease .75s, transform .6s ease .75s; }
.num__case { margin-top: 8px; font-size: 12px; color: rgba(255, 255, 255, .5); line-height: 1.6; }
.num.is-in .num__before::after { transform: scaleX(1); }
.num.is-in .num__after { opacity: 1; transform: none; }
.no-js .num__after { opacity: 1; transform: none; }

/* ───────── 動画プレーヤー */
.player { position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: #111; box-shadow: var(--shadow); }
.player video { width: 100%; height: 100%; object-fit: contain; background: #111; }
.player__play {
  position: absolute; inset: 0; border: 0; padding: 0; cursor: pointer; color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .35)); transition: opacity .25s;
}
.player__play .pbtn { width: 84px; height: 84px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; box-shadow: 0 14px 34px rgba(239, 123, 37, .45); transition: transform .2s; }
.player__play .pbtn::before { content: ""; margin-left: 7px; border-style: solid; border-width: 15px 0 15px 25px; border-color: transparent transparent transparent #fff; }
.player__play:hover .pbtn { transform: scale(1.07); }
.player__play .plabel { font-weight: 800; font-size: 16px; background: rgba(17, 17, 17, .72); border-radius: 999px; padding: 6px 16px; line-height: 1.5; }
.player__play .plabel small { font-weight: 500; opacity: .8; margin-left: 8px; }
.player.is-started .player__play { opacity: 0; pointer-events: none; }
.player__note { margin-top: 12px; font-size: 13px; color: var(--faint); text-align: center; }

.chapters { list-style: none; display: grid; gap: 4px; }
.chapters button {
  all: unset; box-sizing: border-box; width: 100%; cursor: pointer; display: grid; grid-template-columns: 3.4em 1fr; gap: 8px;
  padding: 9px 12px; border-radius: 10px; font-size: 14px; line-height: 1.55; color: var(--sub); transition: background-color .15s, color .15s;
}
.chapters button:hover { background: var(--gray); color: var(--ink); }
.chapters button:focus-visible { outline: 2px solid var(--orange); }
.chapters button.is-current { background: var(--pale); color: var(--ink); font-weight: 700; }
.chapters .t { font-variant-numeric: tabular-nums; color: var(--orange); font-weight: 700; font-size: 12px; padding-top: 2px; }
.chapters .ch-head { font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--orange); margin: 14px 12px 2px; }
.chapters .ch-head:first-child { margin-top: 0; }

/* ───────── PV */
.pv .player { max-width: 960px; margin: 0 auto; }

/* ───────── 3つのパターン */
.patterns__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pat {
  all: unset; box-sizing: border-box; cursor: pointer; position: relative; display: flex; flex-direction: column;
  background: #fff; border: 2px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s, background-color .2s;
}
.pat:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.pat:focus-visible { outline: 3px solid rgba(239, 123, 37, .45); outline-offset: 3px; }
.pat.is-active { border-color: var(--orange); background: var(--pale); }
.pat__no { position: absolute; top: 18px; right: 24px; font-size: 40px; font-weight: 900; color: rgba(239, 123, 37, .18); line-height: 1; }
.pat__icon { width: 92px; height: 92px; }
.pat h3 { font-size: 19px; font-weight: 900; line-height: 1.55; margin: 16px 0 14px; }
.pat ul { list-style: none; margin-bottom: 20px; font-size: 14px; color: var(--sub); }
.pat li { position: relative; padding-left: 18px; margin: 7px 0; line-height: 1.65; }
.pat li::before { content: ""; position: absolute; left: 2px; top: .66em; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.pat__go { margin-top: auto; font-weight: 800; font-size: 15px; color: var(--orange); }

/* ───────── 事例 */
.cases__hint { text-align: center; font-size: 14px; font-weight: 700; color: var(--orange-deep); min-height: 1.6em; margin: -30px 0 26px; }
.case { position: relative; background: #fff; border-radius: 28px; box-shadow: var(--shadow); padding: 46px 48px 48px; margin-bottom: 40px; }
.case:last-child { margin-bottom: 0; }
.case__top { display: flex; align-items: center; gap: 12px 18px; flex-wrap: wrap; }
.case__logo { height: 44px; width: auto; }
.case__title { font-size: clamp(22px, 2.7vw, 31px); font-weight: 900; margin-top: 18px; }
.case__lead { margin-top: 8px; color: var(--sub); }
.case__body { display: grid; grid-template-columns: 1.32fr 1fr; gap: 40px; margin-top: 30px; align-items: start; }
.case__movie .chapters { margin-top: 14px; }
.case__info h4 { font-size: 15px; font-weight: 800; margin: 22px 0 8px; display: flex; align-items: center; gap: 8px; }
.case__info h4::before { content: ""; width: 4px; height: 1.1em; border-radius: 2px; background: var(--orange); }
.case__info > p { font-size: 15px; color: var(--sub); }
.case__info .btn { margin-top: 26px; }

.ba { display: grid; gap: 10px; }
.ba__row { background: var(--gray); border-radius: 14px; padding: 14px 18px; }
.ba__k { font-size: 13px; font-weight: 700; color: var(--sub); }
.ba__v { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 12px; margin-top: 2px; }
.ba__v s { color: var(--faint); font-size: 15px; text-decoration-color: rgba(239, 123, 37, .8); text-decoration-thickness: 2px; }
.ba__v .arr { width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 9px; border-color: transparent transparent transparent var(--orange); }
.ba__v b { color: var(--orange); font-size: 22px; font-weight: 900; line-height: 1.35; }

.checks { list-style: none; display: grid; gap: 8px; font-size: 15px; }
.checks li { position: relative; padding-left: 30px; line-height: 1.65; }
.checks li::before { content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px; border-radius: 50%; background: var(--pale); }
.checks li::after { content: ""; position: absolute; left: 6px; top: calc(.2em + 5px); width: 8px; height: 5px; border-left: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange); transform: rotate(-45deg); }
.checks b { font-weight: 800; }

/* ───────── 4つの強み */
.str-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; position: relative; z-index: 1; }
.str { background: #fff; border-radius: var(--r-lg); padding: 34px 34px 32px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 96px 1fr; gap: 24px; align-items: start; }
.str__icon { width: 96px; height: 96px; }
.str__no { font-size: 13px; font-weight: 900; letter-spacing: .14em; color: var(--orange); }
.str h3 { font-size: 21px; font-weight: 900; margin-top: 4px; }
.str p { font-size: 15px; color: var(--sub); margin-top: 10px; }
.compare { margin-top: 18px; display: grid; gap: 10px; }
.compare__row { display: grid; grid-template-columns: 9.2em 1fr; gap: 10px; align-items: center; font-size: 13px; font-weight: 700; color: var(--sub); }
.compare__bar { position: relative; height: 16px; border-radius: 8px; background: #EEE8E3; overflow: hidden; }
.compare__bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; border-radius: 8px; background: #B9B1AA; transition: width 1.3s cubic-bezier(.2, .8, .2, 1) .2s; }
.compare__bar--us i { background: var(--orange); transition-delay: .9s; }
.compare__bar span { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 11px; color: #fff; font-weight: 800; }
.str.is-in .compare__bar i { width: 100%; }
.str.is-in .compare__bar--us i { width: 17%; }
.no-js .compare__bar i { width: 100%; }
.no-js .compare__bar--us i { width: 17%; }

/* ───────── 進め方 */
.process { list-style: none; display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; position: relative; z-index: 1; }
.process::before { content: ""; position: absolute; left: 7%; right: 7%; top: 42px; height: 3px; background: repeating-linear-gradient(90deg, var(--orange) 0 10px, transparent 10px 18px); opacity: .45; }
.pstep { position: relative; background: #fff; border-radius: 18px; padding: 22px 12px 18px; text-align: center; opacity: .38; transform: translateY(8px); transition: opacity .5s, transform .5s, box-shadow .5s; }
.pstep.is-lit { opacity: 1; transform: none; box-shadow: var(--shadow-sm); }
.pstep__no { width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 12px; display: grid; place-items: center; background: var(--orange); color: #fff; font-weight: 900; font-size: 17px; }
.pstep h3 { font-size: 15px; font-weight: 800; line-height: 1.5; }
.pstep p { font-size: 12px; color: var(--sub); margin-top: 8px; line-height: 1.7; }
.pstep .dur { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 800; color: var(--orange-deep); background: var(--pale); border-radius: 6px; padding: 2px 8px; line-height: 1.6; }
.pstep--keep .pstep__no { background: var(--black); }
.process-sum { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 36px; position: relative; z-index: 1; }
.process-sum div { background: #fff; border-radius: 16px; padding: 16px 28px; text-align: center; box-shadow: var(--shadow-sm); }
.process-sum small { display: block; font-size: 13px; color: var(--sub); font-weight: 700; }
.process-sum b { font-size: 28px; font-weight: 900; color: var(--orange); }
.process-note { max-width: 760px; margin: 22px auto 0; text-align: center; font-size: 14px; color: var(--sub); position: relative; z-index: 1; }

/* ───────── 使うサービスは3つだけ */
.stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc { background: #fff; border: 2px solid var(--line); border-radius: 22px; padding: 30px 26px; text-align: center; }
.svc__name { font-size: 25px; font-weight: 900; letter-spacing: .02em; }
.svc__role { margin-top: 10px; color: var(--sub); font-size: 14px; }
.stack-link { display: flex; justify-content: center; margin: 18px 0 0; font-size: 14px; color: var(--sub); }
.reasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.reason { background: var(--gray); border-radius: 18px; padding: 22px 22px 20px; }
.reason h3 { font-size: 16px; font-weight: 900; }
.reason h3 span { color: var(--orange); margin-right: 6px; }
.reason p { font-size: 14px; color: var(--sub); margin-top: 8px; }
.ops { margin-top: 26px; background: var(--black); color: #fff; border-radius: 22px; padding: 28px 32px; display: grid; grid-template-columns: auto 1fr; gap: 10px 28px; align-items: center; }
.ops h3 { font-size: 18px; font-weight: 900; }
.ops ul { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 20px; font-size: 14px; color: rgba(255, 255, 255, .82); }
.ops li { position: relative; padding-left: 16px; }
.ops li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* ───────── 料金 */
.price-switch { display: flex; justify-content: center; margin-bottom: 28px; position: relative; z-index: 1; }
.price-switch__in { display: inline-flex; gap: 4px; padding: 6px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm); }
.price-switch button { all: unset; cursor: pointer; padding: 10px 22px; border-radius: 999px; font-weight: 800; font-size: 15px; color: var(--sub); transition: background-color .2s, color .2s; }
.price-switch button:focus-visible { outline: 2px solid var(--orange); }
.price-switch button.is-on { background: var(--black); color: #fff; }
.price-switch button .tag { margin-left: 8px; font-size: 11px; padding: 2px 8px; }
.pcards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }
.pcard { background: #fff; border-radius: 26px; padding: 34px 30px 30px; text-align: center; box-shadow: var(--shadow); }
.pcard__label { font-weight: 800; color: var(--sub); }
.pcard__old { height: 1.7em; font-size: 16px; color: var(--faint); text-decoration: line-through; text-decoration-color: var(--orange); }
.pcard__num { font-size: clamp(42px, 6vw, 66px); font-weight: 900; line-height: 1.15; font-variant-numeric: tabular-nums; letter-spacing: .01em; }
.pcard__num small { font-size: 20px; font-weight: 800; margin-left: 4px; }
.pcard__tax { font-size: 13px; color: var(--faint); margin-top: 6px; }
.pcards.is-monitor .pcard__num { color: var(--orange); }
.monitor-note { max-width: 880px; margin: 18px auto 0; text-align: center; font-size: 14px; color: var(--sub); min-height: 3.4em; position: relative; z-index: 1; }
.monitor-note b { color: var(--orange); }
.incl { max-width: 880px; margin: 40px auto 0; display: grid; grid-template-columns: 1.25fr 1fr; gap: 20px; position: relative; z-index: 1; }
.incl__box { background: #fff; border-radius: 22px; padding: 28px 30px; box-shadow: var(--shadow-sm); }
.incl__box h3 { font-size: 17px; font-weight: 900; margin-bottom: 14px; }
.incl__box .checks { font-size: 14px; gap: 7px; }
.incl__box--extra { background: var(--pale); box-shadow: none; }
.incl__box--extra ul { list-style: none; display: grid; gap: 12px; font-size: 14px; }
.incl__box--extra li b { display: block; font-size: 15px; }
.incl__box--extra li span { color: var(--sub); font-size: 13px; }
.incl__box--extra p { font-size: 13px; color: var(--sub); margin-top: 14px; }
.transfer { max-width: 880px; margin: 20px auto 0; background: #fff; border: 2px dashed var(--line); border-radius: 22px; padding: 24px 30px; position: relative; z-index: 1; }
.transfer h3 { font-size: 16px; font-weight: 900; }
.transfer p { font-size: 14px; color: var(--sub); margin-top: 6px; }
.market { max-width: 880px; margin: 20px auto 0; text-align: center; font-size: 14px; color: var(--sub); position: relative; z-index: 1; }

/* ───────── データと権利 */
.rights { width: 100%; max-width: 960px; margin: 0 auto; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); font-size: 15px; }
.rights th, .rights td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); line-height: 1.6; }
.rights thead th { background: var(--black); color: #fff; font-size: 13px; font-weight: 700; }
.rights tbody tr:last-child th, .rights tbody tr:last-child td { border-bottom: 0; }
.rights tbody th { font-weight: 800; }
.rights tbody th small { display: block; font-weight: 500; font-size: 12px; color: var(--sub); margin-top: 2px; }
.rights .own { color: var(--orange); font-weight: 900; }
.rights td small { display: block; font-size: 12px; color: var(--sub); }
.rights-say { max-width: 960px; margin: 26px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rights-say div { background: #fff; border-radius: 20px; padding: 24px 26px; box-shadow: var(--shadow-sm); }
.rights-say h3 { font-size: 17px; font-weight: 900; }
.rights-say p { font-size: 14px; color: var(--sub); margin-top: 8px; }
.rights-say .safe { background: var(--black); color: #fff; box-shadow: none; }
.rights-say .safe p { color: rgba(255, 255, 255, .8); }

/* ───────── よくある質問 */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { background: #fff; border-radius: 18px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; position: relative; padding: 20px 60px 20px 66px; font-weight: 800; line-height: 1.6; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; position: absolute; left: 20px; top: 17px; width: 32px; height: 32px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 15px; line-height: 1; }
.faq summary::after { content: ""; position: absolute; right: 26px; top: 50%; width: 10px; height: 10px; margin-top: -7px; border-right: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange); transform: rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:focus-visible { outline: 2px solid var(--orange); border-radius: 18px; }
.faq .a { padding: 0 30px 24px 66px; color: var(--sub); font-size: 15px; }
.faq .a p + p { margin-top: 10px; }

/* ───────── 相談（公式LINE） */
.cta { position: relative; overflow: hidden; background: var(--orange); padding: 104px 0; }
.cta .deco-lines { filter: brightness(10); opacity: .5; }
.cta .deco-dots { left: 24px; top: 24px; background-image: radial-gradient(rgba(255, 255, 255, .35) 2.2px, transparent 2.8px); }
.cta__box { position: relative; z-index: 1; background: #fff; border-radius: 34px; padding: 56px 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: center; box-shadow: 0 30px 80px rgba(110, 45, 0, .28); }
.cta__box h2 { font-size: clamp(26px, 3.3vw, 38px); font-weight: 900; }
.cta__box h2 em { display: inline-block; }
.cta__box > div > p { color: var(--sub); margin-top: 18px; }
.cta__steps { list-style: none; margin-top: 22px; display: grid; gap: 8px; counter-reset: c; }
.cta__steps li { counter-increment: c; position: relative; padding-left: 38px; font-size: 15px; font-weight: 700; line-height: 1.7; }
.cta__steps li::before { content: counter(c); position: absolute; left: 0; top: 1px; width: 26px; height: 26px; border-radius: 50%; background: var(--pale); color: var(--orange-deep); font-size: 13px; font-weight: 900; display: grid; place-items: center; }
.cta__steps li span { display: block; font-size: 13px; font-weight: 500; color: var(--sub); }
.cta__line { background: var(--gray); border-radius: 24px; padding: 30px 26px; text-align: center; }
.cta__line h3 { font-size: 17px; font-weight: 900; }
.cta__qr { width: 176px; height: 176px; margin: 16px auto 12px; background: #fff; padding: 10px; border-radius: 14px; }
.cta__line p { font-size: 13px; color: var(--sub); }
.cta__line .btn { margin-top: 18px; }
.cta__id { margin-top: 10px; font-size: 12px; color: var(--faint); word-break: break-all; }

/* ───────── フッター */
.ft { background: var(--black); color: rgba(255, 255, 255, .78); padding: 64px 0 40px; font-size: 14px; }
.ft__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; }
.ft__logo { height: 30px; width: auto; margin-bottom: 18px; }
.ft h3 { color: #fff; font-size: 14px; font-weight: 800; margin-bottom: 12px; }
.ft ul { list-style: none; display: grid; gap: 6px; }
.ft a { color: #fff; text-decoration: none; }
.ft a:hover { color: var(--orange); }
.ft__copy { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 12px; color: rgba(255, 255, 255, .42); }

/* ───────── スマホ下部の相談バー（黒CTAバー） */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--black); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); transform: translateY(110%); transition: transform .3s ease;
}
.sticky-cta p { color: #fff; font-size: 13px; font-weight: 700; line-height: 1.45; }
.sticky-cta p small { display: block; font-weight: 500; color: rgba(255, 255, 255, .6); font-size: 11px; }
.sticky-cta.is-show { transform: none; }

/* ───────── 表示の動き */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ───────── 事例ページ */
.dhero { position: relative; background: var(--paper); padding: 44px 0 72px; overflow: hidden; }
.dhero .deco-dots { top: 20px; right: 20px; }
.crumbs { font-size: 13px; color: var(--faint); position: relative; z-index: 1; word-break: auto-phrase; }
.crumbs a { color: var(--sub); text-decoration: none; }
.crumbs a:hover { color: var(--orange); }
.dhero__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: end; margin-top: 26px; }
.dhero__logo { height: 54px; width: auto; margin: 18px 0 8px; }
.dhero h1 { font-size: clamp(28px, 4.2vw, 46px); font-weight: 900; line-height: 1.38; }
.dhero__lead { margin-top: 16px; color: var(--sub); font-size: 17px; }
.dhero .ba__row { background: #fff; box-shadow: var(--shadow-sm); }

.dmovie__grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.dmovie__side { background: #fff; border-radius: 20px; box-shadow: var(--shadow-sm); padding: 18px 10px 14px; max-height: 560px; overflow: auto; }
.dmovie__side h2 { font-size: 15px; font-weight: 900; padding: 0 12px 10px; }

.dflow__chapter { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px; margin: 64px 0 24px; }
.dflow__chapter:first-of-type { margin-top: 0; }
.chip { background: var(--orange); color: #fff; font-weight: 900; font-size: 12px; letter-spacing: .14em; padding: 5px 14px; border-radius: 999px; }
.dflow__chapter h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 900; }
.dflow__chapter .role { font-size: 13px; font-weight: 700; color: var(--orange-deep); background: var(--pale); padding: 3px 10px; border-radius: 6px; }
.fsteps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fstep { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.shot { position: relative; height: 330px; overflow: hidden; background: var(--gray); }
.shot::after { content: ""; position: absolute; inset: auto 0 0 0; height: 36px; background: linear-gradient(180deg, rgba(246, 242, 239, 0), var(--gray)); }
.shot__canvas { position: absolute; left: 50%; top: 0; }
.shot__canvas img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 12px 34px rgba(0, 0, 0, .14); }
.shot--desktop .shot__canvas img { border-radius: 8px; }
.shot__hl { position: absolute; border: 3px solid var(--orange); border-radius: 12px; box-shadow: 0 0 0 4px rgba(239, 123, 37, .18), 0 0 22px rgba(239, 123, 37, .45); }
.shot--gallery { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 12px; padding: 22px; }
.shot--gallery img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 12px; box-shadow: 0 10px 26px rgba(0, 0, 0, .12); background: #fff; }
.shot--gallery.is-wide img { object-fit: contain; background: transparent; box-shadow: none; }
.fstep__text { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.fstep__no { font-size: 12px; font-weight: 900; letter-spacing: .12em; color: var(--orange); }
.fstep h4 { font-size: 19px; font-weight: 900; margin: 6px 0 8px; line-height: 1.5; }
.fstep p { font-size: 15px; color: var(--sub); }
.fstep__play { all: unset; cursor: pointer; margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; color: var(--orange-deep); }
.fstep__play::before { content: ""; width: 26px; height: 26px; border-radius: 50%; background: var(--pale) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26'><path d='M10.5 8.5v9l7-4.5z' fill='%23EF7B25'/></svg>") center no-repeat; }
.fstep__play:hover { color: var(--orange); }
.fstep__play:focus-visible { outline: 2px solid var(--orange); border-radius: 6px; }

.feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feat { background: #fff; border-radius: 20px; padding: 24px 26px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.feat__no { width: 40px; height: 40px; border-radius: 50%; background: var(--pale); color: var(--orange-deep); font-weight: 900; display: grid; place-items: center; font-size: 15px; }
.feat h3 { font-size: 17px; font-weight: 900; line-height: 1.55; }
.feat p { font-size: 14px; color: var(--sub); margin-top: 4px; }

.lesson { background: var(--black); color: #fff; border-radius: 28px; padding: 44px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.lesson h2 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 900; }
.lesson h2 small { display: block; font-size: 13px; letter-spacing: .2em; color: var(--orange); margin-bottom: 8px; }
.lesson p { color: rgba(255, 255, 255, .82); margin-top: 14px; font-size: 15px; }
.lesson__use h3 { font-size: 15px; font-weight: 800; color: var(--orange); }
.lesson__use ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.lesson__use li { border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; padding: 5px 14px; font-size: 14px; }
.lesson__use p { font-size: 13px; color: rgba(255, 255, 255, .6); }

.others { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.other { display: grid; grid-template-columns: 180px 1fr; gap: 20px; align-items: center; background: #fff; border-radius: 22px; padding: 16px; text-decoration: none; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.other:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.other img { border-radius: 12px; aspect-ratio: 16 / 9; object-fit: cover; }
.other small { font-size: 12px; font-weight: 700; color: var(--orange-deep); }
.other b { display: block; font-size: 17px; font-weight: 900; line-height: 1.5; margin-top: 2px; }
.other span { display: block; font-size: 13px; color: var(--sub); margin-top: 4px; }

/* ───────── タブレット・スマホ */
@media (max-width: 1060px) {
  .hd__nav { display: none; }
  .hd__in .btn { margin-left: auto; }
  .process { grid-template-columns: repeat(4, 1fr); }
  .process::before { display: none; }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .ops { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .sec { padding: 80px 0; }
  .fv { padding: 40px 0 72px; }
  .fv__in { grid-template-columns: 1fr; gap: 36px; }
  .fv__visual { max-width: 520px; width: 100%; margin: 0 auto; }
  .nums__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .num:nth-child(3) { border-left: 0; padding-left: 0; }
  .patterns__grid { grid-template-columns: 1fr; }
  .case { padding: 32px 22px 30px; border-radius: 24px; }
  .case__body { grid-template-columns: 1fr; gap: 28px; }
  .str-grid { grid-template-columns: 1fr; }
  .stack { grid-template-columns: 1fr; }
  .incl { grid-template-columns: 1fr; }
  .rights-say { grid-template-columns: 1fr; }
  .cta__box { grid-template-columns: 1fr; padding: 40px 26px; gap: 30px; }
  .ft__grid { grid-template-columns: 1fr; gap: 28px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .dhero__in { grid-template-columns: 1fr; }
  .dmovie__grid { grid-template-columns: 1fr; }
  .dmovie__side { max-height: none; }
  .fsteps { grid-template-columns: 1fr; }
  .feats { grid-template-columns: 1fr; }
  .lesson { grid-template-columns: 1fr; padding: 34px 26px; }
  .others { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .wrap { padding: 0 18px; }
  .sp { display: inline; }
  .pc { display: none; }
  .hd__logo img { height: 22px; }
  .sec-head { margin-bottom: 40px; text-align: left; }
  .sec-head h2::after { margin-left: 0; }
  .fv__btns .btn { width: 100%; }
  .num { padding: 0 14px; }
  .num:nth-child(odd) { border-left: 0; padding-left: 0; }
  .process { grid-template-columns: 1fr 1fr; }
  .pstep--keep { grid-column: 1 / -1; }
  .reasons { grid-template-columns: 1fr; }
  .ops ul { grid-template-columns: 1fr; }
  .price-switch button { padding: 10px 14px; font-size: 14px; }
  .price-switch button .tag { display: none; }
  .pcards { grid-template-columns: 1fr; gap: 14px; }
  .pcard { padding: 24px 20px 22px; }
  .str { grid-template-columns: 1fr; padding: 28px 24px; gap: 12px; }
  .str__icon { width: 76px; height: 76px; }
  /* 表はカード型に */
  .rights thead { display: none; }
  .rights, .rights tbody, .rights tr, .rights th, .rights td { display: block; width: 100%; }
  .rights tr { border-bottom: 1px solid var(--line); padding: 14px 18px; }
  .rights tbody tr:last-child { border-bottom: 0; }
  .rights th, .rights td { border: 0; padding: 3px 0; }
  .rights td::before { content: attr(data-k) "：" ; font-size: 12px; color: var(--faint); font-weight: 700; }
  .faq summary { padding: 18px 48px 18px 58px; font-size: 15px; }
  .faq summary::before { left: 14px; }
  .faq .a { padding: 0 20px 20px 58px; font-size: 14px; }
  .cta { padding: 72px 0; }
  .shot { height: 300px; }
  .other { grid-template-columns: 120px 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .dev { animation: none !important; }
  .num__after { opacity: 1; transform: none; transition: none; }
  .compare__bar i { transition: none; }
}
