/* RE-BODHIV v2 — 代理店・制作会社向けパートナーサイト */
:root {
  --bg: #f6efe2;            /* 外側のクリーム地 */
  --paper: #fffcf6;         /* 中央の白い帯 */
  --ink: #2c342f;
  --ink-soft: #6b756f;
  --accent: #00563f;        /* RE-BODHIV グリーン */
  --accent-deep: #00402f;
  --circle: #eee5d2;        /* アイコン用の丸 */
  --line: #e7ddc9;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 2.0;
  font-size: 14px;
  letter-spacing: 0.06em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =================== 外枠：左ナビ / 中央白帯 / 右装飾 =================== */

.side {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 280px;
  padding: 56px 44px 48px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.side .logo img { width: 158px; }
.side .side-tag {
  margin-top: 14px;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  line-height: 1.8;
}
.side nav { margin-top: 64px; }
.side nav a {
  display: block;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 10px 0;
  transition: opacity .2s;
}
.side nav a:hover { opacity: .5; }
.side nav a.current { text-decoration: underline; text-underline-offset: 7px; text-decoration-thickness: 2px; }
.side .side-foot { margin-top: auto; }
.side .side-foot .follow {
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 10px;
}
.side .side-foot a.sns {
  display: inline-flex;
  width: 30px; height: 30px;
  align-items: center; justify-content: center;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}
.side .side-foot .cr {
  margin-top: 18px;
  font-size: 10.5px;
  color: var(--ink-soft);
  letter-spacing: 0.14em;
}

/* 右上キャッチ */
.slogan {
  position: fixed;
  top: 48px; right: 44px;
  z-index: 10;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: var(--accent);
}

/* 右端 縦書きコピーライト */
.rail {
  position: fixed;
  right: 20px; bottom: 40px;
  z-index: 10;
}
.rail p {
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.30em;
  color: var(--accent);
  opacity: .7;
}

/* 中央の白い帯 */
main {
  margin-left: 280px;
  margin-right: 200px;
  display: flex;
  justify-content: center;
}
.strip {
  background: var(--paper);
  width: 100%;
  max-width: 620px;
  min-height: 100vh;
  padding: 0 56px;
  box-shadow: 0 0 0 1px rgba(0,86,63,0.05);
}

/* =================== モバイル =================== */
.m-head {
  display: none;
  position: sticky;
  top: 0; z-index: 20;
  background: rgba(246,239,226,.95);
  backdrop-filter: blur(8px);
  padding: 14px 20px 10px;
  border-bottom: 1px solid var(--line);
}
.m-head img { width: 128px; }
.m-nav { display: flex; gap: 18px; margin-top: 10px; overflow-x: auto; }
.m-nav a {
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 1180px) { main { margin-right: 90px; } .slogan { display: none; } }
@media (max-width: 960px) {
  .side, .rail { display: none; }
  .m-head { display: block; }
  main { margin: 0; }
  .strip { max-width: none; padding: 0 24px; box-shadow: none; }
  .fv h1 { font-size: 21px; }
  .fv .fv-mark { width: 200px; }
}

/* =================== 共通パーツ =================== */
.sec { padding: 88px 0; }

.sec-label {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin-bottom: 8px;
}
.sec-sub {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.22em;
  margin-bottom: 44px;
}

/* 丸矢印つきリンク（View more） */
.more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.more .arr {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform .2s;
}
.more:hover .arr { transform: translateX(4px); }

/* 枠線ボタン */
.btn-frame {
  display: inline-block;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  padding: 14px 44px;
  transition: background .2s, color .2s;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-frame:hover { background: var(--accent); color: var(--white); }
.btn-frame.fill { background: var(--accent); color: var(--white); }
.btn-frame.fill:hover { opacity: .85; }

/* =================== FV =================== */
.fv { padding: 96px 0 80px; text-align: left; }
.fv .fv-mark { width: 250px; margin-bottom: 52px; }
.fv h1 {
  font-size: 25px;
  line-height: 1.9;
  letter-spacing: 0.10em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 26px;
}
.fv .fv-lead { color: var(--ink); }
.fv .fv-movie {
  margin: 0 0 44px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(44,52,47,0.07);
  padding: 12px 12px 10px;
}
.fv .fv-movie video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--circle);
}
.fv .fv-movie .fv-movie-cap {
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--accent);
  text-align: center;
}
.fv .fv-more { margin-top: 36px; }

/* =================== News =================== */
.news-list { list-style: none; }
.news-list li {
  display: flex;
  gap: 26px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  align-items: baseline;
}
.news-list li:first-child { border-top: 1px solid var(--line); }
.news-list time { color: var(--accent); font-weight: 600; flex-shrink: 0; letter-spacing: 0.08em; }

