    .lp-reform *, .lp-reform *::before, .lp-reform *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    :root {
      /* Palette anchored to brand brown DIC 502 (#7F6F53 / Pantone 7531C) */
      --c-bg: #FBF8F1;          /* brighter warm off-white */
      --c-bg-soft: #F1EBDD;     /* brighter cream */
      --c-bg-accent: #E4D9C5;   /* brighter olive-beige */
      --c-bg-pink: #EDE0CB;     /* brighter neutral warm */
      --c-bg-deep: #6A5C49;     /* mid brown for deep surfaces */
      --c-text: #7F6F53;        /* DIC 502 — main brand brown (logo color) */
      --c-text-sub: #A89678;    /* brighter sub */
      --c-text-mute: #C7B696;   /* brighter mute */
      --c-line: #E5DBC8;        /* brighter line */
      --c-accent: #A8957D;      /* brighter accent */
      --c-white: #ffffff;
      --font-en: "Playfair Display", "Times New Roman", serif;
      --font-ja: "Noto Sans JP", -apple-system, sans-serif;
      --font-ja-serif: "Noto Serif JP", "Yu Mincho", serif;
      --trans: 0.7s cubic-bezier(0.25,0.1,0.25,1);
      --trans-slow: 1.2s cubic-bezier(0.25,0.1,0.25,1);
    }

    .lp-reform {
      font-family: var(--font-ja);
      font-weight: 300;
      font-size: 20px;
      line-height: 2.1;
      color: var(--c-text);
      background-color: var(--c-bg);
      letter-spacing: 0.12em;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* 明朝案（index.html）: 本文もしっぽり明朝に統一 */
    .lp-reform.is-mincho {
      --font-ja: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", serif;
      --font-ja-serif: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", serif;
      font-weight: 400;
    }

    .lp-reform a { color: inherit; text-decoration: none; transition: opacity var(--trans); }
    .lp-reform a:hover { opacity: 0.7; }
    .lp-reform img { max-width: 100%; display: block; }

    /* Placeholders */
    .placeholder-img {
      background: linear-gradient(135deg, #ECDDD0 0%, #D8C9B8 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    .placeholder-img::after {
      content: "PHOTO";
      font-family: var(--font-en);
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.25em;
      color: var(--c-accent);
      opacity: 0.7;
    }
    .placeholder-img:has(> img) { background: none; }
    .placeholder-img:has(> img)::after { display: none; }
    .placeholder-img > img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      filter: saturate(0.9);
    }
    .placeholder-video__poster {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; z-index: 0; opacity: 0.7;
    }
    .placeholder-video {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      background: linear-gradient(135deg, #3D332B 0%, #2B2520 100%);
      overflow: hidden;
    }
    .placeholder-video__inner {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .placeholder-video__play {
      width: 64px; height: 64px;
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .placeholder-video__play::after {
      content: ""; width: 0; height: 0;
      border-left: 16px solid rgba(255,255,255,0.7);
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      margin-left: 4px;
    }
    .placeholder-video__label {
      font-family: var(--font-en);
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.15em;
      color: rgba(255,255,255,0.5);
    }

    .note {
      display: inline-block;
      background-color: #FFF9E6;
      border: 1px solid #F0E6C0;
      padding: 4px 12px;
      font-size: 16px;
      color: #8B7A4A;
      line-height: 1.6;
      margin-top: 8px;
    }
    .tag-required, .tag-temp {
      display: inline-block;
      font-size: 12px;
      padding: 2px 8px;
      letter-spacing: 0.05em;
      margin-left: 4px;
    }
    .tag-required { background:#FFF0F0;border:1px solid #E8C0C0;color:#A05050; }
    .tag-temp { background:#F0F0F0;border:1px solid #D0D0D0;color:#888; }

    /* ============================================
       Loader
       ============================================ */
    .c-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background-color: var(--c-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.8s, visibility 0.8s;
    }
    .c-loader.is-hidden {
      opacity: 0;
      visibility: hidden;
    }
    .c-loader__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
    }
    .c-loader__logo {
      width: 56px;
      height: auto;
      opacity: 0;
      animation: c-loader-fadein 0.9s ease forwards;
    }
    .c-loader__line {
      display: block;
      width: 120px;
      height: 1px;
      background-color: var(--c-line);
      position: relative;
      overflow: hidden;
    }
    .c-loader__line::after {
      content: "";
      position: absolute;
      inset: 0;
      background-color: var(--c-accent);
      transform: scaleX(0);
      transform-origin: left;
      animation: c-loader-line 1.4s ease-out 0.3s forwards;
    }
    @keyframes c-loader-fadein { to { opacity: 1; } }
    @keyframes c-loader-line { to { transform: scaleX(1); } }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.2s, transform 1.2s; }
    .reveal.is-in { opacity: 1; transform: translateY(0); }

    /* ============================================
       Hero — peel back fixed bg
       ============================================ */
    .c-hero {
      position: relative;
      width: 100%;
      height: 100vh;
      z-index: 1;
      overflow: hidden;
      background-color: var(--c-bg-deep);
    }
    .c-hero__media {
      position: absolute;
      inset: 0;
    }
    .c-hero__media iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100vw;
      height: 56.25vw;
      min-width: 177.78vh;
      min-height: 100vh;
      border: 0;
      pointer-events: none;
    }
    .c-hero__media .placeholder-img {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #2A2520 0%, #1A1816 100%);
    }
    .c-hero__media .placeholder-img > img {
      filter: saturate(0.85) brightness(0.8);
    }
    .c-hero__media .placeholder-img::after {
      content: "TEASER VIDEO — 自動再生・ミュート・ループ";
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.4);
    }
    .c-hero__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.5) 100%);
    }
    .c-hero__content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      text-align: left;
      color: var(--c-white);
      padding: 0 60px 80px;
    }
    .c-hero__copy {
      display: inline-block;
      writing-mode: horizontal-tb;
      font-family: var(--font-ja-serif);
      font-weight: 400;
      font-size: clamp(32px, 3.6vw, 48px);
      line-height: 1.45;
      letter-spacing: 0.22em;
      color: var(--c-white);
      text-shadow: 0 2px 24px rgba(0,0,0,0.3);
    }
    /* eyebrow + English copy: bottom-left of hero */
    .c-hero__meta {
      position: absolute;
      left: clamp(24px, 4vw, 56px);
      bottom: 44px;
      z-index: 2;
      text-align: left;
      color: var(--c-white);
    }
    .c-hero__eyebrow {
      display: block;
      font-family: var(--font-en);
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.35em;
      color: rgba(255,255,255,0.9);
      margin-bottom: 10px;
      text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    }
    .c-hero__copy-en {
      display: block;
      font-family: var(--font-en);
      font-style: italic;
      font-size: 20px;
      letter-spacing: 0.16em;
      color: rgba(255,255,255,0.85);
      line-height: 1.5;
      text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    }
    .c-hero__scroll {
      position: absolute;
      bottom: 40px; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .c-hero__scroll-line {
      width: 1px;
      height: 44px;
      background-color: rgba(255,255,255,0.6);
      animation: c-scroll-line 1.8s ease-in-out infinite;
    }
    @keyframes c-scroll-line {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }
    .c-hero__scroll-text {
      font-family: var(--font-en);
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.3em;
      color: rgba(255,255,255,0.85);
    }

    /* ============================================
       Main: scrolls over fixed hero
       ============================================ */
    .c-main {
      position: relative;
      z-index: 2;
      margin-top: 0;
      background-color: var(--c-bg);
    }

    /* Common section header */
    .c-section-num {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-en);
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.25em;
      color: var(--c-accent);
      margin-bottom: 24px;
    }
    .c-section-num::before {
      content: "—";
    }

    /* ============================================
       Concept
       ============================================ */
    .c-concept {
      padding: 160px 64px 200px;
      background-color: var(--c-bg);
    }
    .c-concept__head {
      max-width: 800px;
      margin: 0 auto 96px;
      text-align: center;
    }
    .c-concept__title {
      font-family: var(--font-en);
      font-weight: 400;
      font-size: clamp(32px, 3.6vw, 48px);
      letter-spacing: 0.04em;
      color: var(--c-text);
      margin: 0 0 16px;
      line-height: 1.2;
    }
    .lp-reform .c-concept__title-amp {
      display: inline;
      font-size: inherit;
      font-family: var(--font-ja-serif);
    }
    .c-concept__lead {
      font-family: var(--font-ja);
      font-weight: 400;
      font-size: clamp(24px, 2.8vw, 32px);
      line-height: 1.8;
      letter-spacing: 0.18em;
      color: var(--c-text);
      margin: 56px 0 36px;
    }
    .c-concept__sub {
      font-family: var(--font-ja-serif);
      font-size: 20px;
      line-height: 2.6;
      letter-spacing: 0.18em;
      color: var(--c-text);
      margin: 0;
    }

    .c-concept__body {
      max-width: 680px;
      margin: 0 auto 140px;
      text-align: center;
    }
    .c-concept__body p {
      font-size: 20px;
      line-height: 2.4;
      color: var(--c-text-sub);
      letter-spacing: 0.1em;
    }

    /* Parallax collage — 8 photos at staggered positions */
    .c-concept__collage {
      position: relative;
      width: 100vw;
      left: 50%;
      transform: translateX(-50%);
      max-width: none;
      height: 1100px;
      overflow: visible;
    }
    .c-concept__photo {
      position: absolute;
      overflow: hidden;
      background-color: var(--c-bg-soft);
      will-change: transform;
      margin: 0;
    }
    .c-concept__photo .placeholder-img {
      width: 100%;
      height: 100%;
      transition: transform var(--trans-slow);
    }
    .c-concept__photo:hover .placeholder-img { transform: scale(1.05); }
    .c-concept__photo--1 { top: 0;    left: 6%;  width: 22%; aspect-ratio: 4/5; z-index: 1; }
    .c-concept__photo--2 { top: 80px; left: 32%; width: 18%; aspect-ratio: 3/4; z-index: 2; }
    .c-concept__photo--3 { top: 30px; right: 8%; width: 24%; aspect-ratio: 4/5; z-index: 1; }
    .c-concept__photo--4 { top: 460px; left: 18%; width: 16%; aspect-ratio: 4/5; z-index: 3; }
    .c-concept__photo--5 { top: 440px; left: 38%; width: 30%; aspect-ratio: 16/9; z-index: 2; }
    .c-concept__photo--6 { top: 540px; right: 4%; width: 18%; aspect-ratio: 3/4; z-index: 1; }
    .c-concept__photo--7 { top: 820px; left: 8%; width: 26%; aspect-ratio: 4/3; z-index: 2; }
    .c-concept__photo--8 { top: 800px; right: 14%; width: 22%; aspect-ratio: 4/5; z-index: 1; }

    /* ============================================
       MV bridge fixed-bg panel
       ============================================ */
    .c-mvpanel {
      position: relative;
      width: 100%;
      height: 480px;
      overflow: hidden;
      background-color: var(--c-bg-deep);
    }
    .c-mvpanel__bg {
      position: absolute;
      top: -80px;
      left: 0;
      width: 100%;
      height: calc(100% + 160px);
      background-image: url('/reform/img/img_teaser.jpg');
      background-color: #4A3D32;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    @supports (-webkit-touch-callout: none) {
      .c-mvpanel__bg { background-attachment: scroll; }
    }
    .c-mvpanel__bg::after {
      font-family: var(--font-en);
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.25em;
      color: rgba(255,255,255,0.35);
    }
    .c-mvpanel__copy {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--c-white);
      max-width: 600px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .c-mvpanel__copy-jp {
      font-family: var(--font-ja-serif);
      font-size: 24px;
      letter-spacing: 0.2em;
      line-height: 2;
      text-shadow: 0 2px 18px rgba(0,0,0,0.4);
    }

    /* ============================================
       Movie
       ============================================ */
    .c-movie {
      padding: 140px 0;
      background-color: var(--c-bg);
    }
    .c-movie--alt {
      background-color: var(--c-bg-soft);
    }
    .c-movie__inner {
      max-width: 980px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .c-movie__head {
      text-align: center;
      margin-bottom: 56px;
    }
    .c-movie__label {
      font-family: var(--font-en);
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      margin-bottom: 16px;
      display: inline-block;
    }
    .c-movie__label::before { content: "— "; }
    .c-movie__title {
      font-family: var(--font-ja-serif);
      font-size: 28px;
      font-weight: 400;
      letter-spacing: 0.315em;
      color: var(--c-text);
      line-height: 1.8;
    }
    .c-movie__title-en {
      display: block;
      font-family: var(--font-en);
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.12em;
      color: var(--c-accent);
      margin-top: 12px;
    }
    .c-movie__video {
      margin-bottom: 36px;
      border-radius: 4px;
      overflow: hidden;
    }
    .c-movie__desc {
      text-align: center;
      font-size: 20px;
      line-height: 2.3;
      color: var(--c-text-sub);
      max-width: 560px;
      margin: 0 auto;
    }

    /* ============================================
       CTA — soft panel
       ============================================ */
    .c-cta {
      padding: 160px 64px;
      background-color: var(--c-bg);
    }
    .c-cta__panel {
      max-width: 980px;
      margin: 0 auto;
      padding: 88px 80px;
      background-color: var(--c-bg-soft);
      border-radius: 16px;
      text-align: center;
    }
    .c-cta__num {
      display: inline-block;
      font-family: var(--font-en);
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      margin-bottom: 16px;
    }
    .c-cta__num::before { content: "— "; }
    .c-cta__title {
      font-family: var(--font-ja-serif);
      font-size: clamp(24px, 2.8vw, 32px);
      letter-spacing: 0.2em;
      color: var(--c-text);
      margin: 0 0 12px;
      line-height: 1.7;
      font-weight: 500;
    }
    .c-cta__title-en {
      display: block;
      font-family: var(--font-en);
      font-style: italic;
      font-size: 20px;
      letter-spacing: 0.1em;
      color: var(--c-accent);
      margin-top: 16px;
    }
    /* Main CTA: split-wipe (dicson/edoaaY style) */
    .c-cta__main-btn {
      cursor: pointer;
      background-color: var(--c-text);
      width: min(460px, 100%);
      height: 64px;
      line-height: 64px;
      position: relative;
      display: inline-block;
      isolation: isolate;
      box-shadow: 0 4px 18px rgba(61,51,43,0.18);
      margin-top: 48px;
      margin-bottom: 64px;
      overflow: hidden;
    }
    .c-cta__main-btn .c-btn-label {
      color: var(--c-white);
      display: block;
      /* padding-left: 32px; */
      font-family: var(--font-ja-serif);
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0.18em;
      transform-origin: center left;
      transition: color 0.35s ease;
      position: relative;
      z-index: 1;
    }
    .c-cta__main-btn .c-btn-line {
      position: absolute;
      height: 1px;
      background: var(--c-bg-accent);
      width: 38%;
      right: 22px;
      top: 50%;
      transform: scaleX(0.25);
      transform-origin: center right;
      transition: transform 0.35s ease, background-color 0.35s ease;
      z-index: 1;
    }
    .c-cta__main-btn::before,
    .c-cta__main-btn::after {
      content: '';
      background: var(--c-bg-accent);
      height: 50%;
      width: 0;
      position: absolute;
      transition: 0.35s cubic-bezier(0.785,0.135,0.15,0.86);
    }
    .c-cta__main-btn::before { top: 0; left: 0; right: auto; }
    .c-cta__main-btn::after  { bottom: 0; right: 0; left: auto; }
    .c-cta__main-btn:hover::before { width: 100%; right: 0; left: auto; }
    .c-cta__main-btn:hover::after  { width: 100%; left: 0; right: auto; }
    .c-cta__main-btn:hover .c-btn-label { color: var(--c-text); }
    .c-cta__main-btn:hover .c-btn-line { background: var(--c-text); transform: scaleX(1); }

    .c-cta__sub-label {
      display: block;
      font-family: var(--font-en);
      font-style: italic;
      font-size: 16px;
      letter-spacing: 0.3em;
      color: var(--c-accent);
      margin-bottom: 28px;
    }
    .c-cta__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 740px;
      margin: 0 auto;
    }
    /* Sub card: pill with leading dot */
    .c-cta__card {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 22px 16px 22px 28px;
      background-color: var(--c-bg);
      border-radius: 999px;
      font-size: 16px;
      letter-spacing: 0.08em;
      color: var(--c-text);
      transition: background-color var(--trans), color var(--trans), padding var(--trans);
      text-align: center;
    }
    .c-cta__card::before {
      content: "";
      position: absolute;
      left: 16px; top: 50%;
      width: 5px; height: 5px;
      border-radius: 50%;
      background-color: var(--c-accent);
      transform: translateY(-50%);
      transition: background-color var(--trans), width var(--trans);
    }
    .c-cta__card:hover {
      background-color: var(--c-text);
      color: var(--c-white);
      padding-left: 36px;
      opacity: 1;
    }
    .c-cta__card:hover::before {
      background-color: var(--c-accent);
      width: 12px;
      border-radius: 4px;
    }

    /* ============================================
       Floating Contact Button (split-wipe hover)
       ============================================ */
    .lp-floating-contact {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 200;
      display: inline-block;
      width: 220px;
      height: 60px;
      background-color: var(--c-text);
      box-shadow: 0 4px 18px rgba(61,51,43,0.25);
      overflow: hidden;
      cursor: pointer;
      isolation: isolate;
    }
    .lp-floating-contact__text {
      position: relative;
      z-index: 1;
      display: block;
      padding-left: 28px;
      color: var(--c-white);
      font: 500 12px/60px var(--font-ja);
      letter-spacing: 0.32em;
      transition: color 0.35s ease;
    }
    .lp-floating-contact__line {
      position: absolute;
      right: 18px;
      top: 50%;
      width: 40%;
      height: 1px;
      background: var(--c-bg-accent);
      transform: scaleX(0.25);
      transform-origin: right center;
      transition: transform 0.35s ease, background-color 0.35s ease;
      z-index: 1;
    }
    .lp-floating-contact::before,
    .lp-floating-contact::after {
      content: "";
      position: absolute;
      width: 0;
      height: 50%;
      background-color: var(--c-bg);
      transition: width 0.4s cubic-bezier(0.785,0.135,0.15,0.86);
    }
    .lp-floating-contact::before { top: 0; left: 0; }
    .lp-floating-contact::after  { bottom: 0; right: 0; }
    .lp-floating-contact:hover::before { width: 100%; left: auto; right: 0; }
    .lp-floating-contact:hover::after  { width: 100%; right: auto; left: 0; }
    .lp-floating-contact:hover .lp-floating-contact__text { color: var(--c-text); }
    .lp-floating-contact:hover .lp-floating-contact__line { transform: scaleX(1); background-color: var(--c-text); }

    /* Floating Service Link — 動画LP→サービスLPの導線（サービスLP側のバナーと同トーン） */
    .lp-floating-contact--service {
      width: 280px;
      background-color: #FAEAE8;
      box-shadow: 0 4px 18px rgba(61,51,43,0.18);
    }
    .lp-floating-contact--service .lp-floating-contact__text {
      color: var(--c-text);
      letter-spacing: 0.12em;
    }
    .lp-floating-contact--service .lp-floating-contact__line { background: var(--c-text); }
    .lp-floating-contact--service::before,
    .lp-floating-contact--service::after { background-color: var(--c-white); }
    .lp-floating-contact--service:hover .lp-floating-contact__text { color: var(--c-text); }
    .lp-floating-contact--service:hover .lp-floating-contact__line { background-color: var(--c-text); }

    /* Utilities */
    .u-mobile-only { display: none; }

    @media (max-width: 768px) {
      .lp-floating-contact { width: 180px; height: 52px; right: 16px; bottom: 16px; }
      .lp-floating-contact__text { font-size: 16px; line-height: 52px; padding-left: 22px; letter-spacing: 0.25em; }
      .lp-floating-contact--service { width: 224px; }
      .lp-floating-contact--service .lp-floating-contact__text { letter-spacing: 0.08em; }
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .c-concept { padding: 90px 32px 70px; }
      .c-concept__head { margin-bottom: 40px; }
      /* SP: ランダムコラージュ → 高さ固定・幅可変の横スクロール・フィルムストリップ
         縦横比の違いが横のリズムになる。互い違いのオフセットでコラージュ感を残す */
      .c-concept__collage {
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        overflow-x: auto;
        padding: 12px 24px 30px;
        scroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .c-concept__collage::-webkit-scrollbar { display: none; }
      .c-concept__photo {
        position: relative;
        flex: 0 0 auto;
        height: 230px;
        width: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
      }
      /* clones added by the marquee inherit all of the above */
      .c-concept__photo:nth-child(even) { margin-top: 22px; }
      .c-concept__photo .placeholder-img { height: 100%; width: 100%; }
      /* swipe hint: right-aligned over the strip, animated arrow nudges right */
      .c-concept__swipe {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 9px;
        margin: 0 24px 6px;
        color: var(--c-accent);
      }
      .c-concept__swipe-text {
        font-family: var(--font-en);
        font-style: italic;
        font-size: 16px;
        letter-spacing: 0.22em;
      }
      .c-concept__swipe-arrow {
        position: relative;
        width: 34px;
        height: 1px;
        background-color: currentColor;
        animation: c-swipe-nudge 1.6s ease-in-out infinite;
      }
      .c-concept__swipe-arrow::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 6px;
        height: 6px;
        border-top: 1px solid currentColor;
        border-right: 1px solid currentColor;
        transform: translateY(-50%) rotate(45deg);
      }
      .c-mvpanel { height: 320px; }
      .c-movie { padding: 100px 0; }
      .c-cta { padding: 100px 24px; }
      .c-cta__panel { padding: 56px 32px; }
      .c-cta__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .u-mobile-only { display: inline; }

      .c-cta__panel { padding: 48px 24px; border-radius: 12px; }

      /* Hero: place eyebrow + English copy directly under the vertical headline, centered */
      .c-hero__meta { position: static; left: auto; bottom: auto; margin-top: 26px; text-align: center; }
      .c-hero__eyebrow { font-size: 16px; margin-bottom: 7px; }
      .c-hero__copy-en { font-size: 16px; letter-spacing: 0.12em; }
      .c-hero__content { padding: 0 24px 48px; }
      .c-hero__copy { font-size: 30px; }

      /* Concept lead: tighten tracking so the line fits at 375px (and down to ~360px) */
      .c-concept__lead { letter-spacing: 0.12em; }

      /* CTA button: fit the label into the narrower (panel-width) button; hide the line that overlaps the text */
      .c-cta__main-btn .c-btn-label { padding-left: 0; font-size: 16px; letter-spacing: 0.12em; }
      .c-cta__main-btn .c-btn-line { display: none; }
      .c-cta__card {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 16px;
        letter-spacing: 0.04em;
      }
      .c-cta__card::before {
        display: none;
      }
      .c-hero {
      height: 65vh;
    }
    }
    @media (max-width: 767px) {
    .c-concept__sub, .c-movie__desc {
      font-size: 16px;
    }
    .lp-floating-contact__text {
      font-size: 12px;
    }
    .c-cta__grid {
    display: block;
  }
.c-cta__card {
  margin: 0 auto 30px;
}
  }