/*
Theme Name: 松本塗装 (PAINT LAB 枚方店)
Theme URI:  https://hirakatatosou.com/
Author:     松本塗装
Author URI: https://hirakatatosou.com/
Description: 大阪府枚方市の塗装専門店 松本塗装（PAINT LAB 枚方店）の公式テーマ。外壁塗装・屋根塗装・板金工事・防水工事のサービスサイト。
Version:    1.0.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: 制限あり (Proprietary)
Text Domain: matsumoto-paint
Tags: business, portfolio, custom-menu, featured-images, full-width-template, translation-ready
*/


/* ============================================
   Combined stylesheet for 松本塗装 (PAINT LAB 枚方店)
   ============================================ */

/* ============================================
   index.html
   ============================================ */

  :root {
    --orange: #f5732a;
    --orange-soft: #ff8a3d;
    --pink: #ec5b8a;
    --pink-deep: #d94276;
    --blue: #2f7fea;
    --blue-deep: #2466c8;
    --blue-dark: #1a3a8c;
    --teal: #3fc1c0;
    --teal-deep: #25a09e;
    --yellow: #f5c742;
    --green: #25c466;
    --ink: #2a2a2a;
    --gray: #6b6b6b;
    --gray-light: #999;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ================= HEADER ================= */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .header-inner {
    max-width: 1280px; margin: 0 auto; padding: 14px 32px;
    display: flex; align-items: center; gap: 32px;
  }
  .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
  .logo-text { line-height: 1.15; }
  .logo-text .lt-main { font-weight: 900; font-size: 22px; letter-spacing: 1px; color: var(--blue-dark); }
  .logo-text .lt-main .lt-branch {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background: var(--blue);
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: 3px;
    margin-left: 4px;
  }
  .logo-text .lt-sub { font-size: 11px; color: #555; letter-spacing: 2px; margin-top: 2px; }

  nav.main-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
  nav.main-nav a {
    font-size: 15px; font-weight: 700; color: var(--ink);
    transition: color 0.2s, transform 0.2s;
    cursor: pointer;
    position: relative;
  }
  nav.main-nav a::after {
    content: ""; position: absolute;
    left: 50%; bottom: -6px;
    width: 0; height: 3px;
    background: var(--blue); border-radius: 2px;
    transition: width 0.25s ease, left 0.25s ease;
  }
  nav.main-nav a:hover { color: var(--blue); }
  nav.main-nav a:hover::after { width: 100%; left: 0; }
  nav.main-nav a.current { color: var(--blue); }
  nav.main-nav a.current::after { width: 100%; left: 0; }

  .header-cta { display: flex; gap: 10px; flex-shrink: 0; }
  .btn-quote, .btn-line {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 18px; border-radius: 10px;
    font-weight: 700; font-size: 13px; color: #fff;
    box-shadow: 0 4px 0 rgba(0,0,0,0.08);
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .btn-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .btn-quote:hover, .btn-line:hover { transform: translateY(-1px); box-shadow: 0 5px 0 rgba(0,0,0,0.12); }
  .btn-icon { width: 18px; height: 18px; }

  /* ===== Hamburger button (mobile only) ===== */
  .hamburger-btn {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    z-index: 110;
    position: relative;
  }
  .hamburger-btn span {
    width: 26px; height: 3px;
    background: var(--blue-dark);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, background 0.3s;
    transform-origin: center;
  }
  .hamburger-btn.active span { background: var(--pink); }
  .hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* ===== Mobile Drawer (hidden on desktop) ===== */
  .mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
  }
  .mobile-drawer.open { pointer-events: auto; }
  .drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(20, 30, 60, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-drawer.open .drawer-backdrop { opacity: 1; }
  .drawer-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 84%;
    max-width: 340px;
    background: #fff;
    padding: 68px 22px 28px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(20,30,60,0.18);
    display: flex;
    flex-direction: column;
  }
  .mobile-drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-close {
    position: absolute;
    top: 14px; right: 16px;
    width: 40px; height: 40px;
    font-size: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--ink);
    line-height: 1;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
  }
  .drawer-close:hover { background: #f5f5f5; transform: rotate(90deg); }
  .drawer-logo {
    line-height: 1.15;
    padding: 0 4px 16px;
    border-bottom: 2px solid #f0f3f8;
    margin-bottom: 14px;
  }
  .drawer-logo .lt-main {
    font-weight: 900; font-size: 18px; color: var(--blue-dark); letter-spacing: 0.5px;
  }
  .drawer-logo .lt-main .lt-branch {
    display: inline-block;
    font-size: 11px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue);
    padding: 2px 7px; border-radius: 4px;
    margin-left: 4px; vertical-align: 2px;
  }
  .drawer-logo .lt-sub { font-size: 10px; color: #666; letter-spacing: 1.5px; margin-top: 3px; }

  .drawer-nav { list-style: none; margin-bottom: 22px; }
  .drawer-nav li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-drawer.open .drawer-nav li {
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-drawer.open .drawer-nav li:nth-child(1) { transition-delay: 0.10s; }
  .mobile-drawer.open .drawer-nav li:nth-child(2) { transition-delay: 0.14s; }
  .mobile-drawer.open .drawer-nav li:nth-child(3) { transition-delay: 0.18s; }
  .mobile-drawer.open .drawer-nav li:nth-child(4) { transition-delay: 0.22s; }
  .mobile-drawer.open .drawer-nav li:nth-child(5) { transition-delay: 0.26s; }
  .mobile-drawer.open .drawer-nav li:nth-child(6) { transition-delay: 0.30s; }
  .mobile-drawer.open .drawer-nav li:nth-child(7) { transition-delay: 0.34s; }
  .drawer-nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 6px;
    font-size: 16px; font-weight: 700;
    color: var(--ink);
    border-bottom: 1px dashed #e8e8e8;
    cursor: pointer;
    transition: color 0.2s, padding-left 0.2s;
  }
  .drawer-nav a::after {
    content: "›";
    font-size: 22px;
    color: #c8c8c8;
    font-weight: 400;
    transition: color 0.2s, transform 0.2s;
  }
  .drawer-nav a:hover { color: var(--blue); padding-left: 12px; }
  .drawer-nav a:hover::after { color: var(--blue); transform: translateX(4px); }
  .drawer-nav a.current { color: var(--blue); padding-left: 12px; }
  .drawer-nav a.current::after { color: var(--blue); }

  .drawer-cta {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: auto;
    padding-top: 16px;
  }
  .drawer-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.12);
    transition: transform 0.15s;
  }
  .drawer-cta a:hover { transform: translateY(-2px); }
  .drawer-cta a svg { width: 18px; height: 18px; }
  .drawer-cta-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .drawer-cta-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .drawer-cta-tel {
    background: #fff;
    color: var(--blue-dark) !important;
    border: 2px solid var(--blue);
    box-shadow: 0 4px 0 rgba(47,127,234,0.2) !important;
  }
  body.drawer-open { overflow: hidden; }

  /* ================= HERO ================= */
  .hero {
    position: relative;
    padding: 42px 0 110px;
    overflow: hidden;
  }
  .hero-inner {
    max-width: 1220px; margin: 0 auto; padding: 0 32px;
    position: relative;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: start;
  }
  .hero-left { position: relative; padding-top: 12px; z-index: 5; }
  .hero-script {
    width: 320px; margin-bottom: 6px;
    position: relative; z-index: 6;
  }
  .hero-title {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 1.24;
    letter-spacing: -0.5px;
    color: #1f2a44;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  .hero-title .line {
    display: block;
    white-space: nowrap;
  }
  .hero-title .em {
    color: var(--pink);
    position: relative;
    display: inline-block;
  }
  .hero-title .em::before {
    content: ""; position: absolute;
    left: -6px; right: -6px; bottom: 8px; height: 18px;
    background: rgba(245, 199, 66, 0.55);
    z-index: -1; border-radius: 4px;
  }
  .hero-sub {
    margin-top: 24px;
    font-size: 18px; color: #444; line-height: 1.95;
    font-weight: 500;
  }

  /* ----- Hero badges (CSS text instead of PNG labels) ----- */
  .badge-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 36px;
    max-width: 520px;
  }
  .badge {
    background: #fff;
    border-radius: 16px;
    padding: 14px 4px 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(50, 80, 140, 0.09);
    border: 1px solid rgba(0,0,0,0.03);
  }
  .badge-icon {
    width: 72px; height: 72px;
    margin: 0 auto 6px;
    display: flex; align-items: center; justify-content: center;
  }
  .badge-icon img,
  .badge-icon svg { width: 100%; height: 100%; object-fit: contain; }
  .badge-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--blue-dark);
    letter-spacing: 0.5px;
  }

  /* ----- Hero CTAs (CSS instead of PNGs) ----- */
  .hero-cta-row {
    display: flex; gap: 16px; margin-top: 36px;
    align-items: center; flex-wrap: wrap;
  }
  .cta-primary, .cta-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 64px;
    padding: 0 32px;
    border-radius: 999px;
    font-weight: 900; font-size: 18px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
  }
  .cta-primary {
    background: linear-gradient(180deg, #ff8a3d, #f5732a);
    color: #fff;
    box-shadow: 0 7px 0 #c2541a, 0 12px 24px rgba(245,115,42,0.32);
  }
  .cta-primary:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 10px 0 #c2541a, 0 16px 28px rgba(245,115,42,0.42);
  }
  .cta-primary::after { content: "→"; font-size: 20px; line-height: 1; }
  .cta-secondary {
    background: #fff; color: var(--blue-deep);
    border: 2px solid var(--blue);
    box-shadow: 0 7px 0 rgba(47,127,234,0.25);
  }
  .cta-secondary:hover {
    transform: translateY(-3px) rotate(1deg);
    background: #f5fafe;
    box-shadow: 0 10px 0 rgba(47,127,234,0.3);
  }
  .cta-secondary::after { content: "→"; font-size: 20px; line-height: 1; }

  /* hero right */
  .hero-right {
    position: relative; z-index: 1;
    min-height: 520px;
  }
  .hero-house {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(40, 70, 130, 0.18));
    position: relative;
    z-index: 2;
  }
  .hero-staff {
    position: absolute;
    right: -10px; bottom: -30px;
    width: 50%;
    z-index: 4;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.12));
  }
  .hero-cred {
    position: absolute;
    left: -30px; bottom: -20px;
    width: 180px;
    z-index: 3;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15));
    animation: cred-float 4s ease-in-out infinite;
  }
  @keyframes cred-float {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(-6px) rotate(-6deg); }
  }
  .hero-bubble {
    position: absolute;
    right: -10px; top: -20px;
    width: 220px;
    z-index: 6;
    transform: rotate(4deg);
    pointer-events: none;
  }

  /* hero decorative splashes */
  .hero-deco {
    position: absolute; pointer-events: none; z-index: 0;
  }
  .hero-deco img { width: 100%; }
  .deco-tl2 { top: 10px; left: 260px; width: 110px; opacity: 0.85; }
  .deco-tr { top: -20px; right: -60px; width: 260px; transform: rotate(12deg); }
  .deco-bl { bottom: -10px; left: -30px; width: 300px; }
  .deco-br { bottom: 40px; right: -50px; width: 220px; transform: rotate(-10deg); }
  .deco-mid-pink { top: 320px; left: -50px; width: 180px; transform: rotate(-15deg); }
  .deco-yellow-mid { top: 380px; right: 28%; width: 90px; }
  .deco-brush-large {
    position: absolute; left: -100px; bottom: -50px;
    width: 220px; transform: rotate(-25deg); z-index: 1;
    pointer-events: none;
  }

  /* ================= SECTION HEADERS ================= */
  h2.section-title {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 900;
    color: #1f2a44;
    letter-spacing: 0.5px;
  }

  /* ================= WORKS ================= */
  .works {
    padding: 100px 0 110px;
    background: #fff;
    position: relative;
  }
  .works-head {
    max-width: 1180px; margin: 0 auto 44px;
    padding: 0 28px;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
    position: relative;
  }
  .works-head-left .script { width: 240px; margin-bottom: -2px; }
  .works-head-left h2 { font-size: 40px; }
  .works-head-left .desc { margin-top: 10px; color: #777; font-size: 15px; }
  .works-head-right { width: 260px; flex-shrink: 0; margin-bottom: 8px; }
  .works-head-right img { width: 100%; height: auto; }

  .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
  }
  .work-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 8px 26px rgba(50,80,140,0.09);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
  }
  .work-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: 0 16px 36px rgba(50,80,140,0.16); }
  .work-card:nth-child(2):hover { transform: translateY(-8px) rotate(0.5deg); }
  .work-num {
    position: absolute;
    top: -10px; left: 20px;
    width: 56px; height: auto;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
  }
  .work-card:hover .work-num { transform: rotate(-15deg) scale(1.1); }
  .work-num img { width: 100%; }

  .work-photo {
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    background: #e8eef7;
    margin-bottom: 16px;
  }
  .work-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .work-card:hover .work-photo img { transform: scale(1.08); }
  .work-loc {
    font-size: 16px; font-weight: 700; color: #333;
    display: flex; align-items: center; gap: 4px;
    margin-bottom: 8px;
  }
  .work-loc::before {
    content: ""; width: 14px; height: 18px; flex-shrink: 0;
    background: var(--pink);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C7.59 2 4 5.59 4 10c0 5.25 7 11.25 7.29 11.5a1 1 0 001.42 0C13 21.25 20 15.25 20 10c0-4.41-3.59-8-8-8zm0 11a3 3 0 110-6 3 3 0 010 6z'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C7.59 2 4 5.59 4 10c0 5.25 7 11.25 7.29 11.5a1 1 0 001.42 0C13 21.25 20 15.25 20 10c0-4.41-3.59-8-8-8zm0 11a3 3 0 110-6 3 3 0 010 6z'/></svg>") center/contain no-repeat;
  }
  .work-tag {
    display: inline-block;
    font-weight: 800; font-size: 14px;
    margin-bottom: 12px;
  }
  .work-card:nth-child(1) .work-tag { color: var(--blue); }
  .work-card:nth-child(2) .work-tag { color: var(--pink); }
  .work-card:nth-child(3) .work-tag { color: var(--teal); }

  .work-desc {
    font-size: 13px; color: #555; line-height: 1.75;
    margin-bottom: 14px;
  }
  /* ----- CSS-rendered pills ----- */
  .work-meta {
    display: flex; gap: 6px; flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .pill {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px; font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
  }
  .pill-blue { background: var(--blue); }
  .pill-pink { background: var(--pink); }
  .pill-teal { background: var(--teal); }

  .work-price {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px;
    border-top: 1px dashed #e2e2e2;
  }
  .work-price-label {
    font-size: 13px; font-weight: 700; color: #333;
  }
  .work-price-val {
    font-weight: 900; font-size: 34px;
    color: var(--blue);
    line-height: 1;
  }
  .work-price-val .yen { font-size: 17px; margin-left: 2px; font-weight: 800; }
  .work-card:nth-child(2) .work-price-val { color: var(--pink); }
  .work-card:nth-child(3) .work-price-val { color: var(--teal); }

  .work-brush-deco {
    position: absolute;
    left: -38px; bottom: -42px;
    width: 56px; opacity: 0.95;
    pointer-events: none; z-index: 0;
  }
  .works-cta-row {
    text-align: right;
    max-width: 1180px;
    margin: 36px auto 0;
    padding: 0 28px;
  }
  .btn-more {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-weight: 800; font-size: 16px;
    box-shadow: 0 6px 0 var(--blue-deep);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .btn-more:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 9px 0 var(--blue-deep);
  }
  .btn-more-pink {
    background: var(--pink);
    box-shadow: 0 6px 0 var(--pink-deep);
  }
  .btn-more-pink:hover {
    transform: translateY(-3px) rotate(1deg);
    box-shadow: 0 9px 0 var(--pink-deep);
  }

  .voice-cta-row {
    grid-column: 2;
    margin-top: 36px;
    text-align: right;
  }
  @media (max-width: 980px) {
    .voice-cta-row { grid-column: 1; text-align: center; }
  }

  /* ================= VOICE ================= */
  .voice {
    padding: 100px 0 110px;
    position: relative;
    background: #fff;
  }
  .voice-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: start;
    position: relative;
  }
  .voice-head .script { width: 220px; margin-bottom: -2px; }
  .voice-head h2 { font-size: 40px; }
  .voice-head .desc { margin-top: 16px; font-size: 15px; color: #777; line-height: 1.9; }
  .voice-roller-deco {
    position: absolute; left: 24px; bottom: -50px; width: 260px;
    z-index: 0;
  }

  .voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .voice-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(50,80,140,0.09);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s, border-color 0.3s;
  }
  .voice-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 18px 36px rgba(50,80,140,0.16);
    border-color: rgba(236,91,138,0.35);
  }
  .voice-card:nth-child(2):hover { transform: translateY(-8px) rotate(1deg); border-color: rgba(63,193,192,0.4); }
  .voice-card:nth-child(3):hover { transform: translateY(-8px) rotate(-1deg); border-color: rgba(47,127,234,0.35); }
  .voice-photo {
    width: 200px; height: 200px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 6px 20px rgba(50,80,140,0.15);
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
    position: relative;
  }
  .voice-card:hover .voice-photo {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 12px 28px rgba(50,80,140,0.22);
  }
  .voice-card:nth-child(2):hover .voice-photo { transform: scale(1.06) rotate(3deg); }
  .voice-photo img { width: 100%; height: 100%; object-fit: cover; }
  .voice-card:hover .stars { animation: star-pop 0.6s ease; }
  @keyframes star-pop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.18); letter-spacing: 4px; }
  }
  .voice-rating {
    display: flex; align-items: center; gap: 6px;
    justify-content: center;
    margin-bottom: 10px;
  }
  .stars { display: inline-flex; gap: 2px; color: #f5c742; font-size: 18px; letter-spacing: 1px; }
  .rate-num { font-weight: 800; font-size: 15px; color: #333; }
  .voice-title {
    font-weight: 800; font-size: 17px; color: #222;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.55;
  }
  .voice-body {
    font-size: 14px; color: #555; line-height: 1.85;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e2e2e2;
    margin-bottom: 12px;
  }
  .voice-author {
    font-size: 12px; color: #888; font-weight: 600;
    display: flex; align-items: center; gap: 4px;
  }
  .voice-author::before {
    content: ""; width: 10px; height: 14px;
    background: #f48cb0;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C7.59 2 4 5.59 4 10c0 5.25 7 11.25 7.29 11.5a1 1 0 001.42 0C13 21.25 20 15.25 20 10c0-4.41-3.59-8-8-8zm0 11a3 3 0 110-6 3 3 0 010 6z'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C7.59 2 4 5.59 4 10c0 5.25 7 11.25 7.29 11.5a1 1 0 001.42 0C13 21.25 20 15.25 20 10c0-4.41-3.59-8-8-8zm0 11a3 3 0 110-6 3 3 0 010 6z'/></svg>") center/contain no-repeat;
  }

  /* ================= STRENGTH ================= */
  .strength {
    padding: 100px 0 110px;
    background: #fff;
    position: relative;
  }
  .strength-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
  }
  .strength-head .script { width: 180px; margin-bottom: -2px; }
  .strength-head h2 { font-size: 38px; }
  .strength-head .desc { margin-top: 16px; font-size: 14px; color: #777; line-height: 1.9; }

  .strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
  }
  .strength-grid::before {
    content: ""; position: absolute;
    top: 36px; left: 6%; right: 6%; height: 28px;
    background-image: url("v6/tools/image2_part29.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.55;
    z-index: 0;
  }
  .strength-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 8px;
    border-radius: 18px;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), background 0.3s;
    cursor: default;
  }
  .strength-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.6);
  }
  .strength-num {
    width: 68px; height: 68px;
    margin: 0 auto 12px;
    transition: transform 0.45s cubic-bezier(.34,1.56,.64,1);
  }
  .strength-card:hover .strength-num {
    transform: rotate(-15deg) scale(1.12);
  }
  .strength-num img { width: 100%; }

  .strength-icon {
    width: 100%; aspect-ratio: 1/1;
    max-width: 140px; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
  }
  .strength-card:hover .strength-icon {
    animation: icon-bounce 0.7s cubic-bezier(.34,1.56,.64,1);
  }
  @keyframes icon-bounce {
    0% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-12px) scale(1.08); }
    60% { transform: translateY(0) scale(0.96); }
    100% { transform: translateY(0) scale(1); }
  }
  .strength-icon img { width: 100%; height: 100%; object-fit: contain; }

  .strength-title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 900;
    color: var(--blue-dark);
    line-height: 1.4;
    transition: color 0.3s;
  }
  .strength-card:nth-child(1):hover .strength-title { color: var(--teal-deep); }
  .strength-card:nth-child(2):hover .strength-title { color: var(--pink-deep); }
  .strength-card:nth-child(3):hover .strength-title { color: var(--teal-deep); }
  .strength-card:nth-child(4):hover .strength-title { color: var(--orange); }
  .strength-body {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    line-height: 1.85;
    text-align: center;
  }

  /* ================= FAQ ================= */
  .faq {
    padding: 100px 0 110px;
    background: #fff;
    position: relative;
  }
  .faq-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
  }
  .faq-head .script { width: 200px; margin-bottom: -4px; }
  .faq-head h2 { font-size: 32px; line-height: 1.4; }
  .faq-head .desc { margin-top: 16px; font-size: 14px; color: #777; line-height: 1.9; }

  .faq-deco {
    position: absolute; left: 0; bottom: 20px; width: 220px; pointer-events: none;
  }
  .faq-q-deco {
    position: absolute; right: 20px; top: 10px; width: 110px; opacity: 0.55;
  }

  .faq-list { display: flex; flex-direction: column; gap: 14px; }
  .faq-item {
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(50,80,140,0.07);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: border-radius 0.3s, transform 0.25s ease, box-shadow 0.25s ease;
  }
  .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(50,80,140,0.13);
  }
  .faq-item.open { border-radius: 26px; }
  .faq-q-btn {
    width: 100%;
    display: flex; align-items: center; gap: 16px;
    padding: 18px 26px;
    text-align: left;
    cursor: pointer;
    background: transparent;
    transition: background 0.25s;
  }
  .faq-q-btn:hover { background: rgba(47,127,234,0.04); }
  .faq-num {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--blue);
    color: #fff; font-weight: 900; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(.34,1.56,.64,1), background 0.3s;
  }
  .faq-item:hover .faq-num {
    transform: rotate(-12deg) scale(1.12);
    background: var(--pink);
  }
  .faq-q-text {
    flex: 1;
    font-weight: 700; font-size: 16px; color: #222;
    transition: color 0.3s;
  }
  .faq-item:hover .faq-q-text { color: var(--blue-deep); }
  .faq-toggle {
    width: 26px; height: 26px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s;
  }
  .faq-toggle::before, .faq-toggle::after {
    content: ""; position: absolute;
    background: var(--blue);
    border-radius: 2px;
    top: 50%; left: 50%;
  }
  .faq-toggle::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
  .faq-toggle::after {
    width: 2px; height: 16px; transform: translate(-50%, -50%);
    transition: transform 0.3s;
  }
  .faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-item.open .faq-a { max-height: 320px; }
  .faq-a-inner {
    padding: 0 26px 20px 80px;
    color: #555; font-size: 14px; line-height: 1.95;
  }

  /* ================= CTA BAND ================= */
  .ctaband {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: #fff;
  }
  .ctaband-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .ctaband-heading-img {
    width: 100%; max-width: 460px; height: auto;
    margin-bottom: 14px; display: block;
  }
  .ctaband-head p {
    font-size: 14px; color: #555; line-height: 1.8;
  }

  /* ----- CTA feats: CSS instead of PNG ----- */
  .ctaband-feats {
    display: flex; gap: 10px; margin-top: 22px;
    flex-wrap: wrap;
  }
  .feat-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 999px;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-size: 13px; font-weight: 800;
    box-shadow: 0 3px 0 rgba(245,115,42,0.18);
  }
  .feat-chip::before {
    content: "✓"; font-weight: 900; font-size: 14px;
  }

  /* ----- CTA buttons: CSS ----- */
  .ctaband-buttons { display: flex; flex-direction: column; gap: 14px; }
  .cta-band-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 22px 28px; border-radius: 16px;
    color: #fff; font-weight: 900; font-size: 19px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.06);
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.5px;
  }
  .cta-band-btn .icn { width: 22px; height: 22px; flex-shrink: 0; }
  .cta-band-btn.form { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .cta-band-btn.form-shadow { box-shadow: 0 8px 0 #c2541a, 0 14px 24px rgba(245,115,42,0.3); }
  .cta-band-btn.line { background: linear-gradient(180deg, #2bd86b, #1bb358); box-shadow: 0 8px 0 #168a44, 0 14px 24px rgba(43,216,107,0.3); }
  .cta-band-btn:hover { transform: translateY(-2px); }

  /* ----- TEL block: CSS ----- */
  .ctaband-tel {
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    margin-top: 14px;
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .ctaband-tel:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .ctaband-tel:hover .tel-num { color: var(--orange); }
  .tel-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .tel-link:hover { color: var(--orange); text-decoration: underline; }
  .tel-block { display: flex; flex-direction: column; flex: 1; }
  .tel-label-txt {
    font-size: 14px; font-weight: 800;
    color: var(--orange);
    margin-bottom: 2px;
  }
  .tel-num {
    font-size: 30px; font-weight: 900; color: #1f2a44;
    letter-spacing: 1px;
    line-height: 1;
    transition: color 0.2s ease;
  }
  .tel-num::before {
    content: "📞"; font-size: 22px; margin-right: 6px; vertical-align: -2px;
  }
  .tel-hours {
    display: flex; flex-direction: column; align-items: center;
    padding: 8px 14px;
    background: linear-gradient(180deg, #2f7fea, #2466c8);
    color: #fff;
    border-radius: 10px;
    font-weight: 800;
    flex-shrink: 0;
  }
  .tel-hours .hours-label { font-size: 10px; letter-spacing: 1px; opacity: 0.85; }
  .tel-hours .hours-val { font-size: 15px; }

  .ctaband-person {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .ctaband-person img {
    width: 100%; height: auto;
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
  }

  .ctaband-deco {
    position: absolute; pointer-events: none; z-index: 1;
  }
  .ctaband-deco img { width: 100%; }
  .cb-deco-tl { top: 0; left: 0; width: 220px; }
  .cb-deco-tr { top: 0; right: 0; width: 240px; }
  .cb-deco-bl { bottom: 0; left: 60px; width: 220px; }
  .cb-deco-br { bottom: -10px; right: 0; width: 260px; }

  /* ================= FOOTER ================= */
  .site-footer {
    background: #fff;
    padding: 70px 0 40px;
    border-top: 1px solid #f0f0f0;
  }
  .footer-grid {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    align-items: start;
  }
  .footer-brand .logo { margin-bottom: 18px; }
  .footer-brand p {
    font-size: 12px; color: #666; line-height: 1.8;
  }
  .footer-col h4 {
    font-size: 13px; font-weight: 800; color: #777;
    margin-bottom: 14px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    font-size: 13px; color: #333;
    margin-bottom: 8px;
  }
  .footer-info {
    font-size: 13px; color: #333; line-height: 1.9;
  }
  .footer-info .row { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; }
  .footer-info .label { color: #888; font-size: 12px; flex-shrink: 0; min-width: 60px; }

  .footer-copyright {
    text-align: center;
    margin-top: 50px;
    font-size: 12px; color: #999;
  }

  @media (max-width: 1180px) {
    .hero-title { font-size: 56px; }
  }
  @media (max-width: 980px) {
    .hero-title { font-size: 48px; }
    .works-grid { grid-template-columns: 1fr; }
    .voice-inner, .strength-inner, .faq-inner { grid-template-columns: 1fr; }
    .voice-grid { grid-template-columns: 1fr; }
    .strength-grid { grid-template-columns: repeat(2, 1fr); }
    .ctaband-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav.main-nav { display: none; }

    /* ===== Header: hamburger replaces CTAs on mobile ===== */
    .header-inner {
      padding: 10px 16px;
      gap: 12px;
    }
    .logo { gap: 8px; min-width: 0; flex: 1; }
    .logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
    .logo-text .lt-main { font-size: 17px; letter-spacing: 0.3px; }
    .logo-text .lt-main .lt-branch { font-size: 10px; padding: 1px 6px; margin-left: 3px; }
    .logo-text .lt-sub { font-size: 10px; letter-spacing: 1.5px; }
    .header-cta { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-drawer { display: block; }

    /* ===== Hero: reorder so visual sits between subtitle and badges ===== */
    .hero { padding: 28px 0 60px; }
    .hero-inner {
      display: flex;
      flex-direction: column;
      gap: 16px;
      z-index: 5;
    }
    .hero-left { display: contents; }
    .hero-script { order: 1; align-self: flex-start; margin-bottom: 0; }
    .hero-title { order: 2; }
    .hero-sub { order: 3; margin-top: 8px; }
    .hero-right { order: 4; margin-top: 4px; }
    .badge-row { order: 5; margin-top: 12px; max-width: none; }
    .hero-cta-row { order: 6; margin-top: 16px; justify-content: center; }

    .hero-right {
      min-height: auto;
      max-width: 460px;
      margin: 0 auto;
      padding-bottom: 30px;
    }
    .hero-house {
      width: 88%;
      margin: 0 auto;
    }
    .hero-staff {
      width: 42%;
      right: 4%;
      bottom: -10px;
    }
    .hero-cred {
      width: 130px;
      left: 6%;
      bottom: 0;
    }
    .hero-bubble {
      width: 150px;
      right: 4%;
      top: -10px;
    }
    /* tone down hero decorations on mobile so things don't feel busy */
    .deco-tl2, .deco-mid-pink, .deco-yellow-mid, .deco-bl, .deco-br { display: none; }
    .deco-tr { width: 160px; right: -40px; top: -30px; }
    .deco-brush-large { width: 130px; left: -50px; bottom: -20px; }

    /* ===== Voice: move roller deco away from CTA button ===== */
    .voice-roller-deco {
      bottom: auto;
      left: auto;
      top: -10px;
      right: -10px;
      width: 130px;
      opacity: 0.4;
      z-index: 0;
    }
    .voice-cta-row {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .voice-grid { position: relative; z-index: 1; }

    /* ===== FAQ: keep paint bucket purely as background ===== */
    .faq-deco {
      bottom: auto;
      top: 60%;
      left: -40px;
      width: 160px;
      opacity: 0.18;
      z-index: 0;
    }
    .faq-q-deco {
      right: -10px;
      top: -20px;
      width: 80px;
      opacity: 0.3;
      z-index: 0;
    }
    .faq-head { position: relative; z-index: 1; }
    .faq-list { position: relative; z-index: 1; }

    /* ===== CTA band: bring person up next to heading, buttons full-width below ===== */
    .ctaband { padding: 60px 0 60px; }
    .ctaband-inner {
      grid-template-columns: 1fr;
      grid-template-areas:
        "head    person"
        "buttons buttons";
      gap: 16px 14px;
      align-items: start;
    }
    .ctaband-head { grid-area: head; }
    .ctaband-person {
      grid-area: person;
      align-self: end;
    }
    .ctaband-person img { max-height: 220px; }
    .ctaband-buttons { grid-area: buttons; margin-top: 8px; }
    .ctaband-heading-img { max-width: 100%; }
    .ctaband-feats { gap: 6px; }
    .feat-chip { padding: 6px 12px; font-size: 11px; }
  }
  @media (max-width: 480px) {
    .hero-title { font-size: 36px; }
    .badge-row { grid-template-columns: repeat(2, 1fr); }
    .hero-cred { width: 110px; }
    .hero-bubble { width: 130px; }

    /* Header: even tighter on phones */
    .header-inner { padding: 8px 12px; gap: 8px; }
    .logo-text .lt-sub { display: none; }
    .logo-text .lt-main { font-size: 15px; }
    .logo-mark { width: 34px; height: 34px; }
    .hamburger-btn { width: 40px; height: 40px; }
    .hamburger-btn span { width: 22px; height: 3px; }
    .drawer-panel { padding: 60px 18px 22px; }

    /* CTA band on phones: shrink person further, keep balance */
    .ctaband-inner {
      grid-template-columns: 1fr;
    }
    .ctaband-person img { max-height: 190px; }
    .cta-band-btn { font-size: 16px; padding: 18px 20px; }
  }

/* ============================================
   works.html
   ============================================ */

  :root {
    --orange: #f5732a;
    --orange-soft: #ff8a3d;
    --pink: #ec5b8a;
    --pink-deep: #d94276;
    --blue: #2f7fea;
    --blue-deep: #2466c8;
    --blue-dark: #1a3a8c;
    --teal: #3fc1c0;
    --teal-deep: #25a09e;
    --yellow: #f5c742;
    --green: #25c466;
    --ink: #2a2a2a;
    --gray: #6b6b6b;
    --gray-light: #999;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ================= HEADER (shared) ================= */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .header-inner {
    max-width: 1280px; margin: 0 auto; padding: 14px 32px;
    display: flex; align-items: center; gap: 32px;
  }
  .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
  .logo-text { line-height: 1.15; }
  .logo-text .lt-main { font-weight: 900; font-size: 22px; letter-spacing: 1px; color: var(--blue-dark); }
  .logo-text .lt-main .lt-branch {
    display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 8px; border-radius: 4px;
    vertical-align: 3px; margin-left: 4px;
  }
  .logo-text .lt-sub { font-size: 11px; color: #555; letter-spacing: 2px; margin-top: 2px; }
  nav.main-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
  nav.main-nav a {
    font-size: 15px; font-weight: 700; color: var(--ink);
    cursor: pointer; position: relative;
    transition: color 0.2s;
  }
  nav.main-nav a::after {
    content: ""; position: absolute; left: 50%; bottom: -6px;
    width: 0; height: 3px; background: var(--blue); border-radius: 2px;
    transition: width 0.25s ease, left 0.25s ease;
  }
  nav.main-nav a.current { color: var(--blue); }
  nav.main-nav a.current::after { width: 100%; left: 0; }
  nav.main-nav a:hover { color: var(--blue); }
  nav.main-nav a:hover::after { width: 100%; left: 0; }
  .header-cta { display: flex; gap: 10px; flex-shrink: 0; }
  .btn-quote, .btn-line {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 18px; border-radius: 10px;
    font-weight: 700; font-size: 13px; color: #fff;
    box-shadow: 0 4px 0 rgba(0,0,0,0.08);
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .btn-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .btn-quote:hover, .btn-line:hover { transform: translateY(-1px); box-shadow: 0 5px 0 rgba(0,0,0,0.12); }
  .btn-icon { width: 18px; height: 18px; }

  /* hamburger */
  .hamburger-btn {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; background: transparent; border: none; cursor: pointer;
    padding: 0; flex-shrink: 0; z-index: 110; position: relative;
  }
  .hamburger-btn span {
    width: 26px; height: 3px; background: var(--blue-dark); border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, background 0.3s;
  }
  .hamburger-btn.active span { background: var(--pink); }
  .hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* drawer */
  .mobile-drawer { display: none; position: fixed; inset: 0; z-index: 100; pointer-events: none; }
  .mobile-drawer.open { pointer-events: auto; }
  .drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(20, 30, 60, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0; transition: opacity 0.3s ease;
  }
  .mobile-drawer.open .drawer-backdrop { opacity: 1; }
  .drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 84%; max-width: 340px;
    background: #fff; padding: 68px 22px 28px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(20,30,60,0.18);
    display: flex; flex-direction: column;
  }
  .mobile-drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-close {
    position: absolute; top: 14px; right: 16px;
    width: 40px; height: 40px; font-size: 32px;
    background: transparent; border: none; cursor: pointer;
    color: var(--ink); line-height: 1; border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
  }
  .drawer-close:hover { background: #f5f5f5; transform: rotate(90deg); }
  .drawer-logo { line-height: 1.15; padding: 0 4px 16px; border-bottom: 2px solid #f0f3f8; margin-bottom: 14px; }
  .drawer-logo .lt-main { font-weight: 900; font-size: 18px; color: var(--blue-dark); letter-spacing: 0.5px; }
  .drawer-logo .lt-main .lt-branch {
    display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 7px; border-radius: 4px;
    margin-left: 4px; vertical-align: 2px;
  }
  .drawer-logo .lt-sub { font-size: 10px; color: #666; letter-spacing: 1.5px; margin-top: 3px; }
  .drawer-nav { list-style: none; margin-bottom: 22px; }
  .drawer-nav li {
    opacity: 0; transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-drawer.open .drawer-nav li { opacity: 1; transform: translateX(0); }
  .mobile-drawer.open .drawer-nav li:nth-child(1) { transition-delay: 0.10s; }
  .mobile-drawer.open .drawer-nav li:nth-child(2) { transition-delay: 0.14s; }
  .mobile-drawer.open .drawer-nav li:nth-child(3) { transition-delay: 0.18s; }
  .mobile-drawer.open .drawer-nav li:nth-child(4) { transition-delay: 0.22s; }
  .mobile-drawer.open .drawer-nav li:nth-child(5) { transition-delay: 0.26s; }
  .mobile-drawer.open .drawer-nav li:nth-child(6) { transition-delay: 0.30s; }
  .mobile-drawer.open .drawer-nav li:nth-child(7) { transition-delay: 0.34s; }
  .drawer-nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 6px; font-size: 16px; font-weight: 700; color: var(--ink);
    border-bottom: 1px dashed #e8e8e8; cursor: pointer;
    transition: color 0.2s, padding-left 0.2s;
  }
  .drawer-nav a.current { color: var(--blue); padding-left: 12px; }
  .drawer-nav a::after { content: "›"; font-size: 22px; color: #c8c8c8; font-weight: 400; transition: color 0.2s, transform 0.2s; }
  .drawer-nav a.current::after { color: var(--blue); }
  .drawer-nav a:hover { color: var(--blue); padding-left: 12px; }
  .drawer-nav a:hover::after { color: var(--blue); transform: translateX(4px); }
  .drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 16px; }
  .drawer-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 12px; color: #fff; font-weight: 800; font-size: 15px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.12);
    transition: transform 0.15s;
  }
  .drawer-cta a:hover { transform: translateY(-2px); }
  .drawer-cta a svg { width: 18px; height: 18px; }
  .drawer-cta-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .drawer-cta-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .drawer-cta-tel {
    background: #fff; color: var(--blue-dark) !important;
    border: 2px solid var(--blue);
    box-shadow: 0 4px 0 rgba(47,127,234,0.2) !important;
  }
  body.drawer-open { overflow: hidden; }

  /* ================= PAGE HERO ================= */
  .page-hero {
    position: relative;
    padding: 70px 0 50px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, #fdfbf7 0%, #fff 100%);
  }
  .page-hero-inner {
    max-width: 1220px; margin: 0 auto; padding: 0 32px;
    position: relative; z-index: 2;
  }
  .page-hero-script {
    width: 280px; margin: 0 auto 6px;
    display: block;
  }
  .page-hero h1 {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: #1f2a44;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .page-hero p.lead {
    font-size: 16px; color: #555; line-height: 1.9; max-width: 640px; margin: 0 auto;
  }
  .breadcrumb {
    margin-top: 24px;
    font-size: 12px; color: #888;
    display: flex; justify-content: center; gap: 8px;
  }
  .breadcrumb a { color: var(--blue); }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb .sep { color: #ccc; }

  /* hero decorative splashes (mirrored from index) */
  .ph-deco {
    position: absolute; pointer-events: none; z-index: 0;
  }
  .ph-deco img { width: 100%; }
  .ph-deco-tl { top: 20px; left: -50px; width: 170px; opacity: 0.85; }
  .ph-deco-tr { top: -10px; right: -40px; width: 180px; opacity: 0.85; transform: rotate(12deg); }
  .ph-deco-bl { bottom: -20px; left: 50px; width: 130px; opacity: 0.8; }
  .ph-deco-br { bottom: -10px; right: 80px; width: 100px; opacity: 0.85; }

  /* ================= FILTER ================= */
  .works-filter-wrap {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    margin-top: 40px;
  }
  .works-filter {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
    padding-bottom: 24px;
    border-bottom: 1px dashed #e2e2e2;
  }
  .filter-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px; border-radius: 999px;
    background: #fff; color: var(--ink);
    border: 2px solid #e0e6f0;
    font-size: 14px; font-weight: 800;
    transition: all 0.25s ease;
  }
  .filter-chip:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
  .filter-chip.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 5px 0 var(--blue-deep);
  }
  .filter-chip .count { font-size: 11px; opacity: 0.75; font-weight: 600; }

  /* ================= WORKS LIST GRID ================= */
  .works-list {
    padding: 50px 0 80px;
    position: relative;
  }
  .works-list-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
  }
  .works-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
  .work-card {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(50,80,140,0.09);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
  }
  .work-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow: 0 16px 36px rgba(50,80,140,0.16);
  }
  .work-card:nth-child(even):hover { transform: translateY(-8px) rotate(0.5deg); }
  .work-card.hidden { display: none; }

  .work-num {
    position: absolute;
    top: -10px; left: 18px;
    width: 52px;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
  }
  .work-card:hover .work-num { transform: rotate(-15deg) scale(1.1); }
  .work-num img { width: 100%; }

  /* Before/After stacked thumbs */
  .work-thumbs {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
    position: relative;
  }
  .thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8eef7;
  }
  .thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .work-card:hover .thumb img { transform: scale(1.05); }
  .thumb-label {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 11px;
    font-size: 10px; font-weight: 900;
    letter-spacing: 1.5px;
    border-radius: 999px;
    color: #fff;
    backdrop-filter: blur(4px);
    z-index: 2;
  }
  .thumb-before .thumb-label { background: rgba(30,40,60,0.78); }
  .thumb-after .thumb-label { background: rgba(47,127,234,0.95); }
  .thumb-divider {
    position: relative;
    background: #fff;
    height: 26px;
    display: flex; align-items: center; justify-content: center;
  }
  .thumb-divider span {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 8px rgba(245,115,42,0.4);
    position: relative;
    z-index: 1;
  }
  .thumb-divider span::before {
    content: "";
    width: 0; height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #fff;
    margin-top: 2px;
  }
  .thumb-divider::before,
  .thumb-divider::after {
    content: "";
    position: absolute;
    top: 50%; height: 2px;
    background: var(--orange);
    opacity: 0.4;
  }
  .thumb-divider::before { left: 0; right: calc(50% + 18px); }
  .thumb-divider::after { right: 0; left: calc(50% + 18px); }

  .work-loc {
    font-size: 15px; font-weight: 700; color: #333;
    display: flex; align-items: center; gap: 4px;
    margin-bottom: 8px;
  }
  .work-loc::before {
    content: ""; width: 13px; height: 17px; flex-shrink: 0;
    background: var(--pink);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C7.59 2 4 5.59 4 10c0 5.25 7 11.25 7.29 11.5a1 1 0 001.42 0C13 21.25 20 15.25 20 10c0-4.41-3.59-8-8-8zm0 11a3 3 0 110-6 3 3 0 010 6z'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C7.59 2 4 5.59 4 10c0 5.25 7 11.25 7.29 11.5a1 1 0 001.42 0C13 21.25 20 15.25 20 10c0-4.41-3.59-8-8-8zm0 11a3 3 0 110-6 3 3 0 010 6z'/></svg>") center/contain no-repeat;
  }
  .work-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 11px; font-weight: 800;
    color: #fff;
    background: var(--blue);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
  .work-card[data-cat="exterior"] .work-tag { background: var(--blue); }
  .work-card[data-cat="roof"] .work-tag { background: var(--orange); }
  .work-card[data-cat="both"] .work-tag { background: var(--pink); }
  .work-desc {
    font-size: 12px; color: #666; line-height: 1.75;
    margin-bottom: 12px;
    min-height: 40px;
  }
  .work-meta {
    display: flex; gap: 5px; flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .pill {
    display: inline-block;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 11px; font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
  }
  .pill-blue { background: var(--blue); }
  .pill-pink { background: var(--pink); }
  .pill-teal { background: var(--teal); }
  .pill-orange { background: var(--orange); }
  .work-price {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dashed #e2e2e2;
  }
  .work-price-label { font-size: 12px; font-weight: 700; color: #333; }
  .work-price-val { font-weight: 900; font-size: 28px; line-height: 1; color: var(--blue); }
  .work-price-val .yen { font-size: 14px; margin-left: 2px; font-weight: 800; }
  .work-card[data-cat="exterior"] .work-price-val { color: var(--blue); }
  .work-card[data-cat="roof"] .work-price-val { color: var(--orange); }
  .work-card[data-cat="both"] .work-price-val { color: var(--pink); }

  /* PAGINATION */
  .pagination {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 60px;
  }
  .page-num {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e6f0;
    color: var(--ink);
    font-weight: 800; font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .page-num:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
  .page-num.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 4px 0 var(--blue-deep);
  }
  .page-arrow {
    padding: 0 18px; height: 44px;
    display: inline-flex; align-items: center; gap: 6px;
    border-radius: 999px;
    background: #fff; border: 2px solid #e0e6f0;
    color: var(--ink);
    font-weight: 800; font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .page-arrow.disabled { opacity: 0.4; pointer-events: none; }
  .page-arrow:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

  .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 15px;
    display: none;
  }
  .empty-state.show { display: block; }

  /* ================= CTA BAND (shared) ================= */
  .ctaband {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: #fff;
  }
  .ctaband-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: center;
    position: relative; z-index: 2;
  }
  .ctaband-heading-img { width: 100%; max-width: 460px; height: auto; margin-bottom: 14px; display: block; }
  .ctaband-head p { font-size: 14px; color: #555; line-height: 1.8; }
  .ctaband-feats { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
  .feat-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: #fff; border-radius: 999px;
    border: 2px solid var(--orange); color: var(--orange);
    font-size: 13px; font-weight: 800;
    box-shadow: 0 3px 0 rgba(245,115,42,0.18);
  }
  .feat-chip::before { content: "✓"; font-weight: 900; font-size: 14px; }
  .ctaband-buttons { display: flex; flex-direction: column; gap: 14px; }
  .cta-band-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 22px 28px; border-radius: 16px;
    color: #fff; font-weight: 900; font-size: 19px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.06);
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.5px;
  }
  .cta-band-btn .icn { width: 22px; height: 22px; flex-shrink: 0; }
  .cta-band-btn.form { background: linear-gradient(180deg, #ff8a3d, #f5732a); box-shadow: 0 8px 0 #c2541a, 0 14px 24px rgba(245,115,42,0.3); }
  .cta-band-btn.line { background: linear-gradient(180deg, #2bd86b, #1bb358); box-shadow: 0 8px 0 #168a44, 0 14px 24px rgba(43,216,107,0.3); }
  .cta-band-btn:hover { transform: translateY(-2px); }
  .ctaband-tel {
    background: #fff; border-radius: 14px; padding: 12px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    margin-top: 14px;
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: inherit; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .ctaband-tel:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .ctaband-tel:hover .tel-num { color: var(--orange); }
  .tel-block { display: flex; flex-direction: column; flex: 1; }
  .tel-label-txt { font-size: 14px; font-weight: 800; color: var(--orange); margin-bottom: 2px; }
  .tel-num {
    font-size: 30px; font-weight: 900; color: #1f2a44;
    letter-spacing: 1px; line-height: 1; transition: color 0.2s ease;
  }
  .tel-num::before { content: "📞"; font-size: 22px; margin-right: 6px; vertical-align: -2px; }
  .tel-hours {
    display: flex; flex-direction: column; align-items: center;
    padding: 8px 14px;
    background: linear-gradient(180deg, #2f7fea, #2466c8);
    color: #fff; border-radius: 10px; font-weight: 800; flex-shrink: 0;
  }
  .tel-hours .hours-label { font-size: 10px; letter-spacing: 1px; opacity: 0.85; }
  .tel-hours .hours-val { font-size: 15px; }
  .ctaband-person { position: relative; display: flex; align-items: flex-end; justify-content: center; }
  .ctaband-person img {
    width: 100%; height: auto; max-height: 440px; object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
  }
  .ctaband-deco { position: absolute; pointer-events: none; z-index: 1; }
  .ctaband-deco img { width: 100%; }
  .cb-deco-tl { top: 0; left: 0; width: 200px; }
  .cb-deco-tr { top: 0; right: 0; width: 220px; }
  .cb-deco-bl { bottom: 0; left: 60px; width: 200px; }
  .cb-deco-br { bottom: -10px; right: 0; width: 240px; }

  /* ================= FOOTER (shared) ================= */
  .site-footer { background: #fff; padding: 70px 0 40px; border-top: 1px solid #f0f0f0; }
  .footer-grid {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    align-items: start;
  }
  .footer-brand .logo { margin-bottom: 18px; }
  .footer-brand p { font-size: 12px; color: #666; line-height: 1.8; }
  .footer-col h4 { font-size: 13px; font-weight: 800; color: #777; margin-bottom: 14px; }
  .footer-col ul { list-style: none; }
  .footer-col li { font-size: 13px; color: #333; margin-bottom: 8px; }
  .footer-info { font-size: 13px; color: #333; line-height: 1.9; }
  .footer-info .row { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; }
  .footer-info .label { color: #888; font-size: 12px; flex-shrink: 0; min-width: 60px; }
  .tel-link { color: inherit; text-decoration: none; transition: color 0.2s; }
  .tel-link:hover { color: var(--orange); text-decoration: underline; }
  .footer-copyright { text-align: center; margin-top: 50px; font-size: 12px; color: #999; }

  /* ================= RESPONSIVE ================= */
  @media (max-width: 1080px) {
    .works-page-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 980px) {
    .works-page-grid { grid-template-columns: 1fr; gap: 28px 0; }
    nav.main-nav { display: none; }

    /* Header: hamburger replaces CTAs on mobile */
    .header-inner { padding: 10px 16px; gap: 12px; }
    .logo { gap: 8px; min-width: 0; flex: 1; }
    .logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
    .logo-text .lt-main { font-size: 17px; letter-spacing: 0.3px; }
    .logo-text .lt-main .lt-branch { font-size: 10px; padding: 1px 6px; margin-left: 3px; }
    .logo-text .lt-sub { font-size: 10px; letter-spacing: 1.5px; }
    .header-cta { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-drawer { display: block; }

    .page-hero { padding: 50px 0 30px; }
    .page-hero h1 { font-size: 36px; }
    .page-hero-script { width: 220px; }
    .ph-deco-tl, .ph-deco-tr { width: 130px; }
    .ph-deco-bl, .ph-deco-br { display: none; }

    .works-filter { justify-content: flex-start; overflow-x: auto; padding-bottom: 16px; flex-wrap: nowrap; }
    .filter-chip { flex-shrink: 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .ctaband-inner {
      grid-template-columns: 1fr;
      grid-template-areas: "head" "buttons";
      gap: 16px 14px; align-items: start;
    }
    .ctaband-head { grid-area: head; }
    .ctaband-person { grid-area: person; align-self: end; }
    .ctaband-person img { max-height: 220px; }
    .ctaband-buttons { grid-area: buttons; margin-top: 8px; }
    .ctaband-heading-img { max-width: 100%; }
    .ctaband-feats { gap: 6px; }
    .feat-chip { padding: 6px 12px; font-size: 11px; }
  }
  @media (max-width: 480px) {
    .page-hero h1 { font-size: 28px; }
    .page-hero p.lead { font-size: 14px; }
    .header-inner { padding: 8px 12px; gap: 8px; }
    .logo-text .lt-sub { display: none; }
    .logo-text .lt-main { font-size: 15px; }
    .logo-mark { width: 34px; height: 34px; }
    .hamburger-btn { width: 40px; height: 40px; }
    .hamburger-btn span { width: 22px; height: 3px; }
    .drawer-panel { padding: 60px 18px 22px; }
    .page-num { width: 38px; height: 38px; font-size: 14px; }
    .ctaband-inner { grid-template-columns: 1fr; }
    .ctaband-person img { max-height: 190px; }
    .cta-band-btn { font-size: 16px; padding: 18px 20px; }
  }

/* ============================================
   voice.html
   ============================================ */

  :root {
    --orange: #f5732a;
    --orange-soft: #ff8a3d;
    --pink: #ec5b8a;
    --pink-deep: #d94276;
    --blue: #2f7fea;
    --blue-deep: #2466c8;
    --blue-dark: #1a3a8c;
    --teal: #3fc1c0;
    --teal-deep: #25a09e;
    --yellow: #f5c742;
    --green: #25c466;
    --ink: #2a2a2a;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    color: var(--ink); background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ================= HEADER ================= */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .header-inner {
    max-width: 1280px; margin: 0 auto; padding: 14px 32px;
    display: flex; align-items: center; gap: 32px;
  }
  .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
  .logo-text { line-height: 1.15; }
  .logo-text .lt-main { font-weight: 900; font-size: 22px; letter-spacing: 1px; color: var(--blue-dark); }
  .logo-text .lt-main .lt-branch {
    display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 8px; border-radius: 4px;
    vertical-align: 3px; margin-left: 4px;
  }
  .logo-text .lt-sub { font-size: 11px; color: #555; letter-spacing: 2px; margin-top: 2px; }
  nav.main-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
  nav.main-nav a {
    font-size: 15px; font-weight: 700; color: var(--ink);
    cursor: pointer; position: relative;
    transition: color 0.2s;
  }
  nav.main-nav a::after {
    content: ""; position: absolute; left: 50%; bottom: -6px;
    width: 0; height: 3px; background: var(--blue); border-radius: 2px;
    transition: width 0.25s ease, left 0.25s ease;
  }
  nav.main-nav a.current { color: var(--blue); }
  nav.main-nav a.current::after { width: 100%; left: 0; }
  nav.main-nav a:hover { color: var(--blue); }
  nav.main-nav a:hover::after { width: 100%; left: 0; }
  .header-cta { display: flex; gap: 10px; flex-shrink: 0; }
  .btn-quote, .btn-line {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 18px; border-radius: 10px;
    font-weight: 700; font-size: 13px; color: #fff;
    box-shadow: 0 4px 0 rgba(0,0,0,0.08);
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .btn-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .btn-quote:hover, .btn-line:hover { transform: translateY(-1px); box-shadow: 0 5px 0 rgba(0,0,0,0.12); }
  .btn-icon { width: 18px; height: 18px; }

  /* hamburger */
  .hamburger-btn {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; background: transparent; border: none; cursor: pointer;
    padding: 0; flex-shrink: 0; z-index: 110; position: relative;
  }
  .hamburger-btn span {
    width: 26px; height: 3px; background: var(--blue-dark); border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, background 0.3s;
  }
  .hamburger-btn.active span { background: var(--pink); }
  .hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* drawer */
  .mobile-drawer { display: none; position: fixed; inset: 0; z-index: 100; pointer-events: none; }
  .mobile-drawer.open { pointer-events: auto; }
  .drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(20, 30, 60, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0; transition: opacity 0.3s ease;
  }
  .mobile-drawer.open .drawer-backdrop { opacity: 1; }
  .drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 84%; max-width: 340px;
    background: #fff; padding: 68px 22px 28px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(20,30,60,0.18);
    display: flex; flex-direction: column;
  }
  .mobile-drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-close {
    position: absolute; top: 14px; right: 16px;
    width: 40px; height: 40px; font-size: 32px;
    background: transparent; border: none; cursor: pointer;
    color: var(--ink); line-height: 1; border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
  }
  .drawer-close:hover { background: #f5f5f5; transform: rotate(90deg); }
  .drawer-logo { line-height: 1.15; padding: 0 4px 16px; border-bottom: 2px solid #f0f3f8; margin-bottom: 14px; }
  .drawer-logo .lt-main { font-weight: 900; font-size: 18px; color: var(--blue-dark); letter-spacing: 0.5px; }
  .drawer-logo .lt-main .lt-branch {
    display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 7px; border-radius: 4px;
    margin-left: 4px; vertical-align: 2px;
  }
  .drawer-logo .lt-sub { font-size: 10px; color: #666; letter-spacing: 1.5px; margin-top: 3px; }
  .drawer-nav { list-style: none; margin-bottom: 22px; }
  .drawer-nav li {
    opacity: 0; transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-drawer.open .drawer-nav li { opacity: 1; transform: translateX(0); }
  .mobile-drawer.open .drawer-nav li:nth-child(1) { transition-delay: 0.10s; }
  .mobile-drawer.open .drawer-nav li:nth-child(2) { transition-delay: 0.14s; }
  .mobile-drawer.open .drawer-nav li:nth-child(3) { transition-delay: 0.18s; }
  .mobile-drawer.open .drawer-nav li:nth-child(4) { transition-delay: 0.22s; }
  .mobile-drawer.open .drawer-nav li:nth-child(5) { transition-delay: 0.26s; }
  .mobile-drawer.open .drawer-nav li:nth-child(6) { transition-delay: 0.30s; }
  .mobile-drawer.open .drawer-nav li:nth-child(7) { transition-delay: 0.34s; }
  .drawer-nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 6px; font-size: 16px; font-weight: 700; color: var(--ink);
    border-bottom: 1px dashed #e8e8e8; cursor: pointer;
    transition: color 0.2s, padding-left 0.2s;
  }
  .drawer-nav a.current { color: var(--blue); padding-left: 12px; }
  .drawer-nav a::after { content: "›"; font-size: 22px; color: #c8c8c8; font-weight: 400; transition: color 0.2s, transform 0.2s; }
  .drawer-nav a.current::after { color: var(--blue); }
  .drawer-nav a:hover { color: var(--blue); padding-left: 12px; }
  .drawer-nav a:hover::after { color: var(--blue); transform: translateX(4px); }
  .drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 16px; }
  .drawer-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 12px; color: #fff; font-weight: 800; font-size: 15px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.12);
    transition: transform 0.15s;
  }
  .drawer-cta a:hover { transform: translateY(-2px); }
  .drawer-cta a svg { width: 18px; height: 18px; }
  .drawer-cta-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .drawer-cta-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .drawer-cta-tel {
    background: #fff; color: var(--blue-dark) !important;
    border: 2px solid var(--blue);
    box-shadow: 0 4px 0 rgba(47,127,234,0.2) !important;
  }
  body.drawer-open { overflow: hidden; }

  /* ================= PAGE HERO ================= */
  .page-hero {
    position: relative;
    padding: 70px 0 50px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, #fdfbf7 0%, #fff 100%);
  }
  .page-hero-inner {
    max-width: 1220px; margin: 0 auto; padding: 0 32px;
    position: relative; z-index: 2;
  }
  .page-hero-script {
    width: 240px; margin: 0 auto 6px;
    display: block;
  }
  .page-hero h1 {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 900; font-size: 48px;
    color: #1f2a44; letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .page-hero p.lead {
    font-size: 16px; color: #555; line-height: 1.9; max-width: 640px; margin: 0 auto;
  }
  .breadcrumb {
    margin-top: 24px;
    font-size: 12px; color: #888;
    display: flex; justify-content: center; gap: 8px;
  }
  .breadcrumb a { color: var(--blue); }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb .sep { color: #ccc; }

  /* hero decorative splashes */
  .ph-deco {
    position: absolute; pointer-events: none; z-index: 0;
  }
  .ph-deco img { width: 100%; }
  .ph-deco-tl { top: 20px; left: -50px; width: 170px; opacity: 0.85; }
  .ph-deco-tr { top: -10px; right: -40px; width: 180px; opacity: 0.85; transform: rotate(12deg); }
  .ph-deco-bl { bottom: -20px; left: 60px; width: 130px; opacity: 0.8; }
  .ph-deco-br { bottom: -10px; right: 80px; width: 100px; opacity: 0.85; }

  /* ================= FILTER ================= */
  .voice-filter-wrap {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    margin-top: 40px;
  }
  .voice-filter {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
    padding-bottom: 24px;
    border-bottom: 1px dashed #e2e2e2;
  }
  .filter-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px; border-radius: 999px;
    background: #fff; color: var(--ink);
    border: 2px solid #e0e6f0;
    font-size: 14px; font-weight: 800;
    transition: all 0.25s ease;
  }
  .filter-chip:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
  .filter-chip.active {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    box-shadow: 0 5px 0 var(--pink-deep);
  }
  .filter-chip .count { font-size: 11px; opacity: 0.75; font-weight: 600; }

  /* ================= VOICE GRID ================= */
  .voice-list {
    padding: 50px 0 80px;
    position: relative;
  }
  .voice-list-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
  }
  .voice-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
  .voice-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px 22px 22px;
    box-shadow: 0 8px 24px rgba(50,80,140,0.09);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s, border-color 0.3s;
  }
  .voice-card:hover {
    transform: translateY(-8px) rotate(-0.6deg);
    box-shadow: 0 16px 36px rgba(50,80,140,0.16);
    border-color: rgba(236,91,138,0.35);
  }
  .voice-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(0.6deg);
    border-color: rgba(63,193,192,0.4);
  }
  .voice-card:nth-child(3n):hover { border-color: rgba(47,127,234,0.35); }
  .voice-card.hidden { display: none; }

  /* quote decoration (large opening quote in corner) */
  .voice-card::before {
    content: "“";
    position: absolute;
    top: 14px; right: 22px;
    font-size: 70px;
    line-height: 1;
    color: var(--pink);
    opacity: 0.15;
    font-family: serif;
    font-weight: 900;
    pointer-events: none;
  }

  .voice-photo {
    width: 120px; height: 120px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 6px 18px rgba(50,80,140,0.18);
    transition: transform 0.45s cubic-bezier(.34,1.56,.64,1);
  }
  .voice-card:hover .voice-photo { transform: scale(1.08) rotate(-4deg); }
  .voice-card:nth-child(even):hover .voice-photo { transform: scale(1.08) rotate(4deg); }
  .voice-photo img { width: 100%; height: 100%; object-fit: cover; }

  .voice-rating {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-bottom: 10px;
  }
  .stars {
    display: inline-flex; gap: 2px;
    color: #f5c742; font-size: 18px;
    letter-spacing: 1px;
    transition: transform 0.5s;
  }
  .voice-card:hover .stars { animation: star-pop 0.6s ease; }
  @keyframes star-pop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); letter-spacing: 4px; }
  }
  .rate-num { font-weight: 800; font-size: 14px; color: #333; }

  .voice-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 11px; font-weight: 800;
    color: #fff;
    background: var(--blue);
    letter-spacing: 0.5px;
    margin: 0 auto 12px;
  }
  .voice-tag-wrap { text-align: center; }
  .voice-card[data-cat="exterior"] .voice-tag { background: var(--blue); }
  .voice-card[data-cat="roof"] .voice-tag { background: var(--orange); }
  .voice-card[data-cat="both"] .voice-tag { background: var(--pink); }

  .voice-title {
    font-size: 16px; font-weight: 800;
    color: #1f2a44;
    text-align: center;
    line-height: 1.55;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
  }
  .voice-body {
    font-size: 13px; color: #555;
    line-height: 1.85;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e2e2e2;
    margin-bottom: 12px;
  }
  .voice-author {
    font-size: 12px; color: #888; font-weight: 700;
    display: flex; align-items: center; gap: 4px;
    justify-content: flex-end;
  }
  .voice-author::before {
    content: ""; width: 11px; height: 14px;
    background: var(--pink);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C7.59 2 4 5.59 4 10c0 5.25 7 11.25 7.29 11.5a1 1 0 001.42 0C13 21.25 20 15.25 20 10c0-4.41-3.59-8-8-8zm0 11a3 3 0 110-6 3 3 0 010 6z'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C7.59 2 4 5.59 4 10c0 5.25 7 11.25 7.29 11.5a1 1 0 001.42 0C13 21.25 20 15.25 20 10c0-4.41-3.59-8-8-8zm0 11a3 3 0 110-6 3 3 0 010 6z'/></svg>") center/contain no-repeat;
  }

  /* PAGINATION */
  .pagination {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 60px;
  }
  .page-num {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e6f0;
    color: var(--ink);
    font-weight: 800; font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .page-num:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
  .page-num.active {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    box-shadow: 0 4px 0 var(--pink-deep);
  }
  .page-arrow {
    padding: 0 18px; height: 44px;
    display: inline-flex; align-items: center; gap: 6px;
    border-radius: 999px;
    background: #fff; border: 2px solid #e0e6f0;
    color: var(--ink);
    font-weight: 800; font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .page-arrow.disabled { opacity: 0.4; pointer-events: none; }
  .page-arrow:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

  .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 15px;
    display: none;
  }
  .empty-state.show { display: block; }

  /* ================= CTA BAND (shared) ================= */
  .ctaband {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: #fff;
  }
  .ctaband-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: center;
    position: relative; z-index: 2;
  }
  .ctaband-heading-img { width: 100%; max-width: 460px; height: auto; margin-bottom: 14px; display: block; }
  .ctaband-head p { font-size: 14px; color: #555; line-height: 1.8; }
  .ctaband-feats { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
  .feat-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: #fff; border-radius: 999px;
    border: 2px solid var(--orange); color: var(--orange);
    font-size: 13px; font-weight: 800;
    box-shadow: 0 3px 0 rgba(245,115,42,0.18);
  }
  .feat-chip::before { content: "✓"; font-weight: 900; font-size: 14px; }
  .ctaband-buttons { display: flex; flex-direction: column; gap: 14px; }
  .cta-band-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 22px 28px; border-radius: 16px;
    color: #fff; font-weight: 900; font-size: 19px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.06);
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.5px;
  }
  .cta-band-btn .icn { width: 22px; height: 22px; flex-shrink: 0; }
  .cta-band-btn.form { background: linear-gradient(180deg, #ff8a3d, #f5732a); box-shadow: 0 8px 0 #c2541a, 0 14px 24px rgba(245,115,42,0.3); }
  .cta-band-btn.line { background: linear-gradient(180deg, #2bd86b, #1bb358); box-shadow: 0 8px 0 #168a44, 0 14px 24px rgba(43,216,107,0.3); }
  .cta-band-btn:hover { transform: translateY(-2px); }
  .ctaband-tel {
    background: #fff; border-radius: 14px; padding: 12px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    margin-top: 14px;
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: inherit; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .ctaband-tel:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .ctaband-tel:hover .tel-num { color: var(--orange); }
  .tel-block { display: flex; flex-direction: column; flex: 1; }
  .tel-label-txt { font-size: 14px; font-weight: 800; color: var(--orange); margin-bottom: 2px; }
  .tel-num {
    font-size: 30px; font-weight: 900; color: #1f2a44;
    letter-spacing: 1px; line-height: 1; transition: color 0.2s ease;
  }
  .tel-num::before { content: "📞"; font-size: 22px; margin-right: 6px; vertical-align: -2px; }
  .tel-hours {
    display: flex; flex-direction: column; align-items: center;
    padding: 8px 14px;
    background: linear-gradient(180deg, #2f7fea, #2466c8);
    color: #fff; border-radius: 10px; font-weight: 800; flex-shrink: 0;
  }
  .tel-hours .hours-label { font-size: 10px; letter-spacing: 1px; opacity: 0.85; }
  .tel-hours .hours-val { font-size: 15px; }
  .ctaband-person { position: relative; display: flex; align-items: flex-end; justify-content: center; }
  .ctaband-person img {
    width: 100%; height: auto; max-height: 440px; object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
  }
  .ctaband-deco { position: absolute; pointer-events: none; z-index: 1; }
  .ctaband-deco img { width: 100%; }
  .cb-deco-tl { top: 0; left: 0; width: 200px; }
  .cb-deco-tr { top: 0; right: 0; width: 220px; }
  .cb-deco-bl { bottom: 0; left: 60px; width: 200px; }
  .cb-deco-br { bottom: -10px; right: 0; width: 240px; }

  /* ================= FOOTER ================= */
  .site-footer { background: #fff; padding: 70px 0 40px; border-top: 1px solid #f0f0f0; }
  .footer-grid {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    align-items: start;
  }
  .footer-brand .logo { margin-bottom: 18px; }
  .footer-brand p { font-size: 12px; color: #666; line-height: 1.8; }
  .footer-col h4 { font-size: 13px; font-weight: 800; color: #777; margin-bottom: 14px; }
  .footer-col ul { list-style: none; }
  .footer-col li { font-size: 13px; color: #333; margin-bottom: 8px; }
  .footer-info { font-size: 13px; color: #333; line-height: 1.9; }
  .footer-info .row { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; }
  .footer-info .label { color: #888; font-size: 12px; flex-shrink: 0; min-width: 60px; }
  .tel-link { color: inherit; text-decoration: none; transition: color 0.2s; }
  .tel-link:hover { color: var(--orange); text-decoration: underline; }
  .footer-copyright { text-align: center; margin-top: 50px; font-size: 12px; color: #999; }

  /* ================= RESPONSIVE ================= */
  @media (max-width: 1080px) {
    .voice-page-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 980px) {
    .voice-page-grid { grid-template-columns: 1fr; gap: 28px 0; }
    nav.main-nav { display: none; }

    .header-inner { padding: 10px 16px; gap: 12px; }
    .logo { gap: 8px; min-width: 0; flex: 1; }
    .logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
    .logo-text .lt-main { font-size: 17px; letter-spacing: 0.3px; }
    .logo-text .lt-main .lt-branch { font-size: 10px; padding: 1px 6px; margin-left: 3px; }
    .logo-text .lt-sub { font-size: 10px; letter-spacing: 1.5px; }
    .header-cta { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-drawer { display: block; }

    .page-hero { padding: 50px 0 30px; }
    .page-hero h1 { font-size: 36px; }
    .page-hero-script { width: 200px; }
    .ph-deco-tl, .ph-deco-tr { width: 130px; }
    .ph-deco-bl, .ph-deco-br { display: none; }

    .voice-filter { justify-content: flex-start; overflow-x: auto; padding-bottom: 16px; flex-wrap: nowrap; }
    .filter-chip { flex-shrink: 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .ctaband-inner {
      grid-template-columns: 1fr;
      grid-template-areas: "head" "buttons";
      gap: 16px 14px; align-items: start;
    }
    .ctaband-head { grid-area: head; }
    .ctaband-person { grid-area: person; align-self: end; }
    .ctaband-person img { max-height: 220px; }
    .ctaband-buttons { grid-area: buttons; margin-top: 8px; }
    .ctaband-heading-img { max-width: 100%; }
    .ctaband-feats { gap: 6px; }
    .feat-chip { padding: 6px 12px; font-size: 11px; }
  }
  @media (max-width: 480px) {
    .page-hero h1 { font-size: 28px; }
    .page-hero p.lead { font-size: 14px; }
    .header-inner { padding: 8px 12px; gap: 8px; }
    .logo-text .lt-sub { display: none; }
    .logo-text .lt-main { font-size: 15px; }
    .logo-mark { width: 34px; height: 34px; }
    .hamburger-btn { width: 40px; height: 40px; }
    .hamburger-btn span { width: 22px; height: 3px; }
    .drawer-panel { padding: 60px 18px 22px; }
    .page-num { width: 38px; height: 38px; font-size: 14px; }
    .ctaband-inner { grid-template-columns: 1fr; }
    .ctaband-person img { max-height: 190px; }
    .cta-band-btn { font-size: 16px; padding: 18px 20px; }
  }

/* ============================================
   column.html
   ============================================ */

  :root {
    --orange: #f5732a;
    --orange-soft: #ff8a3d;
    --pink: #ec5b8a;
    --pink-deep: #d94276;
    --blue: #2f7fea;
    --blue-deep: #2466c8;
    --blue-dark: #1a3a8c;
    --teal: #3fc1c0;
    --teal-deep: #25a09e;
    --yellow: #f5c742;
    --green: #25c466;
    --ink: #2a2a2a;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    color: var(--ink); background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ================= HEADER ================= */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .header-inner {
    max-width: 1280px; margin: 0 auto; padding: 14px 32px;
    display: flex; align-items: center; gap: 32px;
  }
  .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
  .logo-text { line-height: 1.15; }
  .logo-text .lt-main { font-weight: 900; font-size: 22px; letter-spacing: 1px; color: var(--blue-dark); }
  .logo-text .lt-main .lt-branch {
    display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 8px; border-radius: 4px;
    vertical-align: 3px; margin-left: 4px;
  }
  .logo-text .lt-sub { font-size: 11px; color: #555; letter-spacing: 2px; margin-top: 2px; }
  nav.main-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
  nav.main-nav a {
    font-size: 15px; font-weight: 700; color: var(--ink);
    cursor: pointer; position: relative;
    transition: color 0.2s;
  }
  nav.main-nav a::after {
    content: ""; position: absolute; left: 50%; bottom: -6px;
    width: 0; height: 3px; background: var(--blue); border-radius: 2px;
    transition: width 0.25s ease, left 0.25s ease;
  }
  nav.main-nav a.current { color: var(--blue); }
  nav.main-nav a.current::after { width: 100%; left: 0; }
  nav.main-nav a:hover { color: var(--blue); }
  nav.main-nav a:hover::after { width: 100%; left: 0; }
  .header-cta { display: flex; gap: 10px; flex-shrink: 0; }
  .btn-quote, .btn-line {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 18px; border-radius: 10px;
    font-weight: 700; font-size: 13px; color: #fff;
    box-shadow: 0 4px 0 rgba(0,0,0,0.08);
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .btn-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .btn-quote:hover, .btn-line:hover { transform: translateY(-1px); box-shadow: 0 5px 0 rgba(0,0,0,0.12); }
  .btn-icon { width: 18px; height: 18px; }

  /* hamburger */
  .hamburger-btn {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; background: transparent; border: none; cursor: pointer;
    padding: 0; flex-shrink: 0; z-index: 110; position: relative;
  }
  .hamburger-btn span {
    width: 26px; height: 3px; background: var(--blue-dark); border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, background 0.3s;
  }
  .hamburger-btn.active span { background: var(--pink); }
  .hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* drawer */
  .mobile-drawer { display: none; position: fixed; inset: 0; z-index: 100; pointer-events: none; }
  .mobile-drawer.open { pointer-events: auto; }
  .drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(20, 30, 60, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0; transition: opacity 0.3s ease;
  }
  .mobile-drawer.open .drawer-backdrop { opacity: 1; }
  .drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 84%; max-width: 340px;
    background: #fff; padding: 68px 22px 28px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(20,30,60,0.18);
    display: flex; flex-direction: column;
  }
  .mobile-drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-close {
    position: absolute; top: 14px; right: 16px;
    width: 40px; height: 40px; font-size: 32px;
    background: transparent; border: none; cursor: pointer;
    color: var(--ink); line-height: 1; border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
  }
  .drawer-close:hover { background: #f5f5f5; transform: rotate(90deg); }
  .drawer-logo { line-height: 1.15; padding: 0 4px 16px; border-bottom: 2px solid #f0f3f8; margin-bottom: 14px; }
  .drawer-logo .lt-main { font-weight: 900; font-size: 18px; color: var(--blue-dark); letter-spacing: 0.5px; }
  .drawer-logo .lt-main .lt-branch {
    display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 7px; border-radius: 4px;
    margin-left: 4px; vertical-align: 2px;
  }
  .drawer-logo .lt-sub { font-size: 10px; color: #666; letter-spacing: 1.5px; margin-top: 3px; }
  .drawer-nav { list-style: none; margin-bottom: 22px; }
  .drawer-nav li {
    opacity: 0; transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-drawer.open .drawer-nav li { opacity: 1; transform: translateX(0); }
  .mobile-drawer.open .drawer-nav li:nth-child(1) { transition-delay: 0.10s; }
  .mobile-drawer.open .drawer-nav li:nth-child(2) { transition-delay: 0.14s; }
  .mobile-drawer.open .drawer-nav li:nth-child(3) { transition-delay: 0.18s; }
  .mobile-drawer.open .drawer-nav li:nth-child(4) { transition-delay: 0.22s; }
  .mobile-drawer.open .drawer-nav li:nth-child(5) { transition-delay: 0.26s; }
  .mobile-drawer.open .drawer-nav li:nth-child(6) { transition-delay: 0.30s; }
  .mobile-drawer.open .drawer-nav li:nth-child(7) { transition-delay: 0.34s; }
  .drawer-nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 6px; font-size: 16px; font-weight: 700; color: var(--ink);
    border-bottom: 1px dashed #e8e8e8; cursor: pointer;
    transition: color 0.2s, padding-left 0.2s;
  }
  .drawer-nav a.current { color: var(--blue); padding-left: 12px; }
  .drawer-nav a::after { content: "›"; font-size: 22px; color: #c8c8c8; font-weight: 400; transition: color 0.2s, transform 0.2s; }
  .drawer-nav a.current::after { color: var(--blue); }
  .drawer-nav a:hover { color: var(--blue); padding-left: 12px; }
  .drawer-nav a:hover::after { color: var(--blue); transform: translateX(4px); }
  .drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 16px; }
  .drawer-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 12px; color: #fff; font-weight: 800; font-size: 15px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.12);
    transition: transform 0.15s;
  }
  .drawer-cta a:hover { transform: translateY(-2px); }
  .drawer-cta a svg { width: 18px; height: 18px; }
  .drawer-cta-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .drawer-cta-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .drawer-cta-tel {
    background: #fff; color: var(--blue-dark) !important;
    border: 2px solid var(--blue);
    box-shadow: 0 4px 0 rgba(47,127,234,0.2) !important;
  }
  body.drawer-open { overflow: hidden; }

  /* ================= PAGE HERO ================= */
  .page-hero {
    position: relative;
    padding: 70px 0 50px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, #f3fbfb 0%, #fff 100%);
  }
  .page-hero-inner {
    max-width: 1220px; margin: 0 auto; padding: 0 32px;
    position: relative; z-index: 2;
  }
  .page-hero-script-css {
    font-family: 'Caveat', cursive;
    font-size: 64px;
    line-height: 1;
    color: var(--teal-deep);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 1px;
  }
  .page-hero h1 {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 900; font-size: 48px;
    color: #1f2a44; letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .page-hero p.lead {
    font-size: 16px; color: #555; line-height: 1.9; max-width: 640px; margin: 0 auto;
  }
  .breadcrumb {
    margin-top: 24px;
    font-size: 12px; color: #888;
    display: flex; justify-content: center; gap: 8px;
  }
  .breadcrumb a { color: var(--blue); }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb .sep { color: #ccc; }

  /* hero decorative splashes */
  .ph-deco {
    position: absolute; pointer-events: none; z-index: 0;
  }
  .ph-deco img { width: 100%; }
  .ph-deco-tl { top: 20px; left: -50px; width: 160px; opacity: 0.8; }
  .ph-deco-tr { top: -10px; right: -40px; width: 170px; opacity: 0.8; transform: rotate(12deg); }
  .ph-deco-bl { bottom: -20px; left: 60px; width: 130px; opacity: 0.8; }
  .ph-deco-br { bottom: -10px; right: 80px; width: 110px; opacity: 0.85; }

  /* ================= FILTER ================= */
  .column-filter-wrap {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    margin-top: 40px;
  }
  .column-filter {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
    padding-bottom: 24px;
    border-bottom: 1px dashed #e2e2e2;
  }
  .filter-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px; border-radius: 999px;
    background: #fff; color: var(--ink);
    border: 2px solid #e0e6f0;
    font-size: 14px; font-weight: 800;
    transition: all 0.25s ease;
  }
  .filter-chip:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); }
  .filter-chip.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    box-shadow: 0 5px 0 var(--teal-deep);
  }
  .filter-chip .count { font-size: 11px; opacity: 0.75; font-weight: 600; }

  /* ================= COLUMN GRID ================= */
  .column-list {
    padding: 50px 0 80px;
    position: relative;
  }
  .column-list-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
  }
  .column-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
  .column-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(50,80,140,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    border-left: 6px solid var(--teal);
    position: relative;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 26px 26px 24px;
    min-height: 280px;
  }
  /* category-tinted left border */
  .column-card[data-cat="basic"]       { border-left-color: var(--blue); }
  .column-card[data-cat="color"]       { border-left-color: var(--pink); }
  .column-card[data-cat="price"]       { border-left-color: var(--orange); }
  .column-card[data-cat="maintenance"] { border-left-color: var(--teal); }
  .column-card[data-cat="news"]        { border-left-color: #6b7488; }
  .column-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow: 0 16px 36px rgba(50,80,140,0.14);
  }
  .column-card:nth-child(even):hover { transform: translateY(-8px) rotate(0.5deg); }
  .column-card.hidden { display: none; }

  /* corner decorative paint splash (very subtle) */
  .column-card::after {
    content: "";
    position: absolute;
    width: 110px; height: 110px;
    right: -25px; bottom: -25px;
    background-image: url("v6/tools/image2_part37.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.4s ease;
  }
  .column-card[data-cat="basic"]::after       { background-image: url("v6/tools/image2_part23.png"); }
  .column-card[data-cat="color"]::after       { background-image: url("v6/tools/image2_part05.png"); }
  .column-card[data-cat="price"]::after       { background-image: url("v6/tools/image2_part33.png"); }
  .column-card[data-cat="maintenance"]::after { background-image: url("v6/tools/image2_part37.png"); }
  .column-card[data-cat="news"]::after        { background-image: url("v6/tools/image2_part23.png"); }
  .column-card:hover::after { opacity: 0.18; transform: rotate(-12deg) scale(1.1); }

  /* Header: category tag + NEW badge */
  .column-header {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 14px;
  }
  .column-cat-tag {
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px; font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.4;
  }
  .column-card[data-cat="basic"]       .column-cat-tag { background: var(--blue); }
  .column-card[data-cat="color"]       .column-cat-tag { background: var(--pink); }
  .column-card[data-cat="price"]       .column-cat-tag { background: var(--orange); }
  .column-card[data-cat="maintenance"] .column-cat-tag { background: var(--teal); }
  .column-card[data-cat="news"]        .column-cat-tag { background: #6b7488; }
  .column-new-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--yellow);
    color: #1f2a44;
    font-size: 10px; font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 3px 0 #c79b18;
    line-height: 1.4;
  }

  .column-date {
    font-size: 12px; color: #999; font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 6px;
  }
  .column-date::before {
    content: "";
    width: 14px; height: 14px;
    background: #b8c3d4;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z'/></svg>") center/contain no-repeat;
  }
  .column-title {
    font-size: 19px; font-weight: 900;
    color: #1f2a44;
    line-height: 1.55;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
    transition: color 0.25s;
    position: relative;
    z-index: 1;
  }
  .column-card[data-cat="basic"]:hover       .column-title { color: var(--blue-deep); }
  .column-card[data-cat="color"]:hover       .column-title { color: var(--pink-deep); }
  .column-card[data-cat="price"]:hover       .column-title { color: var(--orange); }
  .column-card[data-cat="maintenance"]:hover .column-title { color: var(--teal-deep); }
  .column-card[data-cat="news"]:hover        .column-title { color: #4a5468; }
  .column-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 18px;
    flex: 1;
    position: relative;
    z-index: 1;
  }
  .column-read {
    align-self: flex-start;
    font-size: 13px; font-weight: 800;
    color: var(--teal-deep);
    letter-spacing: 0.5px;
    display: inline-flex; align-items: center; gap: 4px;
    padding-top: 14px;
    border-top: 1px dashed #e2e2e2;
    width: 100%;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
  }
  .column-card[data-cat="basic"]       .column-read { color: var(--blue-deep); }
  .column-card[data-cat="color"]       .column-read { color: var(--pink-deep); }
  .column-card[data-cat="price"]       .column-read { color: var(--orange); }
  .column-card[data-cat="maintenance"] .column-read { color: var(--teal-deep); }
  .column-card[data-cat="news"]        .column-read { color: #4a5468; }
  .column-read::after {
    content: "→";
    margin-left: auto;
    transition: transform 0.25s ease;
  }
  .column-card:hover .column-read::after {
    transform: translateX(6px);
  }

  /* PAGINATION */
  .pagination {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 60px;
  }
  .page-num {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e6f0;
    color: var(--ink);
    font-weight: 800; font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .page-num:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); }
  .page-num.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    box-shadow: 0 4px 0 var(--teal-deep);
  }
  .page-arrow {
    padding: 0 18px; height: 44px;
    display: inline-flex; align-items: center; gap: 6px;
    border-radius: 999px;
    background: #fff; border: 2px solid #e0e6f0;
    color: var(--ink);
    font-weight: 800; font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .page-arrow.disabled { opacity: 0.4; pointer-events: none; }
  .page-arrow:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); }

  .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 15px;
    display: none;
  }
  .empty-state.show { display: block; }

  /* ================= CTA BAND (shared) ================= */
  .ctaband {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: #fff;
  }
  .ctaband-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: center;
    position: relative; z-index: 2;
  }
  .ctaband-heading-img { width: 100%; max-width: 460px; height: auto; margin-bottom: 14px; display: block; }
  .ctaband-head p { font-size: 14px; color: #555; line-height: 1.8; }
  .ctaband-feats { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
  .feat-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: #fff; border-radius: 999px;
    border: 2px solid var(--orange); color: var(--orange);
    font-size: 13px; font-weight: 800;
    box-shadow: 0 3px 0 rgba(245,115,42,0.18);
  }
  .feat-chip::before { content: "✓"; font-weight: 900; font-size: 14px; }
  .ctaband-buttons { display: flex; flex-direction: column; gap: 14px; }
  .cta-band-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 22px 28px; border-radius: 16px;
    color: #fff; font-weight: 900; font-size: 19px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.06);
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.5px;
  }
  .cta-band-btn .icn { width: 22px; height: 22px; flex-shrink: 0; }
  .cta-band-btn.form { background: linear-gradient(180deg, #ff8a3d, #f5732a); box-shadow: 0 8px 0 #c2541a, 0 14px 24px rgba(245,115,42,0.3); }
  .cta-band-btn.line { background: linear-gradient(180deg, #2bd86b, #1bb358); box-shadow: 0 8px 0 #168a44, 0 14px 24px rgba(43,216,107,0.3); }
  .cta-band-btn:hover { transform: translateY(-2px); }
  .ctaband-tel {
    background: #fff; border-radius: 14px; padding: 12px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    margin-top: 14px;
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: inherit; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .ctaband-tel:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .ctaband-tel:hover .tel-num { color: var(--orange); }
  .tel-block { display: flex; flex-direction: column; flex: 1; }
  .tel-label-txt { font-size: 14px; font-weight: 800; color: var(--orange); margin-bottom: 2px; }
  .tel-num {
    font-size: 30px; font-weight: 900; color: #1f2a44;
    letter-spacing: 1px; line-height: 1; transition: color 0.2s ease;
  }
  .tel-num::before { content: "📞"; font-size: 22px; margin-right: 6px; vertical-align: -2px; }
  .tel-hours {
    display: flex; flex-direction: column; align-items: center;
    padding: 8px 14px;
    background: linear-gradient(180deg, #2f7fea, #2466c8);
    color: #fff; border-radius: 10px; font-weight: 800; flex-shrink: 0;
  }
  .tel-hours .hours-label { font-size: 10px; letter-spacing: 1px; opacity: 0.85; }
  .tel-hours .hours-val { font-size: 15px; }
  .ctaband-person { position: relative; display: flex; align-items: flex-end; justify-content: center; }
  .ctaband-person img {
    width: 100%; height: auto; max-height: 440px; object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
  }
  .ctaband-deco { position: absolute; pointer-events: none; z-index: 1; }
  .ctaband-deco img { width: 100%; }
  .cb-deco-tl { top: 0; left: 0; width: 200px; }
  .cb-deco-tr { top: 0; right: 0; width: 220px; }
  .cb-deco-bl { bottom: 0; left: 60px; width: 200px; }
  .cb-deco-br { bottom: -10px; right: 0; width: 240px; }

  /* ================= FOOTER ================= */
  .site-footer { background: #fff; padding: 70px 0 40px; border-top: 1px solid #f0f0f0; }
  .footer-grid {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    align-items: start;
  }
  .footer-brand .logo { margin-bottom: 18px; }
  .footer-brand p { font-size: 12px; color: #666; line-height: 1.8; }
  .footer-col h4 { font-size: 13px; font-weight: 800; color: #777; margin-bottom: 14px; }
  .footer-col ul { list-style: none; }
  .footer-col li { font-size: 13px; color: #333; margin-bottom: 8px; }
  .footer-info { font-size: 13px; color: #333; line-height: 1.9; }
  .footer-info .row { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; }
  .footer-info .label { color: #888; font-size: 12px; flex-shrink: 0; min-width: 60px; }
  .tel-link { color: inherit; text-decoration: none; transition: color 0.2s; }
  .tel-link:hover { color: var(--orange); text-decoration: underline; }
  .footer-copyright { text-align: center; margin-top: 50px; font-size: 12px; color: #999; }

  /* ================= RESPONSIVE ================= */
  @media (max-width: 1080px) {
    .column-page-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 980px) {
    .column-page-grid { grid-template-columns: 1fr; gap: 28px 0; }
    nav.main-nav { display: none; }

    .header-inner { padding: 10px 16px; gap: 12px; }
    .logo { gap: 8px; min-width: 0; flex: 1; }
    .logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
    .logo-text .lt-main { font-size: 17px; letter-spacing: 0.3px; }
    .logo-text .lt-main .lt-branch { font-size: 10px; padding: 1px 6px; margin-left: 3px; }
    .logo-text .lt-sub { font-size: 10px; letter-spacing: 1.5px; }
    .header-cta { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-drawer { display: block; }

    .page-hero { padding: 50px 0 30px; }
    .page-hero h1 { font-size: 36px; }
    .page-hero-script-css { font-size: 50px; }
    .ph-deco-tl, .ph-deco-tr { width: 130px; }
    .ph-deco-bl, .ph-deco-br { display: none; }

    .column-filter { justify-content: flex-start; overflow-x: auto; padding-bottom: 16px; flex-wrap: nowrap; }
    .filter-chip { flex-shrink: 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .ctaband-inner {
      grid-template-columns: 1fr;
      grid-template-areas: "head" "buttons";
      gap: 16px 14px; align-items: start;
    }
    .ctaband-head { grid-area: head; }
    .ctaband-person { grid-area: person; align-self: end; }
    .ctaband-person img { max-height: 220px; }
    .ctaband-buttons { grid-area: buttons; margin-top: 8px; }
    .ctaband-heading-img { max-width: 100%; }
    .ctaband-feats { gap: 6px; }
    .feat-chip { padding: 6px 12px; font-size: 11px; }
  }
  @media (max-width: 480px) {
    .page-hero h1 { font-size: 28px; }
    .page-hero p.lead { font-size: 14px; }
    .header-inner { padding: 8px 12px; gap: 8px; }
    .logo-text .lt-sub { display: none; }
    .logo-text .lt-main { font-size: 15px; }
    .logo-mark { width: 34px; height: 34px; }
    .hamburger-btn { width: 40px; height: 40px; }
    .hamburger-btn span { width: 22px; height: 3px; }
    .drawer-panel { padding: 60px 18px 22px; }
    .page-num { width: 38px; height: 38px; font-size: 14px; }
    .ctaband-inner { grid-template-columns: 1fr; }
    .ctaband-person img { max-height: 190px; }
    .cta-band-btn { font-size: 16px; padding: 18px 20px; }
  }

/* ============================================
   pricing.html
   ============================================ */

  :root {
    --orange: #f5732a;
    --orange-soft: #ff8a3d;
    --pink: #ec5b8a;
    --pink-deep: #d94276;
    --blue: #2f7fea;
    --blue-deep: #2466c8;
    --blue-dark: #1a3a8c;
    --teal: #3fc1c0;
    --teal-deep: #25a09e;
    --yellow: #f5c742;
    --green: #25c466;
    --purple: #6e5db8;
    --purple-deep: #4a3a8c;
    --ink: #2a2a2a;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    color: var(--ink); background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ================= HEADER ================= */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .header-inner {
    max-width: 1280px; margin: 0 auto; padding: 14px 32px;
    display: flex; align-items: center; gap: 32px;
  }
  .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
  .logo-text { line-height: 1.15; }
  .logo-text .lt-main { font-weight: 900; font-size: 22px; letter-spacing: 1px; color: var(--blue-dark); }
  .logo-text .lt-main .lt-branch {
    display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 8px; border-radius: 4px;
    vertical-align: 3px; margin-left: 4px;
  }
  .logo-text .lt-sub { font-size: 11px; color: #555; letter-spacing: 2px; margin-top: 2px; }
  nav.main-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
  nav.main-nav a {
    font-size: 15px; font-weight: 700; color: var(--ink);
    cursor: pointer; position: relative;
    transition: color 0.2s;
  }
  nav.main-nav a::after {
    content: ""; position: absolute; left: 50%; bottom: -6px;
    width: 0; height: 3px; background: var(--blue); border-radius: 2px;
    transition: width 0.25s ease, left 0.25s ease;
  }
  nav.main-nav a.current { color: var(--blue); }
  nav.main-nav a.current::after { width: 100%; left: 0; }
  nav.main-nav a:hover { color: var(--blue); }
  nav.main-nav a:hover::after { width: 100%; left: 0; }
  .header-cta { display: flex; gap: 10px; flex-shrink: 0; }
  .btn-quote, .btn-line {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 18px; border-radius: 10px;
    font-weight: 700; font-size: 13px; color: #fff;
    box-shadow: 0 4px 0 rgba(0,0,0,0.08);
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .btn-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .btn-quote:hover, .btn-line:hover { transform: translateY(-1px); box-shadow: 0 5px 0 rgba(0,0,0,0.12); }
  .btn-icon { width: 18px; height: 18px; }

  /* hamburger */
  .hamburger-btn {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; background: transparent; border: none; cursor: pointer;
    padding: 0; flex-shrink: 0; z-index: 110; position: relative;
  }
  .hamburger-btn span {
    width: 26px; height: 3px; background: var(--blue-dark); border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, background 0.3s;
  }
  .hamburger-btn.active span { background: var(--pink); }
  .hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* drawer */
  .mobile-drawer { display: none; position: fixed; inset: 0; z-index: 100; pointer-events: none; }
  .mobile-drawer.open { pointer-events: auto; }
  .drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(20, 30, 60, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0; transition: opacity 0.3s ease;
  }
  .mobile-drawer.open .drawer-backdrop { opacity: 1; }
  .drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 84%; max-width: 340px;
    background: #fff; padding: 68px 22px 28px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(20,30,60,0.18);
    display: flex; flex-direction: column;
  }
  .mobile-drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-close {
    position: absolute; top: 14px; right: 16px;
    width: 40px; height: 40px; font-size: 32px;
    background: transparent; border: none; cursor: pointer;
    color: var(--ink); line-height: 1; border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
  }
  .drawer-close:hover { background: #f5f5f5; transform: rotate(90deg); }
  .drawer-logo { line-height: 1.15; padding: 0 4px 16px; border-bottom: 2px solid #f0f3f8; margin-bottom: 14px; }
  .drawer-logo .lt-main { font-weight: 900; font-size: 18px; color: var(--blue-dark); letter-spacing: 0.5px; }
  .drawer-logo .lt-main .lt-branch {
    display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 7px; border-radius: 4px;
    margin-left: 4px; vertical-align: 2px;
  }
  .drawer-logo .lt-sub { font-size: 10px; color: #666; letter-spacing: 1.5px; margin-top: 3px; }
  .drawer-nav { list-style: none; margin-bottom: 22px; }
  .drawer-nav li {
    opacity: 0; transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-drawer.open .drawer-nav li { opacity: 1; transform: translateX(0); }
  .mobile-drawer.open .drawer-nav li:nth-child(1) { transition-delay: 0.10s; }
  .mobile-drawer.open .drawer-nav li:nth-child(2) { transition-delay: 0.14s; }
  .mobile-drawer.open .drawer-nav li:nth-child(3) { transition-delay: 0.18s; }
  .mobile-drawer.open .drawer-nav li:nth-child(4) { transition-delay: 0.22s; }
  .mobile-drawer.open .drawer-nav li:nth-child(5) { transition-delay: 0.26s; }
  .mobile-drawer.open .drawer-nav li:nth-child(6) { transition-delay: 0.30s; }
  .mobile-drawer.open .drawer-nav li:nth-child(7) { transition-delay: 0.34s; }
  .drawer-nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 6px; font-size: 16px; font-weight: 700; color: var(--ink);
    border-bottom: 1px dashed #e8e8e8; cursor: pointer;
    transition: color 0.2s, padding-left 0.2s;
  }
  .drawer-nav a.current { color: var(--blue); padding-left: 12px; }
  .drawer-nav a::after { content: "›"; font-size: 22px; color: #c8c8c8; font-weight: 400; transition: color 0.2s, transform 0.2s; }
  .drawer-nav a.current::after { color: var(--blue); }
  .drawer-nav a:hover { color: var(--blue); padding-left: 12px; }
  .drawer-nav a:hover::after { color: var(--blue); transform: translateX(4px); }
  .drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 16px; }
  .drawer-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 12px; color: #fff; font-weight: 800; font-size: 15px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.12);
    transition: transform 0.15s;
  }
  .drawer-cta a:hover { transform: translateY(-2px); }
  .drawer-cta a svg { width: 18px; height: 18px; }
  .drawer-cta-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .drawer-cta-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .drawer-cta-tel {
    background: #fff; color: var(--blue-dark) !important;
    border: 2px solid var(--blue);
    box-shadow: 0 4px 0 rgba(47,127,234,0.2) !important;
  }
  body.drawer-open { overflow: hidden; }

  /* ================= PAGE HERO ================= */
  .page-hero {
    position: relative;
    padding: 70px 0 50px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, #fff8ed 0%, #fff 100%);
  }
  .page-hero-inner {
    max-width: 1220px; margin: 0 auto; padding: 0 32px;
    position: relative; z-index: 2;
  }
  .page-hero-script-css {
    font-family: 'Caveat', cursive;
    font-size: 64px;
    line-height: 1;
    color: var(--orange);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 1px;
  }
  .page-hero h1 {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 900; font-size: 48px;
    color: #1f2a44; letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .page-hero p.lead {
    font-size: 16px; color: #555; line-height: 1.9; max-width: 680px; margin: 0 auto;
  }
  .breadcrumb {
    margin-top: 24px;
    font-size: 12px; color: #888;
    display: flex; justify-content: center; gap: 8px;
  }
  .breadcrumb a { color: var(--blue); }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb .sep { color: #ccc; }
  .ph-deco { position: absolute; pointer-events: none; z-index: 0; }
  .ph-deco img { width: 100%; }
  .ph-deco-tl { top: 20px; left: -50px; width: 170px; opacity: 0.8; }
  .ph-deco-tr { top: -10px; right: -40px; width: 180px; opacity: 0.8; transform: rotate(12deg); }
  .ph-deco-bl { bottom: -20px; left: 60px; width: 130px; opacity: 0.8; }
  .ph-deco-br { bottom: -10px; right: 80px; width: 110px; opacity: 0.85; }

  /* ================= NOTICE ================= */
  .pricing-notice {
    max-width: 1080px; margin: 30px auto 0;
    padding: 0 28px;
  }
  .notice-box {
    background: linear-gradient(135deg, #fff8ed, #fff);
    border: 2px dashed var(--orange);
    border-radius: 20px;
    padding: 22px 28px 24px;
    color: #4a3a1a;
  }
  .notice-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(245,115,42,0.4);
  }
  .notice-head .notice-icon {
    font-size: 24px; line-height: 1;
  }
  .notice-head .notice-title {
    font-size: 16px; font-weight: 900;
    color: var(--orange);
    letter-spacing: 0.8px;
  }
  .notice-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 28px;
  }
  .notice-list li {
    display: flex; align-items: flex-start; gap: 12px;
  }
  .notice-list-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    line-height: 1;
  }
  .notice-list-text {
    display: flex; flex-direction: column;
    gap: 4px;
    line-height: 1.55;
    flex: 1;
    min-width: 0;
  }
  .notice-list-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 1px;
  }
  .notice-list-value {
    font-size: 13px;
    font-weight: 700;
    color: #1f2a44;
  }
  @media (max-width: 980px) {
    .notice-list { grid-template-columns: 1fr; gap: 14px; }
    .notice-box { padding: 20px 22px; }
  }

  /* ================= PLAN CARDS ================= */
  .plans-section {
    padding: 50px 0 80px;
    position: relative;
  }
  .plans-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 28px;
  }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  .plan-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px 22px 24px;
    box-shadow: 0 8px 24px rgba(50,80,140,0.09);
    border: 2px solid rgba(0,0,0,0.04);
    position: relative;
    display: flex; flex-direction: column;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s, border-color 0.3s;
  }
  .plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(50,80,140,0.18);
  }
  .plan-card[data-plan="silicon"]   { border-top: 6px solid var(--blue); }
  .plan-card[data-plan="radical"]   { border-top: 6px solid var(--pink); border-color: rgba(236,91,138,0.25); transform: scale(1.04); box-shadow: 0 14px 36px rgba(236,91,138,0.16); z-index: 2; }
  .plan-card[data-plan="radical"]:hover { transform: translateY(-10px) scale(1.04); }
  .plan-card[data-plan="fluorine"]  { border-top: 6px solid var(--orange); }
  .plan-card[data-plan="inorganic"] { border-top: 6px solid var(--purple); }

  /* tier label */
  .plan-tier {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
    line-height: 1;
  }
  .plan-card[data-plan="silicon"]   .plan-tier { color: var(--blue); }
  .plan-card[data-plan="radical"]   .plan-tier { color: var(--pink); }
  .plan-card[data-plan="fluorine"]  .plan-tier { color: var(--orange); }
  .plan-card[data-plan="inorganic"] .plan-tier { color: var(--purple); }

  .plan-name {
    font-size: 22px;
    font-weight: 900;
    color: #1f2a44;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
  }
  .plan-catch {
    font-size: 13px;
    color: #777;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .plan-paint {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px; font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
  .plan-card[data-plan="silicon"]   .plan-paint { background: var(--blue); }
  .plan-card[data-plan="radical"]   .plan-paint { background: var(--pink); }
  .plan-card[data-plan="fluorine"]  .plan-paint { background: var(--orange); }
  .plan-card[data-plan="inorganic"] .plan-paint { background: var(--purple); }

  .plan-price {
    padding: 16px 0;
    border-top: 1px dashed #e2e2e2;
    border-bottom: 1px dashed #e2e2e2;
    margin-bottom: 18px;
    text-align: center;
  }
  .plan-price-from {
    display: block;
    font-size: 10px; font-weight: 800;
    color: #999; letter-spacing: 1.5px;
    margin-bottom: 4px;
  }
  .plan-price-num {
    display: inline-block;
    font-size: 44px; font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
  }
  .plan-card[data-plan="silicon"]   .plan-price-num { color: var(--blue); }
  .plan-card[data-plan="radical"]   .plan-price-num { color: var(--pink); }
  .plan-card[data-plan="fluorine"]  .plan-price-num { color: var(--orange); }
  .plan-card[data-plan="inorganic"] .plan-price-num { color: var(--purple); }
  .plan-price-yen { font-size: 18px; margin-left: 2px; font-weight: 800; }
  .plan-price-note {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 0.3px;
  }

  .plan-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }
  .plan-stat {
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
  }
  .plan-stat-label {
    display: block;
    font-size: 10px;
    color: #888; font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 3px;
  }
  .plan-stat-value {
    font-size: 16px;
    color: #1f2a44;
    font-weight: 900;
    letter-spacing: 0.5px;
  }
  .plan-stat-value .small { font-size: 11px; margin-left: 1px; }

  .plan-features {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
  }
  .plan-features li {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    padding: 7px 0 7px 22px;
    position: relative;
    border-bottom: 1px dotted #eee;
  }
  .plan-features li:last-child { border-bottom: none; }
  .plan-features li::before {
    content: "";
    position: absolute;
    left: 0; top: 11px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/10px no-repeat;
  }

  .plan-cta {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 14px 16px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px; font-weight: 800;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
  }
  .plan-card[data-plan="silicon"]   .plan-cta { background: var(--blue); box-shadow: 0 5px 0 var(--blue-deep); }
  .plan-card[data-plan="radical"]   .plan-cta { background: var(--pink); box-shadow: 0 5px 0 var(--pink-deep); }
  .plan-card[data-plan="fluorine"]  .plan-cta { background: var(--orange); box-shadow: 0 5px 0 #c2541a; }
  .plan-card[data-plan="inorganic"] .plan-cta { background: var(--purple); box-shadow: 0 5px 0 var(--purple-deep); }
  .plan-cta:hover { transform: translateY(-2px); }
  .plan-cta::after { content: "→"; font-size: 16px; }

  /* popular ribbon */
  .plan-ribbon {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6e9c, #d94276);
    color: #fff;
    padding: 6px 22px;
    border-radius: 999px;
    font-size: 12px; font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(217,66,118,0.45);
    white-space: nowrap;
    z-index: 3;
  }
  .plan-ribbon::before {
    content: "👑";
    margin-right: 4px;
    font-size: 14px;
  }
  /* premium ribbon */
  .plan-premium-tag {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8472d4, #4a3a8c);
    color: #fff;
    padding: 6px 22px;
    border-radius: 999px;
    font-size: 11px; font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 4px 12px rgba(74,58,140,0.4);
    white-space: nowrap;
    z-index: 3;
  }
  .plan-premium-tag::before {
    content: "✦";
    margin-right: 4px;
    font-size: 13px;
  }

  /* ============== Section heading ============== */
  .section-h {
    text-align: center;
    margin-bottom: 36px;
  }
  .section-h .label {
    font-family: 'Caveat', cursive;
    font-size: 36px; font-weight: 700;
    color: var(--orange);
    display: block; line-height: 1;
    margin-bottom: 4px;
  }
  .section-h h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900; font-size: 32px;
    color: #1f2a44;
    letter-spacing: 0.5px;
  }
  .section-h p {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.85;
  }

  /* ================= INCLUDED ================= */
  .included-section {
    padding: 80px 0 80px;
    background: linear-gradient(180deg, #fff, #fafbfd);
  }
  .included-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 28px;
  }
  .included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(50,80,140,0.07);
    border: 1px solid rgba(0,0,0,0.04);
  }
  .included-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 8px;
    font-size: 13px; font-weight: 700;
    color: #333;
    border-radius: 10px;
    transition: background 0.2s;
  }
  .included-item:hover { background: #f7fafc; }
  .included-item::before {
    content: "";
    width: 22px; height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/14px no-repeat;
  }

  /* ================= ADD-ONS ================= */
  .addon-section {
    padding: 80px 0 80px;
    background: #fff;
  }
  .addon-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 28px;
  }
  .addon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 560px;
    margin: 0 auto;
  }
  .addon-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eaeef5;
    transition: border-color 0.2s, transform 0.2s;
  }
  .addon-row:hover { border-color: var(--orange); transform: translateY(-2px); }
  .addon-name {
    font-size: 14px; font-weight: 800; color: #1f2a44;
    display: flex; align-items: center; gap: 10px;
  }
  .addon-name::before {
    content: "+";
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 14px;
    flex-shrink: 0;
  }
  .addon-name-text {
    display: flex; flex-direction: column; gap: 2px;
    line-height: 1.4;
  }
  .addon-note {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.3px;
  }
  .addon-price {
    font-size: 15px; font-weight: 900;
    color: var(--orange);
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-left: 12px;
  }

  /* ================= WARRANTY ================= */
  .warranty-section {
    padding: 80px 0;
    background: #fff;
  }
  .warranty-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 28px;
  }

  /* プラン別保証年数の早見表 */
  .warranty-years {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 36px;
  }
  .warranty-year-item {
    background: #fff;
    border: 2px solid #eaeef5;
    border-top-width: 6px;
    border-radius: 14px;
    padding: 16px 10px 14px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .warranty-year-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(50,80,140,0.1);
  }
  .warranty-year-item.silicon  { border-top-color: var(--blue); }
  .warranty-year-item.radical  { border-top-color: var(--pink); }
  .warranty-year-item.fluorine { border-top-color: var(--orange); }
  .warranty-year-item.inorganic{ border-top-color: var(--purple); }
  .wy-plan {
    display: block;
    font-size: 12px; font-weight: 800;
    color: #777;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }
  .wy-num {
    font-size: 34px; font-weight: 900;
    line-height: 1;
  }
  .warranty-year-item.silicon  .wy-num { color: var(--blue); }
  .warranty-year-item.radical  .wy-num { color: var(--pink); }
  .warranty-year-item.fluorine .wy-num { color: var(--orange); }
  .warranty-year-item.inorganic .wy-num { color: var(--purple); }
  .wy-unit { font-size: 15px; margin-left: 2px; }

  /* 対象 / 対象外 */
  .warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }
  .warranty-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px 24px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 20px rgba(50,80,140,0.06);
  }
  .warranty-card.covered  { border-top: 4px solid var(--green); }
  .warranty-card.excluded { border-top: 4px solid #b3b3b3; }
  .warranty-card-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
  }
  .warranty-card-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 18px; color: #fff;
    flex-shrink: 0;
  }
  .warranty-card.covered  .warranty-card-icon { background: var(--green); }
  .warranty-card.excluded .warranty-card-icon { background: #b3b3b3; }
  .warranty-card h3 {
    font-size: 17px; font-weight: 900;
    color: #1f2a44;
  }
  .warranty-card.excluded h3 { color: #888; }
  .warranty-card ul { list-style: none; }
  .warranty-card li {
    font-size: 13px; color: #555;
    padding: 8px 0 8px 22px;
    position: relative;
    border-bottom: 1px dotted #eee;
    line-height: 1.7;
  }
  .warranty-card li:last-child { border-bottom: none; }
  .warranty-card.covered li::before {
    content: "○"; position: absolute; left: 0; top: 8px;
    color: var(--green); font-weight: 900; font-size: 13px;
  }
  .warranty-card.excluded li::before {
    content: "×"; position: absolute; left: 0; top: 8px;
    color: #aaa; font-weight: 900; font-size: 13px;
  }

  /* 補修フロー */
  .warranty-flow {
    background: #fafbfd;
    border-radius: 18px;
    padding: 24px 28px 28px;
    border: 1px dashed #d0dae8;
  }
  .warranty-flow-title {
    font-size: 15px; font-weight: 900;
    color: #1f2a44;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 8px;
  }
  .warranty-flow-title::before {
    content: "📋"; font-size: 18px; line-height: 1;
  }
  .warranty-flow-list {
    list-style: none;
    counter-reset: wf;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .warranty-flow-list li {
    counter-increment: wf;
    position: relative;
    padding: 14px 12px 14px 48px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eaeef5;
    font-size: 12px;
    color: #555;
    line-height: 1.65;
  }
  .warranty-flow-list li::before {
    content: counter(wf);
    position: absolute;
    left: 12px; top: 14px;
    width: 26px; height: 26px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 12px;
    box-shadow: 0 2px 0 #c2541a;
  }
  .warranty-flow-list li strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: #1f2a44;
    margin-bottom: 4px;
  }

  /* ================= PROCESS ================= */
  .process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafbfd, #fff);
    position: relative;
  }
  .process-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 28px;
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    position: relative;
  }
  .process-step {
    text-align: center;
    padding: 18px 8px;
    background: #fff;
    border-radius: 14px;
    border: 2px solid #eaeef5;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), border-color 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
  }
  .process-step:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 10px 24px rgba(245,115,42,0.18);
  }
  .process-step-num {
    width: 36px; height: 36px;
    margin: 0 auto 8px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 14px;
    box-shadow: 0 3px 0 #c2541a;
  }
  .process-step-icon {
    font-size: 28px;
    margin-bottom: 6px;
    line-height: 1;
  }
  .process-step-title {
    font-size: 12px; font-weight: 800;
    color: #1f2a44;
    line-height: 1.4;
  }

  /* ================= FAQ ================= */
  .faq-section {
    padding: 80px 0 100px;
    background: #fff;
  }
  .faq-inner {
    max-width: 880px; margin: 0 auto; padding: 0 28px;
  }
  .faq-list { display: flex; flex-direction: column; gap: 14px; }
  .faq-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(50,80,140,0.07);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(50,80,140,0.13);
  }
  .faq-item.open { border: 1px solid rgba(245,115,42,0.3); }
  .faq-q-btn {
    width: 100%;
    display: flex; align-items: center; gap: 16px;
    padding: 20px 26px;
    text-align: left;
    cursor: pointer;
    background: transparent;
    transition: background 0.25s;
  }
  .faq-q-btn:hover { background: rgba(245,115,42,0.04); }
  .faq-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--orange);
    color: #fff; font-weight: 900; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.45s cubic-bezier(.34,1.56,.64,1);
  }
  .faq-item:hover .faq-num { transform: rotate(-12deg) scale(1.1); }
  .faq-q-text {
    flex: 1;
    font-weight: 800; font-size: 15px; color: #222;
  }
  .faq-toggle {
    width: 24px; height: 24px;
    flex-shrink: 0;
    position: relative;
  }
  .faq-toggle::before, .faq-toggle::after {
    content: ""; position: absolute;
    background: var(--orange);
    border-radius: 2px;
    top: 50%; left: 50%;
  }
  .faq-toggle::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
  .faq-toggle::after {
    width: 2px; height: 14px; transform: translate(-50%, -50%);
    transition: transform 0.3s;
  }
  .faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-item.open .faq-a { max-height: 400px; }
  .faq-a-inner {
    padding: 0 26px 22px 78px;
    color: #555; font-size: 14px; line-height: 1.95;
  }

  /* ================= CTA BAND (shared) ================= */
  .ctaband {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: #fff;
  }
  .ctaband-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: center;
    position: relative; z-index: 2;
  }
  .ctaband-heading-img { width: 100%; max-width: 460px; height: auto; margin-bottom: 14px; display: block; }
  .ctaband-head p { font-size: 14px; color: #555; line-height: 1.8; }
  .ctaband-feats { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
  .feat-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: #fff; border-radius: 999px;
    border: 2px solid var(--orange); color: var(--orange);
    font-size: 13px; font-weight: 800;
    box-shadow: 0 3px 0 rgba(245,115,42,0.18);
  }
  .feat-chip::before { content: "✓"; font-weight: 900; font-size: 14px; }
  .ctaband-buttons { display: flex; flex-direction: column; gap: 14px; }
  .cta-band-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 22px 28px; border-radius: 16px;
    color: #fff; font-weight: 900; font-size: 19px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.06);
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.5px;
  }
  .cta-band-btn .icn { width: 22px; height: 22px; flex-shrink: 0; }
  .cta-band-btn.form { background: linear-gradient(180deg, #ff8a3d, #f5732a); box-shadow: 0 8px 0 #c2541a, 0 14px 24px rgba(245,115,42,0.3); }
  .cta-band-btn.line { background: linear-gradient(180deg, #2bd86b, #1bb358); box-shadow: 0 8px 0 #168a44, 0 14px 24px rgba(43,216,107,0.3); }
  .cta-band-btn:hover { transform: translateY(-2px); }
  .ctaband-tel {
    background: #fff; border-radius: 14px; padding: 12px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    margin-top: 14px;
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: inherit; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .ctaband-tel:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .ctaband-tel:hover .tel-num { color: var(--orange); }
  .tel-block { display: flex; flex-direction: column; flex: 1; }
  .tel-label-txt { font-size: 14px; font-weight: 800; color: var(--orange); margin-bottom: 2px; }
  .tel-num {
    font-size: 30px; font-weight: 900; color: #1f2a44;
    letter-spacing: 1px; line-height: 1; transition: color 0.2s ease;
  }
  .tel-num::before { content: "📞"; font-size: 22px; margin-right: 6px; vertical-align: -2px; }
  .tel-hours {
    display: flex; flex-direction: column; align-items: center;
    padding: 8px 14px;
    background: linear-gradient(180deg, #2f7fea, #2466c8);
    color: #fff; border-radius: 10px; font-weight: 800; flex-shrink: 0;
  }
  .tel-hours .hours-label { font-size: 10px; letter-spacing: 1px; opacity: 0.85; }
  .tel-hours .hours-val { font-size: 15px; }
  .ctaband-person { position: relative; display: flex; align-items: flex-end; justify-content: center; }
  .ctaband-person img {
    width: 100%; height: auto; max-height: 440px; object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
  }
  .ctaband-deco { position: absolute; pointer-events: none; z-index: 1; }
  .ctaband-deco img { width: 100%; }
  .cb-deco-tl { top: 0; left: 0; width: 200px; }
  .cb-deco-tr { top: 0; right: 0; width: 220px; }
  .cb-deco-bl { bottom: 0; left: 60px; width: 200px; }
  .cb-deco-br { bottom: -10px; right: 0; width: 240px; }

  /* ================= FOOTER ================= */
  .site-footer { background: #fff; padding: 70px 0 40px; border-top: 1px solid #f0f0f0; }
  .footer-grid {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    align-items: start;
  }
  .footer-brand .logo { margin-bottom: 18px; }
  .footer-brand p { font-size: 12px; color: #666; line-height: 1.8; }
  .footer-col h4 { font-size: 13px; font-weight: 800; color: #777; margin-bottom: 14px; }
  .footer-col ul { list-style: none; }
  .footer-col li { font-size: 13px; color: #333; margin-bottom: 8px; }
  .footer-info { font-size: 13px; color: #333; line-height: 1.9; }
  .footer-info .row { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; }
  .footer-info .label { color: #888; font-size: 12px; flex-shrink: 0; min-width: 60px; }
  .tel-link { color: inherit; text-decoration: none; transition: color 0.2s; }
  .tel-link:hover { color: var(--orange); text-decoration: underline; }
  .footer-copyright { text-align: center; margin-top: 50px; font-size: 12px; color: #999; }

  /* ================= RESPONSIVE ================= */
  @media (max-width: 1180px) {
    .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .plan-card[data-plan="radical"] { transform: none; }
    .plan-card[data-plan="radical"]:hover { transform: translateY(-10px); }
    .included-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  }
  @media (max-width: 980px) {
    nav.main-nav { display: none; }
    .header-inner { padding: 10px 16px; gap: 12px; }
    .logo { gap: 8px; min-width: 0; flex: 1; }
    .logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
    .logo-text .lt-main { font-size: 17px; letter-spacing: 0.3px; }
    .logo-text .lt-main .lt-branch { font-size: 10px; padding: 1px 6px; margin-left: 3px; }
    .logo-text .lt-sub { font-size: 10px; letter-spacing: 1.5px; }
    .header-cta { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-drawer { display: block; }

    .page-hero { padding: 50px 0 30px; }
    .page-hero h1 { font-size: 36px; }
    .page-hero-script-css { font-size: 50px; }
    .ph-deco-tl, .ph-deco-tr { width: 130px; }
    .ph-deco-bl, .ph-deco-br { display: none; }

    .section-h h2 { font-size: 26px; }
    .section-h .label { font-size: 28px; }

    .addon-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: repeat(2, 1fr); padding: 22px 18px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .warranty-years { grid-template-columns: repeat(2, 1fr); }
    .warranty-grid { grid-template-columns: 1fr; }
    .warranty-flow-list { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .ctaband-inner {
      grid-template-columns: 1fr;
      grid-template-areas: "head" "buttons";
      gap: 16px 14px; align-items: start;
    }
    .ctaband-head { grid-area: head; }
    .ctaband-person { grid-area: person; align-self: end; }
    .ctaband-person img { max-height: 220px; }
    .ctaband-buttons { grid-area: buttons; margin-top: 8px; }
    .ctaband-heading-img { max-width: 100%; }
    .ctaband-feats { gap: 6px; }
    .feat-chip { padding: 6px 12px; font-size: 11px; }
  }
  @media (max-width: 640px) {
    .plans-grid { grid-template-columns: 1fr; gap: 30px; }
    .plan-card[data-plan="radical"] { margin-top: 14px; }
  }
  @media (max-width: 480px) {
    .page-hero h1 { font-size: 28px; }
    .page-hero p.lead { font-size: 14px; }
    .header-inner { padding: 8px 12px; gap: 8px; }
    .logo-text .lt-sub { display: none; }
    .logo-text .lt-main { font-size: 15px; }
    .logo-mark { width: 34px; height: 34px; }
    .hamburger-btn { width: 40px; height: 40px; }
    .hamburger-btn span { width: 22px; height: 3px; }
    .drawer-panel { padding: 60px 18px 22px; }
    .ctaband-inner { grid-template-columns: 1fr; }
    .ctaband-person img { max-height: 190px; }
    .cta-band-btn { font-size: 16px; padding: 18px 20px; }
  }

/* ============================================
   about.html
   ============================================ */

  :root {
    --orange: #f5732a;
    --orange-soft: #ff8a3d;
    --pink: #ec5b8a;
    --pink-deep: #d94276;
    --blue: #2f7fea;
    --blue-deep: #2466c8;
    --blue-dark: #1a3a8c;
    --teal: #3fc1c0;
    --teal-deep: #25a09e;
    --yellow: #f5c742;
    --yellow-deep: #d9a91f;
    --green: #25c466;
    --purple: #6e5db8;
    --purple-deep: #4a3a8c;
    --ink: #2a2a2a;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    color: var(--ink); background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ================= HEADER ================= */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .header-inner {
    max-width: 1280px; margin: 0 auto; padding: 14px 32px;
    display: flex; align-items: center; gap: 32px;
  }
  .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
  .logo-text { line-height: 1.15; }
  .logo-text .lt-main { font-weight: 900; font-size: 22px; letter-spacing: 1px; color: var(--blue-dark); }
  .logo-text .lt-main .lt-branch {
    display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 8px; border-radius: 4px;
    vertical-align: 3px; margin-left: 4px;
  }
  .logo-text .lt-sub { font-size: 11px; color: #555; letter-spacing: 2px; margin-top: 2px; }
  nav.main-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
  nav.main-nav a {
    font-size: 15px; font-weight: 700; color: var(--ink);
    cursor: pointer; position: relative;
    transition: color 0.2s;
  }
  nav.main-nav a::after {
    content: ""; position: absolute; left: 50%; bottom: -6px;
    width: 0; height: 3px; background: var(--blue); border-radius: 2px;
    transition: width 0.25s ease, left 0.25s ease;
  }
  nav.main-nav a.current { color: var(--blue); }
  nav.main-nav a.current::after { width: 100%; left: 0; }
  nav.main-nav a:hover { color: var(--blue); }
  nav.main-nav a:hover::after { width: 100%; left: 0; }
  .header-cta { display: flex; gap: 10px; flex-shrink: 0; }
  .btn-quote, .btn-line {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 18px; border-radius: 10px;
    font-weight: 700; font-size: 13px; color: #fff;
    box-shadow: 0 4px 0 rgba(0,0,0,0.08);
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .btn-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .btn-quote:hover, .btn-line:hover { transform: translateY(-1px); box-shadow: 0 5px 0 rgba(0,0,0,0.12); }
  .btn-icon { width: 18px; height: 18px; }

  /* hamburger */
  .hamburger-btn {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; background: transparent; border: none; cursor: pointer;
    padding: 0; flex-shrink: 0; z-index: 110; position: relative;
  }
  .hamburger-btn span {
    width: 26px; height: 3px; background: var(--blue-dark); border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, background 0.3s;
  }
  .hamburger-btn.active span { background: var(--pink); }
  .hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* drawer */
  .mobile-drawer { display: none; position: fixed; inset: 0; z-index: 100; pointer-events: none; }
  .mobile-drawer.open { pointer-events: auto; }
  .drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(20, 30, 60, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0; transition: opacity 0.3s ease;
  }
  .mobile-drawer.open .drawer-backdrop { opacity: 1; }
  .drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 84%; max-width: 340px;
    background: #fff; padding: 68px 22px 28px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(20,30,60,0.18);
    display: flex; flex-direction: column;
  }
  .mobile-drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-close {
    position: absolute; top: 14px; right: 16px;
    width: 40px; height: 40px; font-size: 32px;
    background: transparent; border: none; cursor: pointer;
    color: var(--ink); line-height: 1; border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
  }
  .drawer-close:hover { background: #f5f5f5; transform: rotate(90deg); }
  .drawer-logo { line-height: 1.15; padding: 0 4px 16px; border-bottom: 2px solid #f0f3f8; margin-bottom: 14px; }
  .drawer-logo .lt-main { font-weight: 900; font-size: 18px; color: var(--blue-dark); letter-spacing: 0.5px; }
  .drawer-logo .lt-main .lt-branch {
    display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 7px; border-radius: 4px;
    margin-left: 4px; vertical-align: 2px;
  }
  .drawer-logo .lt-sub { font-size: 10px; color: #666; letter-spacing: 1.5px; margin-top: 3px; }
  .drawer-nav { list-style: none; margin-bottom: 22px; }
  .drawer-nav li {
    opacity: 0; transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-drawer.open .drawer-nav li { opacity: 1; transform: translateX(0); }
  .mobile-drawer.open .drawer-nav li:nth-child(1) { transition-delay: 0.10s; }
  .mobile-drawer.open .drawer-nav li:nth-child(2) { transition-delay: 0.14s; }
  .mobile-drawer.open .drawer-nav li:nth-child(3) { transition-delay: 0.18s; }
  .mobile-drawer.open .drawer-nav li:nth-child(4) { transition-delay: 0.22s; }
  .mobile-drawer.open .drawer-nav li:nth-child(5) { transition-delay: 0.26s; }
  .mobile-drawer.open .drawer-nav li:nth-child(6) { transition-delay: 0.30s; }
  .mobile-drawer.open .drawer-nav li:nth-child(7) { transition-delay: 0.34s; }
  .drawer-nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 6px; font-size: 16px; font-weight: 700; color: var(--ink);
    border-bottom: 1px dashed #e8e8e8; cursor: pointer;
    transition: color 0.2s, padding-left 0.2s;
  }
  .drawer-nav a.current { color: var(--blue); padding-left: 12px; }
  .drawer-nav a::after { content: "›"; font-size: 22px; color: #c8c8c8; font-weight: 400; transition: color 0.2s, transform 0.2s; }
  .drawer-nav a.current::after { color: var(--blue); }
  .drawer-nav a:hover { color: var(--blue); padding-left: 12px; }
  .drawer-nav a:hover::after { color: var(--blue); transform: translateX(4px); }
  .drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 16px; }
  .drawer-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 12px; color: #fff; font-weight: 800; font-size: 15px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.12);
    transition: transform 0.15s;
  }
  .drawer-cta a:hover { transform: translateY(-2px); }
  .drawer-cta a svg { width: 18px; height: 18px; }
  .drawer-cta-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .drawer-cta-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .drawer-cta-tel {
    background: #fff; color: var(--blue-dark) !important;
    border: 2px solid var(--blue);
    box-shadow: 0 4px 0 rgba(47,127,234,0.2) !important;
  }
  body.drawer-open { overflow: hidden; }

  /* ================= PAGE HERO ================= */
  .page-hero {
    position: relative;
    padding: 70px 0 50px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, #fffaef 0%, #fff 100%);
  }
  .page-hero-inner {
    max-width: 1220px; margin: 0 auto; padding: 0 32px;
    position: relative; z-index: 2;
  }
  .page-hero-script-css {
    font-family: 'Caveat', cursive;
    font-size: 64px; line-height: 1;
    color: var(--yellow-deep);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 1px;
  }
  .page-hero h1 {
    font-weight: 900; font-size: 48px;
    color: #1f2a44; letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .page-hero p.lead {
    font-size: 16px; color: #555; line-height: 1.9; max-width: 680px; margin: 0 auto;
  }
  .breadcrumb {
    margin-top: 24px;
    font-size: 12px; color: #888;
    display: flex; justify-content: center; gap: 8px;
  }
  .breadcrumb a { color: var(--blue); }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb .sep { color: #ccc; }
  .ph-deco { position: absolute; pointer-events: none; z-index: 0; }
  .ph-deco img { width: 100%; }
  .ph-deco-tl { top: 20px; left: -50px; width: 170px; opacity: 0.8; }
  .ph-deco-tr { top: -10px; right: -40px; width: 180px; opacity: 0.8; transform: rotate(12deg); }
  .ph-deco-bl { bottom: -20px; left: 60px; width: 130px; opacity: 0.8; }
  .ph-deco-br { bottom: -10px; right: 80px; width: 110px; opacity: 0.85; }

  /* ============= Section heading ============= */
  .section-h {
    text-align: center;
    margin-bottom: 36px;
  }
  .section-h .label {
    font-family: 'Caveat', cursive;
    font-size: 36px; font-weight: 700;
    color: var(--yellow-deep);
    display: block; line-height: 1;
    margin-bottom: 4px;
  }
  .section-h h2 {
    font-weight: 900; font-size: 32px;
    color: #1f2a44; letter-spacing: 0.5px;
  }
  .section-h p {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.85;
  }

  /* ================= GREETING ================= */
  .greeting-section {
    padding: 80px 0 80px;
    position: relative;
  }
  .greeting-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .greeting-photo {
    position: relative;
  }
  .greeting-photo-wrap {
    background: linear-gradient(135deg, #fff8e1, #fffdf3);
    border-radius: 28px;
    aspect-ratio: 4/5;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(40, 70, 130, 0.12);
    display: flex; align-items: center; justify-content: center;
    padding: 0 20px;
    position: relative;
  }
  .greeting-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }
  .greeting-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px;
    color: #c8a849;
    text-align: center;
  }
  .greeting-photo-placeholder .ph-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 2px dashed #d9a91f;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    line-height: 1;
  }
  .greeting-photo-placeholder .ph-label {
    font-size: 13px; font-weight: 800;
    letter-spacing: 1.5px;
    color: #a98826;
  }
  .greeting-badge {
    position: absolute;
    bottom: -20px; right: -10px;
    width: 150px;
    z-index: 2;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15));
    animation: badge-float 4s ease-in-out infinite;
  }
  @keyframes badge-float {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(-6px) rotate(-6deg); }
  }
  .greeting-content { position: relative; }
  .greeting-eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    color: var(--yellow-deep);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
  }
  .greeting-title {
    font-size: 30px; font-weight: 900;
    color: #1f2a44;
    line-height: 1.4;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
  }
  .greeting-title em {
    color: var(--yellow-deep);
    background: linear-gradient(transparent 60%, rgba(245,199,66,0.4) 60%);
    padding: 0 4px;
    font-style: normal;
  }
  .greeting-body p {
    font-size: 15px; color: #555;
    line-height: 1.95;
    margin-bottom: 14px;
  }
  .greeting-sign {
    margin-top: 24px;
    font-size: 13px; color: #888;
    display: flex; align-items: baseline; gap: 12px;
  }
  .greeting-sign .role {
    font-weight: 700; color: #1f2a44;
  }
  .greeting-sign .name {
    font-size: 20px;
    font-weight: 900;
    color: #1f2a44;
    letter-spacing: 1px;
  }

  /* ================= COMPANY INFO ================= */
  .info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafbfd, #fff);
  }
  .info-inner {
    max-width: 880px; margin: 0 auto; padding: 0 28px;
  }
  .info-table {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(50,80,140,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
  }
  .info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid #f0f3f8;
    transition: background 0.2s;
  }
  .info-row:last-child { border-bottom: none; }
  .info-row:hover { background: #fffdf3; }
  .info-key {
    padding: 18px 22px;
    background: #fafbfd;
    font-size: 13px;
    font-weight: 800;
    color: #555;
    letter-spacing: 0.5px;
    display: flex; align-items: center;
    border-right: 1px solid #f0f3f8;
  }
  .info-val {
    padding: 18px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.7;
    display: flex; align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .info-val a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s;
  }
  .info-val a:hover { color: var(--orange); text-decoration: underline; }
  .info-val .info-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    background: rgba(245,199,66,0.2);
    color: var(--yellow-deep);
    letter-spacing: 0.3px;
  }
  .info-placeholder {
    color: #aaa;
    font-weight: 500;
    font-style: italic;
  }

  /* ================= CTA BAND ================= */
  .ctaband {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: #fff;
  }
  .ctaband-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: center;
    position: relative; z-index: 2;
  }
  .ctaband-heading-img { width: 100%; max-width: 460px; height: auto; margin-bottom: 14px; display: block; }
  .ctaband-head p { font-size: 14px; color: #555; line-height: 1.8; }
  .ctaband-feats { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
  .feat-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: #fff; border-radius: 999px;
    border: 2px solid var(--orange); color: var(--orange);
    font-size: 13px; font-weight: 800;
    box-shadow: 0 3px 0 rgba(245,115,42,0.18);
  }
  .feat-chip::before { content: "✓"; font-weight: 900; font-size: 14px; }
  .ctaband-buttons { display: flex; flex-direction: column; gap: 14px; }
  .cta-band-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 22px 28px; border-radius: 16px;
    color: #fff; font-weight: 900; font-size: 19px;
    box-shadow: 0 8px 0 rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.06);
    transition: transform 0.15s, box-shadow 0.15s;
    letter-spacing: 0.5px;
  }
  .cta-band-btn .icn { width: 22px; height: 22px; flex-shrink: 0; }
  .cta-band-btn.form { background: linear-gradient(180deg, #ff8a3d, #f5732a); box-shadow: 0 8px 0 #c2541a, 0 14px 24px rgba(245,115,42,0.3); }
  .cta-band-btn.line { background: linear-gradient(180deg, #2bd86b, #1bb358); box-shadow: 0 8px 0 #168a44, 0 14px 24px rgba(43,216,107,0.3); }
  .cta-band-btn:hover { transform: translateY(-2px); }
  .ctaband-tel {
    background: #fff; border-radius: 14px; padding: 12px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    margin-top: 14px;
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: inherit; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .ctaband-tel:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .ctaband-tel:hover .tel-num { color: var(--orange); }
  .tel-block { display: flex; flex-direction: column; flex: 1; }
  .tel-label-txt { font-size: 14px; font-weight: 800; color: var(--orange); margin-bottom: 2px; }
  .tel-num {
    font-size: 30px; font-weight: 900; color: #1f2a44;
    letter-spacing: 1px; line-height: 1; transition: color 0.2s ease;
  }
  .tel-num::before { content: "📞"; font-size: 22px; margin-right: 6px; vertical-align: -2px; }
  .tel-hours {
    display: flex; flex-direction: column; align-items: center;
    padding: 8px 14px;
    background: linear-gradient(180deg, #2f7fea, #2466c8);
    color: #fff; border-radius: 10px; font-weight: 800; flex-shrink: 0;
  }
  .tel-hours .hours-label { font-size: 10px; letter-spacing: 1px; opacity: 0.85; }
  .tel-hours .hours-val { font-size: 15px; }
  .ctaband-person { position: relative; display: flex; align-items: flex-end; justify-content: center; }
  .ctaband-person img {
    width: 100%; height: auto; max-height: 440px; object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
  }
  .ctaband-deco { position: absolute; pointer-events: none; z-index: 1; }
  .ctaband-deco img { width: 100%; }
  .cb-deco-tl { top: 0; left: 0; width: 200px; }
  .cb-deco-tr { top: 0; right: 0; width: 220px; }
  .cb-deco-bl { bottom: 0; left: 60px; width: 200px; }
  .cb-deco-br { bottom: -10px; right: 0; width: 240px; }

  /* ================= FOOTER ================= */
  .site-footer { background: #fff; padding: 70px 0 40px; border-top: 1px solid #f0f0f0; }
  .footer-grid {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    align-items: start;
  }
  .footer-brand .logo { margin-bottom: 18px; }
  .footer-brand p { font-size: 12px; color: #666; line-height: 1.8; }
  .footer-col h4 { font-size: 13px; font-weight: 800; color: #777; margin-bottom: 14px; }
  .footer-col ul { list-style: none; }
  .footer-col li { font-size: 13px; color: #333; margin-bottom: 8px; }
  .footer-info { font-size: 13px; color: #333; line-height: 1.9; }
  .footer-info .row { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; }
  .footer-info .label { color: #888; font-size: 12px; flex-shrink: 0; min-width: 60px; }
  .tel-link { color: inherit; text-decoration: none; transition: color 0.2s; }
  .tel-link:hover { color: var(--orange); text-decoration: underline; }
  .footer-copyright { text-align: center; margin-top: 50px; font-size: 12px; color: #999; }

  /* ================= RESPONSIVE ================= */
  @media (max-width: 980px) {
    nav.main-nav { display: none; }
    .header-inner { padding: 10px 16px; gap: 12px; }
    .logo { gap: 8px; min-width: 0; flex: 1; }
    .logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
    .logo-text .lt-main { font-size: 17px; letter-spacing: 0.3px; }
    .logo-text .lt-main .lt-branch { font-size: 10px; padding: 1px 6px; margin-left: 3px; }
    .logo-text .lt-sub { font-size: 10px; letter-spacing: 1.5px; }
    .header-cta { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-drawer { display: block; }

    .page-hero { padding: 50px 0 30px; }
    .page-hero h1 { font-size: 36px; }
    .page-hero-script-css { font-size: 50px; }
    .ph-deco-tl, .ph-deco-tr { width: 130px; }
    .ph-deco-bl, .ph-deco-br { display: none; }

    .section-h h2 { font-size: 26px; }
    .section-h .label { font-size: 28px; }

    .greeting-inner { grid-template-columns: 1fr; gap: 30px; }
    .greeting-photo { max-width: 320px; margin: 0 auto; }
    .greeting-title { font-size: 24px; }
    .greeting-badge { width: 110px; right: -20px; }

    .info-row { grid-template-columns: 100px 1fr; }
    .info-key { padding: 14px 14px; font-size: 12px; }
    .info-val { padding: 14px 18px; font-size: 13px; }


    .footer-grid { grid-template-columns: 1fr 1fr; }
    .ctaband-inner {
      grid-template-columns: 1fr;
      grid-template-areas: "head" "buttons";
      gap: 16px 14px; align-items: start;
    }
    .ctaband-head { grid-area: head; }
    .ctaband-person { grid-area: person; align-self: end; }
    .ctaband-person img { max-height: 220px; }
    .ctaband-buttons { grid-area: buttons; margin-top: 8px; }
    .ctaband-heading-img { max-width: 100%; }
    .ctaband-feats { gap: 6px; }
    .feat-chip { padding: 6px 12px; font-size: 11px; }
  }
  @media (max-width: 480px) {
    .page-hero h1 { font-size: 28px; }
    .page-hero p.lead { font-size: 14px; }
    .header-inner { padding: 8px 12px; gap: 8px; }
    .logo-text .lt-sub { display: none; }
    .logo-text .lt-main { font-size: 15px; }
    .logo-mark { width: 34px; height: 34px; }
    .hamburger-btn { width: 40px; height: 40px; }
    .hamburger-btn span { width: 22px; height: 3px; }
    .drawer-panel { padding: 60px 18px 22px; }
    .ctaband-inner { grid-template-columns: 1fr; }
    .ctaband-person img { max-height: 190px; }
    .cta-band-btn { font-size: 16px; padding: 18px 20px; }
    .greeting-title { font-size: 20px; }
    .info-row { grid-template-columns: 90px 1fr; }
    .info-key { padding: 12px 10px; font-size: 11px; }
    .info-val { padding: 12px 14px; font-size: 12px; }
  }

/* ============================================
   contact.html
   ============================================ */

  :root {
    --orange: #f5732a;
    --orange-soft: #ff8a3d;
    --pink: #ec5b8a;
    --pink-deep: #d94276;
    --blue: #2f7fea;
    --blue-deep: #2466c8;
    --blue-dark: #1a3a8c;
    --teal: #3fc1c0;
    --teal-deep: #25a09e;
    --yellow: #f5c742;
    --yellow-deep: #d9a91f;
    --green: #25c466;
    --green-deep: #168a44;
    --purple: #6e5db8;
    --ink: #2a2a2a;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    color: var(--ink); background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ================= HEADER ================= */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .header-inner {
    max-width: 1280px; margin: 0 auto; padding: 14px 32px;
    display: flex; align-items: center; gap: 32px;
  }
  .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
  .logo-text { line-height: 1.15; }
  .logo-text .lt-main { font-weight: 900; font-size: 22px; letter-spacing: 1px; color: var(--blue-dark); }
  .logo-text .lt-main .lt-branch {
    display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 8px; border-radius: 4px;
    vertical-align: 3px; margin-left: 4px;
  }
  .logo-text .lt-sub { font-size: 11px; color: #555; letter-spacing: 2px; margin-top: 2px; }
  nav.main-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
  nav.main-nav a {
    font-size: 15px; font-weight: 700; color: var(--ink);
    cursor: pointer; position: relative;
    transition: color 0.2s;
  }
  nav.main-nav a::after {
    content: ""; position: absolute; left: 50%; bottom: -6px;
    width: 0; height: 3px; background: var(--blue); border-radius: 2px;
    transition: width 0.25s ease, left 0.25s ease;
  }
  nav.main-nav a.current { color: var(--blue); }
  nav.main-nav a.current::after { width: 100%; left: 0; }
  nav.main-nav a:hover { color: var(--blue); }
  nav.main-nav a:hover::after { width: 100%; left: 0; }
  .header-cta { display: flex; gap: 10px; flex-shrink: 0; }
  .btn-quote, .btn-line {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 18px; border-radius: 10px;
    font-weight: 700; font-size: 13px; color: #fff;
    box-shadow: 0 4px 0 rgba(0,0,0,0.08);
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .btn-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .btn-quote:hover, .btn-line:hover { transform: translateY(-1px); box-shadow: 0 5px 0 rgba(0,0,0,0.12); }
  .btn-icon { width: 18px; height: 18px; }

  /* hamburger */
  .hamburger-btn {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; background: transparent; border: none; cursor: pointer;
    padding: 0; flex-shrink: 0; z-index: 110; position: relative;
  }
  .hamburger-btn span {
    width: 26px; height: 3px; background: var(--blue-dark); border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s, background 0.3s;
  }
  .hamburger-btn.active span { background: var(--pink); }
  .hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* drawer */
  .mobile-drawer { display: none; position: fixed; inset: 0; z-index: 100; pointer-events: none; }
  .mobile-drawer.open { pointer-events: auto; }
  .drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(20, 30, 60, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0; transition: opacity 0.3s ease;
  }
  .mobile-drawer.open .drawer-backdrop { opacity: 1; }
  .drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 84%; max-width: 340px;
    background: #fff; padding: 68px 22px 28px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(20,30,60,0.18);
    display: flex; flex-direction: column;
  }
  .mobile-drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-close {
    position: absolute; top: 14px; right: 16px;
    width: 40px; height: 40px; font-size: 32px;
    background: transparent; border: none; cursor: pointer;
    color: var(--ink); line-height: 1; border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
  }
  .drawer-close:hover { background: #f5f5f5; transform: rotate(90deg); }
  .drawer-logo { line-height: 1.15; padding: 0 4px 16px; border-bottom: 2px solid #f0f3f8; margin-bottom: 14px; }
  .drawer-logo .lt-main { font-weight: 900; font-size: 18px; color: var(--blue-dark); letter-spacing: 0.5px; }
  .drawer-logo .lt-main .lt-branch {
    display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--blue); padding: 2px 7px; border-radius: 4px;
    margin-left: 4px; vertical-align: 2px;
  }
  .drawer-logo .lt-sub { font-size: 10px; color: #666; letter-spacing: 1.5px; margin-top: 3px; }
  .drawer-nav { list-style: none; margin-bottom: 22px; }
  .drawer-nav li {
    opacity: 0; transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-drawer.open .drawer-nav li { opacity: 1; transform: translateX(0); }
  .mobile-drawer.open .drawer-nav li:nth-child(1) { transition-delay: 0.10s; }
  .mobile-drawer.open .drawer-nav li:nth-child(2) { transition-delay: 0.14s; }
  .mobile-drawer.open .drawer-nav li:nth-child(3) { transition-delay: 0.18s; }
  .mobile-drawer.open .drawer-nav li:nth-child(4) { transition-delay: 0.22s; }
  .mobile-drawer.open .drawer-nav li:nth-child(5) { transition-delay: 0.26s; }
  .mobile-drawer.open .drawer-nav li:nth-child(6) { transition-delay: 0.30s; }
  .mobile-drawer.open .drawer-nav li:nth-child(7) { transition-delay: 0.34s; }
  .drawer-nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 6px; font-size: 16px; font-weight: 700; color: var(--ink);
    border-bottom: 1px dashed #e8e8e8; cursor: pointer;
    transition: color 0.2s, padding-left 0.2s;
  }
  .drawer-nav a.current { color: var(--blue); padding-left: 12px; }
  .drawer-nav a::after { content: "›"; font-size: 22px; color: #c8c8c8; font-weight: 400; transition: color 0.2s, transform 0.2s; }
  .drawer-nav a.current::after { color: var(--blue); }
  .drawer-nav a:hover { color: var(--blue); padding-left: 12px; }
  .drawer-nav a:hover::after { color: var(--blue); transform: translateX(4px); }
  .drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 16px; }
  .drawer-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 12px; color: #fff; font-weight: 800; font-size: 15px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.12);
    transition: transform 0.15s;
  }
  .drawer-cta a:hover { transform: translateY(-2px); }
  .drawer-cta a svg { width: 18px; height: 18px; }
  .drawer-cta-quote { background: linear-gradient(180deg, #ff8a3d, #f5732a); }
  .drawer-cta-line { background: linear-gradient(180deg, #2bd86b, #1bb358); }
  .drawer-cta-tel {
    background: #fff; color: var(--blue-dark) !important;
    border: 2px solid var(--blue);
    box-shadow: 0 4px 0 rgba(47,127,234,0.2) !important;
  }
  body.drawer-open { overflow: hidden; }

  /* ================= PAGE HERO ================= */
  .page-hero {
    position: relative;
    padding: 70px 0 50px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, #fff5ec 0%, #fff 100%);
  }
  .page-hero-inner {
    max-width: 1220px; margin: 0 auto; padding: 0 32px;
    position: relative; z-index: 2;
  }
  .page-hero-script-css {
    font-family: 'Caveat', cursive;
    font-size: 64px; line-height: 1;
    color: var(--orange);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 1px;
  }
  .page-hero h1 {
    font-weight: 900; font-size: 48px;
    color: #1f2a44; letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .page-hero p.lead {
    font-size: 16px; color: #555; line-height: 1.9; max-width: 680px; margin: 0 auto;
  }
  .breadcrumb {
    margin-top: 24px;
    font-size: 12px; color: #888;
    display: flex; justify-content: center; gap: 8px;
  }
  .breadcrumb a { color: var(--blue); }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb .sep { color: #ccc; }
  .ph-deco { position: absolute; pointer-events: none; z-index: 0; }
  .ph-deco img { width: 100%; }
  .ph-deco-tl { top: 20px; left: -50px; width: 170px; opacity: 0.8; }
  .ph-deco-tr { top: -10px; right: -40px; width: 180px; opacity: 0.8; transform: rotate(12deg); }
  .ph-deco-bl { bottom: -20px; left: 60px; width: 130px; opacity: 0.8; }
  .ph-deco-br { bottom: -10px; right: 80px; width: 110px; opacity: 0.85; }

  /* ============= Section heading ============= */
  .section-h {
    text-align: center;
    margin-bottom: 36px;
  }
  .section-h .label {
    font-family: 'Caveat', cursive;
    font-size: 32px; font-weight: 700;
    color: var(--orange);
    display: block; line-height: 1;
    margin-bottom: 4px;
  }
  .section-h h2 {
    font-weight: 900; font-size: 30px;
    color: #1f2a44; letter-spacing: 0.5px;
  }
  .section-h p {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.85;
  }

  /* ================= CONTACT METHODS (compact bar) ================= */
  .methods-section {
    padding: 28px 0 12px;
  }
  .methods-inner {
    max-width: 760px; margin: 0 auto; padding: 0 28px;
  }
  .methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .method-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 4px 14px rgba(50,80,140,0.07);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: inherit;
    cursor: pointer;
  }
  .method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(50,80,140,0.14);
  }
  .method-card.phone { border-left: 4px solid var(--orange); }
  .method-card.line  { border-left: 4px solid var(--green); }
  .method-card.phone:hover { border-color: var(--orange); }
  .method-card.line:hover  { border-color: var(--green); }
  .method-card .m-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .method-card:hover .m-icon { transform: rotate(-8deg) scale(1.08); }
  .method-card.phone .m-icon { background: rgba(245,115,42,0.12); color: var(--orange); }
  .method-card.line  .m-icon { background: rgba(37,196,102,0.14); color: var(--green-deep); }
  .method-card .m-icon svg { width: 20px; height: 20px; }
  .method-card .m-body {
    display: flex; flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
  }
  .method-card .m-label {
    font-size: 11px; font-weight: 800;
    color: #888;
    letter-spacing: 0.8px;
  }
  .method-card .m-detail {
    font-size: 17px; font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  .method-card.phone .m-detail { color: var(--orange); }
  .method-card.line  .m-detail { color: var(--green-deep); }
  .method-card .m-hint {
    font-size: 10px; font-weight: 700;
    color: #aaa;
    letter-spacing: 0.3px;
    margin-top: 2px;
  }

  /* ================= FORM SECTION ================= */
  .form-section {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #fafbfd, #fff);
  }
  .form-inner {
    max-width: 760px; margin: 0 auto; padding: 0 28px;
  }
  /* CF7 wrapper */
  .wpcf7 { width: 100%; }
  .wpcf7-form {
    background: #fff;
    border-radius: 24px;
    padding: 40px 44px 36px;
    box-shadow: 0 12px 36px rgba(50,80,140,0.1);
    border: 1px solid rgba(0,0,0,0.04);
  }
  /* CF7 control rows */
  .form-row {
    margin-bottom: 22px;
  }
  .form-row:last-of-type { margin-bottom: 0; }
  .form-label {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 10px;
    font-size: 14px; font-weight: 800;
    color: #1f2a44;
    letter-spacing: 0.5px;
  }
  .form-required {
    display: inline-block;
    padding: 2px 8px;
    background: var(--orange);
    color: #fff;
    border-radius: 4px;
    font-size: 10px; font-weight: 900;
    letter-spacing: 1px;
  }
  .form-optional {
    display: inline-block;
    padding: 2px 8px;
    background: #e6eaf0;
    color: #888;
    border-radius: 4px;
    font-size: 10px; font-weight: 800;
    letter-spacing: 1px;
  }
  .form-hint {
    margin-top: 6px;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
  }
  /* CF7-compatible input/textarea/select */
  .wpcf7-form-control-wrap { display: block; width: 100%; }
  .wpcf7-form-control:not(.wpcf7-submit):not([type="checkbox"]):not([type="radio"]) {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e7ef;
    border-radius: 12px;
    background: #fafbfd;
    font-size: 15px;
    font-family: inherit;
    font-weight: 500;
    color: #1f2a44;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .wpcf7-form-control::placeholder { color: #b8c3d4; font-weight: 400; }
  .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(245,115,42,0.12);
  }
  textarea.wpcf7-form-control {
    min-height: 160px;
    resize: vertical;
    line-height: 1.7;
  }
  /* Radio + Checkbox groups */
  .wpcf7-radio,
  .wpcf7-checkbox,
  .wpcf7-acceptance {
    display: flex; flex-wrap: wrap; gap: 10px 12px;
  }
  .wpcf7-list-item {
    display: inline-flex;
    margin: 0 !important;
  }
  .wpcf7-list-item-label {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    border: 2px solid #e2e7ef;
    border-radius: 999px;
    background: #fff;
    font-size: 14px; font-weight: 700;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .wpcf7-list-item input[type="checkbox"],
  .wpcf7-list-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border: 2px solid #b8c3d4;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
    margin: 0;
  }
  .wpcf7-list-item input[type="radio"] { border-radius: 50%; }
  .wpcf7-list-item input[type="checkbox"] { border-radius: 5px; }
  .wpcf7-list-item input[type="radio"]:checked,
  .wpcf7-list-item input[type="checkbox"]:checked {
    border-color: var(--orange);
    background: var(--orange);
  }
  .wpcf7-list-item input[type="radio"]:checked::after {
    content: ""; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 8px; height: 8px; border-radius: 50%; background: #fff;
  }
  .wpcf7-list-item input[type="checkbox"]:checked::after {
    content: "✓"; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 13px; font-weight: 900; color: #fff;
    line-height: 1;
  }
  .wpcf7-list-item:has(input:checked) > .wpcf7-list-item-label,
  .wpcf7-list-item-label:has(input:checked) {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(245,115,42,0.06);
  }
  /* Acceptance (privacy) */
  .acceptance-row {
    margin-top: 12px;
    padding: 22px 24px;
    background: #fff8ed;
    border: 2px dashed rgba(245,115,42,0.35);
    border-radius: 14px;
    text-align: center;
  }
  .acceptance-row .wpcf7-acceptance {
    justify-content: center;
  }
  .acceptance-row .wpcf7-list-item-label {
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 800;
    color: #4a3a1a;
    background: #fff;
  }
  .acceptance-hint {
    margin-bottom: 12px;
    font-size: 12px;
    color: #4a3a1a;
    line-height: 1.7;
  }
  .acceptance-hint a {
    color: var(--orange);
    text-decoration: underline;
  }

  /* Submit */
  .form-submit-wrap {
    margin-top: 30px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px dashed #e2e7ef;
  }
  .wpcf7-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; max-width: 380px;
    padding: 22px 40px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff8a3d, #f5732a);
    color: #fff;
    font-size: 18px; font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 8px 0 #c2541a, 0 14px 24px rgba(245,115,42,0.32);
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    border: none;
    font-family: inherit;
  }
  .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 0 #c2541a, 0 16px 28px rgba(245,115,42,0.4);
  }
  .wpcf7-submit::after { content: "→"; font-size: 20px; }
  .wpcf7-spinner { display: none; }

  /* CF7 validation states (the user will see these post-WP migration) */
  .wpcf7-not-valid-tip {
    display: block; margin-top: 6px;
    color: var(--pink-deep);
    font-size: 12px; font-weight: 700;
  }
  .wpcf7-response-output {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px; font-weight: 700;
    line-height: 1.7;
  }
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    background: #ffe7e7; border: 1px solid #f5a3a3; color: #a8294b;
  }
  .wpcf7 form.sent .wpcf7-response-output {
    background: #e7f9ed; border: 1px solid #8fdda7; color: #168a44;
  }

  /* ====================================================
     CF7 が <p> でラップした要素のレイアウト
     ==================================================== */
  .wpcf7 .wpcf7-form p {
    margin: 0 0 22px !important;
    padding: 0 !important;
    display: block !important;
  }
  .wpcf7 .wpcf7-form p > label {
    display: block !important;
    margin-bottom: 10px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #1f2a44 !important;
    letter-spacing: 0.5px !important;
  }
  /* 必須バッジ */
  .wpcf7 .required,
  .wpcf7 .form-required,
  .wpcf7-form .required {
    display: inline-block !important;
    margin-left: 6px !important;
    padding: 3px 9px !important;
    background: var(--orange) !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    vertical-align: middle !important;
    line-height: 1.2 !important;
  }
  /* 任意バッジ */
  .wpcf7 .optional,
  .wpcf7 .form-optional,
  .wpcf7-form .optional {
    display: inline-block !important;
    margin-left: 6px !important;
    padding: 3px 9px !important;
    background: #e6eaf0 !important;
    color: #888 !important;
    border-radius: 4px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    vertical-align: middle !important;
    line-height: 1.2 !important;
  }
  /* 送信ボタン中央寄せ — <p class="form-submit"> をフラグに */
  .wpcf7 .wpcf7-form p.form-submit,
  .wpcf7 .wpcf7-form p:last-child {
    margin-top: 30px !important;
    padding-top: 24px !important;
    border-top: 1px dashed #e2e7ef !important;
    text-align: center !important;
  }
  /* 送信ボタン本体を必ず中央＆全幅制限 */
  .wpcf7 input.wpcf7-submit,
  .wpcf7-form input.wpcf7-submit {
    display: inline-block !important;
    margin: 0 auto !important;
    float: none !important;
  }

  /* Form info banner above form */
  .form-banner {
    margin-bottom: 24px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #fff8ed, #fffdf3);
    border-radius: 16px;
    border: 1px dashed var(--orange);
    display: flex; align-items: flex-start; gap: 14px;
  }
  .form-banner-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 0 3px 0 #c2541a;
  }
  .form-banner-body {
    flex: 1; font-size: 13px;
    color: #4a3a1a; line-height: 1.85;
    font-weight: 600;
  }
  .form-banner-body strong { color: var(--orange); font-weight: 900; }

  /* ================= FOOTER ================= */
  .site-footer { background: #fff; padding: 70px 0 40px; border-top: 1px solid #f0f0f0; }
  .footer-grid {
    max-width: 1180px; margin: 0 auto; padding: 0 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    align-items: start;
  }
  .footer-brand .logo { margin-bottom: 18px; }
  .footer-brand p { font-size: 12px; color: #666; line-height: 1.8; }
  .footer-col h4 { font-size: 13px; font-weight: 800; color: #777; margin-bottom: 14px; }
  .footer-col ul { list-style: none; }
  .footer-col li { font-size: 13px; color: #333; margin-bottom: 8px; }
  .footer-info { font-size: 13px; color: #333; line-height: 1.9; }
  .footer-info .row { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; }
  .footer-info .label { color: #888; font-size: 12px; flex-shrink: 0; min-width: 60px; }
  .tel-link { color: inherit; text-decoration: none; transition: color 0.2s; }
  .tel-link:hover { color: var(--orange); text-decoration: underline; }
  .footer-copyright { text-align: center; margin-top: 50px; font-size: 12px; color: #999; }

  /* ================= RESPONSIVE ================= */
  @media (max-width: 980px) {
    nav.main-nav { display: none; }
    .header-inner { padding: 10px 16px; gap: 12px; }
    .logo { gap: 8px; min-width: 0; flex: 1; }
    .logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
    .logo-text .lt-main { font-size: 17px; letter-spacing: 0.3px; }
    .logo-text .lt-main .lt-branch { font-size: 10px; padding: 1px 6px; margin-left: 3px; }
    .logo-text .lt-sub { font-size: 10px; letter-spacing: 1.5px; }
    .header-cta { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-drawer { display: block; }

    .page-hero { padding: 50px 0 30px; }
    .page-hero h1 { font-size: 36px; }
    .page-hero-script-css { font-size: 50px; }
    .ph-deco-tl, .ph-deco-tr { width: 130px; }
    .ph-deco-bl, .ph-deco-br { display: none; }

    .section-h h2 { font-size: 24px; }
    .section-h .label { font-size: 26px; }

    .methods-grid { grid-template-columns: 1fr; gap: 10px; }
    .method-card { padding: 12px 16px; gap: 12px; }
    .method-card .m-detail { font-size: 16px; }
    .method-card .m-icon { width: 36px; height: 36px; }

    .wpcf7-form { padding: 28px 24px 26px; border-radius: 18px; }
    .form-banner { padding: 14px 18px; gap: 10px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .page-hero h1 { font-size: 28px; }
    .page-hero p.lead { font-size: 14px; }
    .header-inner { padding: 8px 12px; gap: 8px; }
    .logo-text .lt-sub { display: none; }
    .logo-text .lt-main { font-size: 15px; }
    .logo-mark { width: 34px; height: 34px; }
    .hamburger-btn { width: 40px; height: 40px; }
    .hamburger-btn span { width: 22px; height: 3px; }
    .drawer-panel { padding: 60px 18px 22px; }
    .wpcf7-form { padding: 22px 18px 22px; }
    .form-label { font-size: 13px; }
    .wpcf7-list-item-label { padding: 8px 14px; font-size: 13px; }
    .wpcf7-submit { padding: 18px 28px; font-size: 16px; max-width: 100%; }
  }