/* =================== Service（丸アイコン+番号） =================== */
.svc {
  padding: 64px 0;
  text-align: center;
}
.svc + .svc { border-top: 1px dashed var(--line); }
.svc .svc-circle {
  width: 210px; height: 150px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc .svc-circle svg { width: 190px; height: 140px; color: var(--accent); }
.svc .svc-num {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: var(--accent);
  margin-bottom: 6px;
}
.svc h3 {
  font-size: 19px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.svc p {
  text-align: left;
  color: var(--ink);
  font-size: 13.5px;
}

/* =================== Works（白枠カード） =================== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 26px;
}
@media (max-width: 640px) { .works-grid { grid-template-columns: 1fr; } }
.wk {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(44,52,47,0.06);
  padding: 14px 14px 18px;
  transition: transform .25s, box-shadow .25s;
}
.wk:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(44,52,47,0.10); }
.wk .wk-thumb {
  background: var(--bg);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wk .wk-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wk .wk-name {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.wk .wk-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10.5px;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  padding: 2px 14px;
  letter-spacing: 0.14em;
}
.wk .wk-desc { font-size: 12px; color: var(--ink-soft); margin-top: 8px; line-height: 1.8; }

/* =================== CTA =================== */
.cta {
  text-align: center;
  padding: 88px 0 96px;
  border-top: 1px solid var(--line);
}
.cta .cta-catch {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 14px;
}
.cta h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 22px;
}
.cta p { margin-bottom: 34px; font-size: 13.5px; }

/* =================== フッター =================== */
.foot {
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.16em;
  text-align: center;
}

/* =================== 料金（枠カード） =================== */
.price-intro { margin-bottom: 20px; }
.price-block {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(44,52,47,0.05);
  padding: 36px 34px;
  margin-bottom: 40px;
}
.price-block h3 {
  font-size: 19px;
  color: var(--accent);
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.price-block > p { font-size: 13px; margin-bottom: 20px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
}
.price-row:first-of-type { border-top: 1px solid var(--line); }
.price-row .pr-name { font-weight: 500; font-size: 13.5px; }
.price-row .pr-name small { display: block; font-size: 11.5px; color: var(--ink-soft); font-weight: 400; margin-top: 5px; line-height: 1.8; }
.price-row .pr-name small.pr-len { margin-top: 7px; font-weight: 500; color: var(--ink); }
.price-row .pr-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.price-row .pr-price small { font-size: 11px; font-weight: 400; color: var(--ink-soft); }
.price-row .pr-price.q { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.pr-group { margin-top: 30px; }
.pr-group:first-of-type { margin-top: 6px; }
.pr-sub {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.pr-group.boxed {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 24px 20px;
}
.pr-group.boxed .pr-sub { margin-bottom: 8px; }
.pr-group.boxed .price-row { padding: 12px 2px; }
.pr-group.boxed .price-row:last-of-type { border-bottom: none; }
.pr-group.boxed .pr-foot { margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.pr-lead { font-size: 12.5px; color: var(--ink-soft); line-height: 1.9; margin: 10px 0 14px; }
.pr-foot { margin-top: 14px; font-size: 11.5px; color: var(--ink-soft); line-height: 1.9; }
.price-notes { margin-top: 18px; font-size: 11.5px; color: var(--ink-soft); list-style: none; line-height: 1.9; }
.price-notes li { padding-left: 1.2em; text-indent: -1.2em; }
.price-notes li::before { content: "※ "; }

/* =================== 制作の流れ =================== */
.flow-step {
  display: flex;
  gap: 30px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
}
.flow-step:first-of-type { border-top: 1px solid var(--line); }
.flow-step .fs-num {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step h4 {
  font-size: 15.5px;
  color: var(--accent);
  letter-spacing: 0.10em;
  font-weight: 700;
  margin-bottom: 6px;
}
.flow-step p { font-size: 13px; }

/* =================== About =================== */
.about-name {
  text-align: center;
  margin-bottom: 44px;
}
.about-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--accent), 0 4px 14px rgba(44,52,47,0.12);
  background: var(--white);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-name .an-en { font-size: 12px; letter-spacing: 0.26em; color: var(--ink-soft); }
.about-name h3 { font-size: 23px; color: var(--accent); letter-spacing: 0.14em; font-weight: 700; }
.about-body h3 {
  font-size: 17px;
  color: var(--accent);
  margin: 48px 0 14px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-align: center;
}
.about-body h3:first-child { margin-top: 0; }
.fact-list { list-style: none; margin-top: 4px; }
.fact-list li {
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  font-size: 13px;
}
.fact-list li:first-child { border-top: 1px solid var(--line); }
.fact-list li b { color: var(--accent); flex-shrink: 0; min-width: 108px; font-weight: 600; }

/* =================== Contact フォーム =================== */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(44,52,47,0.05);
  padding: 40px 34px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  margin-bottom: 8px;
  color: var(--accent);
}
.form-group label span { color: #c0392b; }
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 13px 15px;
  font: inherit;
  color: var(--ink);
}
.form-group input:focus,
.form-group textarea:focus { outline: 2px solid rgba(0,86,63,.25); border-color: var(--accent); }

/* =================== Works 詳細ブロック =================== */
.feat {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(44,52,47,0.06);
  padding: 34px 32px 38px;
  margin-bottom: 44px;
}
.feat .ft-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.feat .ft-tags { margin: 8px 0 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.feat .ft-tags span {
  font-size: 10px;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  padding: 2px 12px;
  letter-spacing: 0.14em;
}
.feat h3 {
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.10em;
  font-weight: 700;
  line-height: 1.6;
}
.feat .ft-client { font-size: 12px; color: var(--ink-soft); margin: 4px 0 20px; letter-spacing: 0.08em; }
.feat .ft-visual { margin-bottom: 12px; }
.feat .ft-visual img, .feat .ft-visual video { width: 100%; display: block; }
.feat .ft-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.feat .ft-row.cols3 { grid-template-columns: 1fr 1fr 1fr; }
.feat .ft-row img, .feat .ft-row video { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat .ft-scroll {
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.feat .ft-scroll::-webkit-scrollbar { width: 6px; }
.feat .ft-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.feat .ft-scroll-cap {
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.14em;
  text-align: center;
  margin: -6px 0 14px;
}
.feat .ft-desc { font-size: 13px; margin: 14px 0 20px; }
.feat .ft-site {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 6px 18px;
  margin-bottom: 18px;
}
.feat .ft-site:hover { background: var(--accent); color: var(--white); }
.feat .ft-scope-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: var(--accent);
  margin-bottom: 8px;
}
.feat .ft-scope { list-style: none; }
.feat .ft-scope li {
  font-size: 12px;
  color: var(--ink);
  padding: 7px 2px;
  border-bottom: 1px solid var(--line);
  line-height: 1.7;
}
.feat .ft-scope li:first-child { border-top: 1px solid var(--line); }

/* =================== Works 動画実績 =================== */
.vwk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 640px) { .vwk-grid { grid-template-columns: 1fr; } }
.vwk {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(44,52,47,0.06);
  padding: 14px 14px 18px;
  transition: transform .25s, box-shadow .25s;
}
.vwk:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(44,52,47,0.10); }
.vwk .vwk-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--circle);
}
.vwk .vwk-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vwk .vwk-thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,86,63,0.88);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
}
.vwk .vwk-name { display: block; margin-top: 13px; font-weight: 600; font-size: 13.5px; line-height: 1.6; }
.vwk .vwk-tag {
  display: inline-block;
  margin-top: 7px;
  font-size: 10.5px;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  padding: 2px 14px;
  letter-spacing: 0.14em;
}
.vwk .vwk-desc { display: block; font-size: 12px; color: var(--ink-soft); margin-top: 8px; line-height: 1.8; }

/* =================== Works その他ギャラリー =================== */
.og-grid {
  columns: 3;
  column-gap: 10px;
}
@media (max-width: 640px) { .og-grid { columns: 2; } }
.og-grid .og {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 10px;
  break-inside: avoid;
}
.og-grid .og img, .og-grid .og video { width: 100%; display: block; }

/* =================== Works カテゴリ見出し =================== */
.wcat-head { margin: 0 0 28px; text-align: center; }
.wcat-head .wc-num {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 4px;
}
.wcat-head h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.wcat-head .wc-en {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  color: var(--ink-soft);
}
.wcat { padding: 56px 0; }
.wcat + .wcat { border-top: 1px dashed var(--line); }
.wcat-note { font-size: 12px; color: var(--ink-soft); margin-top: 24px; }

/* 縦型動画の見せ方 */
.ft-vertical { display: flex; justify-content: center; background: var(--bg); padding: 20px 0; margin-bottom: 12px; }
.ft-vertical video { width: 100%; max-width: 300px; display: block; }

.vwk .vwk-thumb.tall { aspect-ratio: 9 / 16; }
.vwk .vwk-thumb.tall::after { content: none; }
.vwk .vwk-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 小さめの補足サムネ帯 */
.mini-strip { margin-top: 22px; }
.mini-strip .ms-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.mini-strip .ms-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mini-strip .ms-item {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}
.mini-strip .ms-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.mini-strip .ms-item:hover img { transform: scale(1.04); }

/* =================== 広告運用ブロック =================== */
.ops-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 6px 0 24px;
}
.ops-flow .of-step { flex: 1; text-align: center; }
.ops-flow .of-num {
  width: 40px; height: 40px;
  margin: 0 auto 8px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
}
.ops-flow .of-step p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--ink);
  line-height: 1.6;
}
.ops-flow .of-arrow {
  display: flex; align-items: center;
  color: var(--line);
  font-size: 15px;
  padding: 0 2px;
  margin-top: -22px;
}
.ops-shots {
  background: var(--bg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 168px 208px;
  gap: 14px;
  margin-bottom: 14px;
}
.ops-shots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(44,52,47,0.13);
}
.ops-shots .os-banner { grid-column: 1; grid-row: 1; }
.ops-shots .os-lp { grid-column: 1; grid-row: 2; object-position: top; }
.ops-shots .os-line1 { grid-column: 2; grid-row: 1 / 3; object-position: top; }
.ops-shots .os-line2 { grid-column: 3; grid-row: 1 / 3; object-position: top; }
.ops-shots-cap {
  font-size: 10.5px;
  color: var(--ink-soft);
  letter-spacing: 0.14em;
  text-align: center;
  margin: 10px 0 18px;
}

/* 角丸の統一 */
.wk, .vwk, .feat { border-radius: 16px; }
.wk .wk-thumb, .vwk .vwk-thumb { border-radius: 10px; overflow: hidden; }
.wk .wk-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat .ft-visual img, .feat .ft-visual video, .feat .ft-row img, .feat .ft-row video { border-radius: 10px; }
.feat .ft-scroll { border-radius: 10px; }
.mini-strip .ms-item { border-radius: 10px; overflow: hidden; }

/* 動画の補足タイル（説明なし） */
.vwk-stack { display: flex; flex-direction: column; gap: 20px; justify-content: flex-start; }
.vwk-stack video {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(44,52,47,0.08);
}

.vwk .vwk-thumb.wide { aspect-ratio: 16 / 9; }
.vwk .vwk-thumb.wide video { width: 100%; height: 100%; object-fit: cover; }
.vwk span.vwk-thumb.wide::after { content: none; }
a.vwk-thumb.wide { display: block; position: relative; overflow: hidden; border-radius: 10px; background: var(--circle); }
a.vwk-thumb.wide img { width: 100%; height: 100%; object-fit: cover; }

/* =================== Service アイコン（動くラインアート） =================== */
.svc-circle svg { overflow: visible; }
.svc-circle svg * { transform-box: fill-box; }

@keyframes svc-spin { to { transform: rotate(360deg); } }
@keyframes svc-drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-3px,-3px); } }
@keyframes svc-drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(3px,3px); } }
@keyframes svc-lines { 0% { opacity: 0; transform: translateY(4px); } 25%,75% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-3px); } }
@keyframes svc-bar { 0%,100% { transform: scaleY(0.45); } 50% { transform: scaleY(1); } }
@keyframes svc-pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.12); opacity: .75; } }

.sv-orbit { stroke-dasharray: 5 9; transform-origin: center; animation: svc-spin 14s linear infinite; }
.sv-play { transform-origin: center; animation: svc-pulse 3.6s ease-in-out infinite; }
.sv-layer1 { animation: svc-drift 5s ease-in-out infinite; }
.sv-layer2 { animation: svc-drift2 5s ease-in-out infinite; }
.sv-line1 { animation: svc-lines 3.6s ease-in-out infinite; }
.sv-line2 { animation: svc-lines 3.6s ease-in-out infinite .5s; }
.sv-line3 { animation: svc-lines 3.6s ease-in-out infinite 1s; }
.sv-bar1 { transform-origin: bottom; animation: svc-bar 3.2s ease-in-out infinite; }
.sv-bar2 { transform-origin: bottom; animation: svc-bar 3.2s ease-in-out infinite .4s; }
.sv-bar3 { transform-origin: bottom; animation: svc-bar 3.2s ease-in-out infinite .8s; }

/* 手描き風スケッチアイコン */
@keyframes sv-wobble { 0%,100% { transform: rotate(-1.6deg); } 50% { transform: rotate(1.2deg); } }
@keyframes sv-draw {
  0% { stroke-dashoffset: var(--l, 400); opacity: 0; }
  6% { opacity: 1; }
  58% { stroke-dashoffset: 0; opacity: 1; }
  86% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
.sv-sketch { transform-origin: center; transform-box: fill-box; animation: sv-wobble 8s ease-in-out infinite; }
.sv-d { stroke-dasharray: var(--l, 400); animation: sv-draw 6s ease-in-out infinite; }
.sv-d2 { animation-delay: .6s; }
.sv-d3 { animation-delay: 1.1s; }
.sv-ghost { opacity: .18; }
