
/* ===== CVHB Export Base ===== */
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans JP",sans-serif; line-height:1.7; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; text-rendering:optimizeLegibility;}
a{color:inherit;text-decoration:none;}
a:hover{text-decoration:none;}

/* Quasarっぽい最小ユーティリティ（プレビューCSSが前提にしているため） */
.row{display:flex;flex-wrap:wrap;}
.no-wrap{flex-wrap:nowrap;}
.items-center{align-items:center;}
.items-start{align-items:flex-start;}
.items-end{align-items:flex-end;}
.justify-between{justify-content:space-between;}
.justify-center{justify-content:center;}
.justify-end{justify-content:flex-end;}

/* ボタン風（q-btn依存を外すため、exportでは素のa/buttonにも効かせる） */
.pv-layout-260218 .pv-desktop-nav-btn,
.pv-layout-260218 .pv-menu-btn,
.pv-layout-260218 .pv-link-btn,
.pv-layout-260218 .pv-nav-item,
.pv-layout-260218 .pv-footer-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  cursor:pointer;
  font-weight:800;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}

.pv-layout-260218 .pv-link-btn{padding:10px 18px;}

/* v0.9.3: ヘッダー/フッターメニューは少し小さめ（PCで横並びが崩れにくい） */
.pv-layout-260218 .pv-desktop-nav-btn{
  padding: 6px 10px;
  font-size: 0.86rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.pv-layout-260218 .pv-menu-btn{
  padding: 6px 10px;
  font-size: 18px;
  line-height: 1;
}
.pv-layout-260218 .pv-footer-link{
  padding: 6px 10px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.pv-layout-260218 .pv-btn-primary{background:var(--pv-accent); color:#fff;}
.pv-layout-260218 .pv-btn-outline{border-color:rgba(var(--pv-accent-rgb),.95); color:var(--pv-accent);}
.pv-layout-260218 .pv-btn-outline:hover{background:rgba(var(--pv-accent-rgb),.10);}

.pv-layout-260218 .pv-inline-link{color:var(--pv-accent); text-decoration:underline; text-underline-offset:3px;}

/* ===== Export Footer Layout ===== */
.pv-layout-260218 .pv-footer-inner{
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pv-layout-260218 .pv-footer-links{
  display: flex;
  flex-wrap: nowrap; /* どの画面幅でも「1行」 */
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge(旧) */
}
.pv-layout-260218 .pv-footer-links::-webkit-scrollbar{ display:none; }

/* PC: さらに詰めて1行を維持（入りきらない場合は横スクロール） */
.pv-layout-260218.pv-mode-pc .pv-footer-links{
  gap: 8px;
}

/* v0.9.5: PCヒーローのキャッチ/サブキャッチは必ず1行（崩れ防止） */
.pv-layout-260218.pv-mode-pc .pv-hero-caption-title,
.pv-layout-260218.pv-mode-pc .pv-hero-caption-sub{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Export: プレビュー用「固定幅シェル」をWebに合わせて解放 ===== */
.pv-shell.pv-layout-260218,
.pv-shell.pv-layout-260218.pv-mode-mobile,
.pv-shell.pv-layout-260218.pv-mode-pc{
  width:100% !important;
  max-width:none !important;
  height:auto !important;
  min-height:100vh;
  border-radius:0 !important;
  overflow:visible !important;
}

.pv-layout-260218 .pv-scroll{
  overflow:visible !important;
}

/* PCではメニューボタンを隠す（プレビューは条件レンダリングだが、exportは両方DOMに置く） */
.pv-layout-260218.pv-mode-pc .pv-menu-btn{display:none;}

/* ===== Mobile Menu Overlay (export only) ===== */
.pv-nav-overlay{
  position:fixed;
  inset:0;
  padding:16px;
  background:rgba(0,0,0,.45);
  display:none;
  align-items:flex-start;
  justify-content:flex-end;
  z-index:999;
}
.pv-nav-overlay.is-open{display:flex;}

.pv-nav-card{
  width:min(420px, 100%);
  border-radius:18px;
  padding:14px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}
.pv-dark .pv-nav-card{
  background:rgba(18,18,18,.92);
  border-color:rgba(255,255,255,.12);
}

.pv-nav-title{font-weight:900; font-size:14px; opacity:.7; margin:2px 8px 10px;}
.pv-nav-item{width:100%; justify-content:flex-start; border-radius:14px; padding:12px 14px;}
.pv-nav-close{width:100%; margin-top:10px; padding:12px 14px; border-radius:14px; border:1px solid rgba(0,0,0,.08); background:rgba(0,0,0,.05); font-weight:900; cursor:pointer;}
.pv-dark .pv-nav-close{border-color:rgba(255,255,255,.12); background:rgba(255,255,255,.08); color:var(--pv-text);}

/* ===== Contact Form (export only) ===== */
.pv-error-box{
  margin:12px 0 0;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255, 59, 48, .14);
  border:1px solid rgba(255, 59, 48, .35);
  color:var(--pv-text);
  font-weight:800;
}

.pv-form{margin-top:14px;}
.pv-form-row{margin-top:12px;}
.pv-form label{display:block; font-weight:900; font-size:14px;}
.pv-form input,
.pv-form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.14);
  color:var(--pv-text);
  outline:none;
}
.pv-dark .pv-form input,
.pv-dark .pv-form textarea{
  border-color:rgba(255,255,255,.18);
  background:rgba(0,0,0,.20);
}

.pv-form textarea{resize:vertical; min-height:140px;}
.pv-form input:focus,
.pv-form textarea:focus{
  border-color:rgba(var(--pv-accent-rgb), .9);
  box-shadow:0 0 0 3px rgba(var(--pv-accent-rgb), .20);
}

.pv-agree{display:flex; gap:10px; align-items:flex-start; margin-top:14px; font-weight:800;}
.pv-agree input{margin-top:3px;}

.pv-form-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;}

/* ===== Privacy / Legal (export only) ===== */
.pv-legal{padding-top:6px;}
.pv-legal h1,.pv-legal h2,.pv-legal h3{line-height:1.3;}
.pv-legal h1{font-size:22px; margin:0 0 10px;}
.pv-legal h2{font-size:18px; margin:18px 0 8px;}
.pv-legal p{margin:8px 0;}
.pv-legal ul{margin:8px 0 8px 1.2em;}
.pv-legal li{margin:6px 0;}

/* ===== Thanks ===== */
.pv-thanks-card{padding:22px;}
.pv-thanks-title{font-size:20px; font-weight:1000;}
.pv-thanks-message{margin-top:10px; opacity:.92;}
.pv-thanks-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px;}
.pv-thanks-mail{margin-top:18px; padding-top:14px; border-top:1px solid rgba(255,255,255,.20);}
.pv-thanks-mail-title{font-weight:900; margin-bottom:10px; opacity:.8;}



  /* ====== Page base ====== */
  .cvhb-page {
    background: #f5f5f5;
    min-height: calc(100vh - 64px);
  }
  .cvhb-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 16px;
  }

  /* ====== Split layout (PC builder) ====== */
  .cvhb-split {
    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }
  .cvhb-left-col,
  .cvhb-right-col {
    width: 100%;
  }

  /* 左側フォームはカード幅いっぱいを使う（左寄せで細く見えるのを防ぐ） */
  .cvhb-left-col .q-field,
  .cvhb-left-col .q-input,
  .cvhb-left-col .q-textarea {
    width: 100%;
  }

  /* v0.6.992: 左入力欄の見た目（横幅・余白）を微調整 */
  .cvhb-left-col .q-card { width: 100%; }
  .cvhb-left-col .q-card.q-pa-md { padding: 14px !important; }
  .cvhb-left-col .q-field--outlined .q-field__control { border-radius: 12px; }
  .cvhb-left-col .q-field__bottom { padding-left: 0; }



  /* 右プレビューはデスクトップ時に追従 */
  @media (min-width: 761px) {
    .cvhb-right-col {
      position: sticky;
      top: 88px;
      align-self: start;
    }
  }

  /* スマホ：縦並び */
  @media (max-width: 760px) {
    .cvhb-container { padding: 8px; }
    .cvhb-split { grid-template-columns: 1fr; }
    .cvhb-right-col { position: static; }
  }

  /* ====== Common ====== */
  .cvhb-card-title {
    font-weight: 700;
    letter-spacing: .02em;
  }
  .cvhb-muted {
    color: rgba(0,0,0,.60);
    font-size: 12px;
  }

  /* 左カラム：カード同士の間隔 */
  .cvhb-left-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* ====== Step menu (left) ====== */
  .cvhb-step-tabs { width: 100%; }
  .cvhb-step-tabs .q-tabs__content { align-items: stretch; }
  .cvhb-step-tabs .q-tab {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    border-radius: 12px;
    margin: 0 0 8px 0;
    padding: 10px 12px;
    background: rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.10);
  }
  .cvhb-step-tabs .q-tab__content { justify-content: flex-start; }
  .cvhb-step-tabs .q-tab__label {
    white-space: normal;
    line-height: 1.3;
  }
  .cvhb-step-tabs .q-tab--active {
    background: rgba(25,118,210,0.08);
    border-color: rgba(25,118,210,0.35);
    font-weight: 700;
  }

  /* ====== Step3 block tabs ====== */
  .cvhb-block-tabs .q-tabs__content { flex-wrap: wrap; }
  .cvhb-block-tabs .q-tab {
    min-height: 34px;
    padding: 0 12px;
  }
  .cvhb-block-tabs .q-tab__label {
    white-space: normal;
    line-height: 1.2;
  }

  /* ====== Choice cards (industry/color) ====== */
  .cvhb-choice {
    border-radius: 12px;
    transition: transform .08s ease, box-shadow .08s ease, border-color .08s ease;
    cursor: pointer;
  }
  .cvhb-choice:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
  }
  .cvhb-choice.is-selected {
    border: 2px solid var(--q-primary);
    background: rgba(25,118,210,0.06);
  }
  .cvhb-swatch {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.20);
    display: inline-block;
  }

  /* ====== Projects page ====== */
  .cvhb-projects-actions {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .cvhb-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
  }
  .cvhb-project-card { height: 100%; }
  .cvhb-project-meta {
    font-size: 12px;
    color: rgba(0,0,0,.60);
    line-height: 1.4;
  }

  /* ====== Preview inside builder ====== */
  .cvhb-preview .q-card { width: 100%; }
/* ====== Preview PC（実サイト寄り） ====== */
.cvhb-preview-pc { background: #f5f5f5; }
.cvhb-pc-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(0,0,0,.10);
}
.cvhb-pc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
}
.cvhb-pc-logo {
  font-weight: 800;
  letter-spacing: .02em;
}
.cvhb-pc-hero {
  height: 380px;
  background-size: cover;
  background-position: center;
}
.cvhb-pc-hero-overlay {
  height: 100%;
  background: rgba(0,0,0,.52);
}
.cvhb-pc-hero-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
}
.cvhb-pc-section { padding: 28px 0; }
.cvhb-pc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.cvhb-pc-grid-2-uneven {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 16px;
}
.cvhb-pc-card { width: 100%; border-radius: 14px; }

@media (max-width: 900px) {
  .cvhb-pc-container { padding: 16px; }
  .cvhb-pc-hero { height: 320px; }
  .cvhb-pc-grid-2,
  .cvhb-pc-grid-2-uneven { grid-template-columns: 1fr; }
}


  
        /* ====== Preview (Glassmorphism) ====== */
        .cvhb-preview-glass {
          height: 100%;
          width: 100%;
          display: flex;
          flex-direction: column;
          color: var(--pv-text);
          background-image: var(--pv-bg-img);
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          border: 1px solid var(--pv-border);
          border-radius: 18px;
          overflow: hidden;
        }

        .pv-topbar {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 12px;
          padding: 10px 12px;
          background: var(--pv-card);
          backdrop-filter: blur(12px);
          border-bottom: 1px solid var(--pv-line);
        }

        .pv-brand {
          font-weight: 900;
          letter-spacing: .02em;
          font-size: 15px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: 48%;
        }

        .pv-nav {
          display: flex;
          align-items: center;
          gap: 6px;
          overflow-x: auto;
          white-space: nowrap;
          scrollbar-width: none;
          max-width: 100%;
        }
        .pv-nav::-webkit-scrollbar { height: 0; }

        .pv-navbtn {
          font-weight: 900;
          color: var(--pv-accent);
        }
        .pv-navbtn.q-btn--flat { padding: 4px 8px; border-radius: 999px; }
        .pv-navbtn.q-btn--flat:hover { background: rgba(255,255,255,.22); }

        .pv-topcta {
          font-weight: 900;
          border-radius: 999px;
          background: linear-gradient(135deg, var(--pv-accent), var(--pv-accent-2));
          color: white;
          padding: 6px 12px;
          box-shadow: 0 12px 28px rgba(0,0,0,.18);
        }

        .pv-scroll {
          flex: 1;
          overflow: auto;
          padding: 14px 0 16px;
        }

        .pv-container {
          width: min(1040px, calc(100% - 24px));
          margin: 0 auto;
        }

        .pv-band { padding: 18px 0; }
        .pv-band + .pv-band { border-top: 1px solid var(--pv-line); }

        .pv-grid-2 {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 14px;
          align-items: start;
        }
        @media (max-width: 920px) { .pv-grid-2 { grid-template-columns: 1fr; } }

        .pv-panel {
          background: var(--pv-card);
          border: 1px solid var(--pv-border);
          border-radius: 22px;
          box-shadow: var(--pv-shadow);
          backdrop-filter: blur(14px);
          padding: 16px;
          animation: pvIn .45s ease both;
        }
        @keyframes pvIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
        @media (prefers-reduced-motion: reduce) { .pv-panel { animation: none; } }

        .pv-kicker {
          display: flex;
          align-items: center;
          gap: 8px;
          font-weight: 900;
          letter-spacing: .02em;
          color: var(--pv-muted);
          margin-bottom: 10px;
        }
        .pv-kicker .q-icon { color: var(--pv-accent); }

        .pv-title {
          font-weight: 900;
          letter-spacing: .01em;
          font-size: 26px;
          line-height: 1.2;
          margin: 0 0 6px;
        }
        .pv-h2 {
          font-weight: 900;
          letter-spacing: .01em;
          font-size: 18px;
          margin: 0 0 6px;
        }
        .pv-sub {
          color: var(--pv-muted);
          font-size: 14px;
          line-height: 1.55;
          margin: 0 0 12px;
        }

        .pv-chip {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          border-radius: 999px;
          padding: 5px 10px;
          background: var(--pv-chip-bg);
          border: 1px solid var(--pv-chip-border);
          font-size: 12px;
          font-weight: 900;
          color: var(--pv-muted);
          margin: 4px 6px 0 0;
        }
        .pv-chip .q-icon { color: var(--pv-accent); }

        /* Hero split layout */
        .pv-hero-grid {
          display: grid;
          grid-template-columns: 1.05fr .95fr;
          gap: 14px;
          align-items: stretch;
        }
        @media (max-width: 920px) { .pv-hero-grid { grid-template-columns: 1fr; } }

        .pv-hero-media { position: relative; }
        .pv-hero-image {
          position: relative;
          height: 360px;
          border-radius: 26px;
          overflow: hidden;
          border: 1px solid rgba(255,255,255,.45);
          box-shadow: 0 22px 60px rgba(15,23,42,.18);
          background-size: cover;
          background-position: center;
        }
        .pv-hero-image::after {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.10));
        }
        .pv-hero-image-inner {
          position: relative;
          z-index: 1;
          height: 100%;
          display: flex;
          align-items: flex-end;
          padding: 14px;
        }

        .pv-hero-cta-row {
          display: flex;
          gap: 10px;
          flex-wrap: wrap;
          margin-top: 6px;
        }
        .pv-cta {
          border-radius: 999px;
          font-weight: 900;
        }
        .pv-cta-primary {
          background: linear-gradient(135deg, var(--pv-accent), var(--pv-accent-2));
          color: white;
          padding: 10px 14px;
          box-shadow: 0 14px 32px rgba(0,0,0,.22);
        }
        .pv-cta-secondary {
          background: rgba(255,255,255,.18);
          color: white;
          border: 1px solid rgba(255,255,255,.35);
          padding: 10px 14px;
        }

        .pv-hero-float {
          position: absolute;
          top: 14px;
          right: 14px;
          width: min(340px, 78%);
          z-index: 2;
        }
        @media (max-width: 520px) {
          .pv-hero-image { height: 250px; }
          .pv-hero-float { position: static; width: 100%; margin-top: 12px; }
          .pv-brand { max-width: 42%; }
        }

        /* News / FAQ lists */
        .pv-news-item, .pv-faq-item {
          padding: 12px 6px;
          border-bottom: 1px solid var(--pv-line);
        }
        .pv-news-item:last-child, .pv-faq-item:last-child { border-bottom: none; }

        .pv-news-meta {
          font-size: 12px;
          color: var(--pv-muted);
          display: flex;
          gap: 10px;
          align-items: center;
        }
        .pv-badge {
          display: inline-flex;
          align-items: center;
          border-radius: 999px;
          padding: 2px 8px;
          background: var(--pv-chip-bg);
          border: 1px solid var(--pv-chip-border);
          color: var(--pv-accent);
          font-weight: 900;
          font-size: 11px;
        }
        .pv-q { font-weight: 900; }
        .pv-a { color: var(--pv-muted); }

        /* Actions */
        .pv-action {
          border-radius: 12px;
          font-weight: 900;
          padding: 10px 12px;
          background: var(--pv-chip-bg);
          border: 1px solid var(--pv-chip-border);
        }
        .pv-action-primary {
          background: linear-gradient(135deg, var(--pv-accent), var(--pv-accent-2));
          color: white;
          border: none;
          box-shadow: 0 14px 32px rgba(0,0,0,.22);
        }

        .pv-prefooter {
          padding: 12px 12px;
          color: var(--pv-muted);
          font-size: 12px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 8px;
        }
        .pv-prefooter a { color: var(--pv-muted); text-decoration: none; }
        .pv-prefooter a:hover { text-decoration: underline; }
/* ====== 260218 Layout (Preview) ====== */
.pv-shell.pv-layout-260218{
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  background: var(--pv-bg-img);
  color: var(--pv-text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

/* ===== Builder内プレビューの基準幅（重要） =====
   - スマホ: 720px
   - PC: 1920px（プレビューは縮小表示／最低1280px）
   ※ 実際の幅は JS の fit 関数が style.width で制御します。
      ここで max-width:100% を付けると「PCもスマホも同じ」に見える原因になるので付けません。
*/
.pv-shell.pv-layout-260218.pv-mode-mobile{
  width: 720px;      /* JS未適用時のフォールバック */
  max-width: none;
  height: 100%;
  margin: 0;
}

.pv-shell.pv-layout-260218.pv-mode-pc{
  width: 1920px;     /* JS未適用時のフォールバック */
  max-width: none;
  height: 100%;
  margin: 0;
}

.pv-layout-260218 .pv-scroll{
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  background: var(--pv-bg-img);
}

.pv-layout-260218 .pv-topbar-260218{
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 14px;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(255,255,255,0.64), rgba(255,255,255,0.50));
  border-bottom: 1px solid rgba(255,255,255,0.28);
}

.pv-layout-260218.pv-dark .pv-topbar-260218{
  background: linear-gradient(180deg, rgba(13,16,22,0.74), rgba(13,16,22,0.56));
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.pv-layout-260218 .pv-topbar-inner{
  width: 100%;
  max-width: none;
  margin: 0;
}

/* ヘッダー内：会社名は左、メニューは右に固定 */

.pv-layout-260218 .pv-brand{
  cursor: pointer;
  gap: 10px;
  max-width: none;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
}

.pv-layout-260218 .pv-favicon{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9);
}

.pv-layout-260218.pv-dark .pv-favicon{
  border-color: rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.20);
}

.pv-layout-260218 .pv-brand-name{
  font-weight: 800;
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pv-layout-260218 .pv-menu-btn{
  opacity: 0.92;
}

/* 画像のように「三本線＋MENU（下）」にする */
.pv-layout-260218 .pv-menu-btn.q-btn{
  color: var(--pv-text);
  padding: 6px 8px;
  min-width: 48px;
}

.pv-layout-260218 .pv-menu-btn .q-btn__content{
  flex-direction: column;
  line-height: 1;
}

.pv-layout-260218 .pv-menu-btn .q-icon{
  font-size: 24px;
  margin: 0;
}

.pv-layout-260218 .pv-menu-btn .q-btn__content .block{
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 2px;
}


.pv-layout-260218 .pv-nav-card{
  width: min(92vw, 360px);
  border-radius: 18px;
}

.pv-layout-260218 .pv-nav-item{
  justify-content: flex-start;
}

.pv-layout-260218 .pv-nav-item.q-btn{
  color: var(--pv-text) !important;
  font-weight: 800;
}

.pv-layout-260218 .pv-nav-item.q-btn:hover{
  background: rgba(255,255,255,0.22);
}

.pv-layout-260218.pv-dark .pv-nav-item.q-btn:hover{
  background: rgba(255,255,255,0.08);
}

.pv-layout-260218 .pv-menu-btn.q-btn{
  color: var(--pv-text) !important;
}

/* PCヘッダー：デスクトップナビ（PCモードだけ表示） */
.pv-layout-260218 .pv-desktop-nav{
  display: none;
  gap: 6px;
  align-items: center;
  flex: 0 0 auto;
}
.pv-layout-260218.pv-mode-pc .pv-desktop-nav{
  display: flex;
}
.pv-layout-260218 .pv-desktop-nav .q-btn{
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.86rem; /* v0.9.3: ヘッダーメニューを少し小さく */
  letter-spacing: 0.01em;
  color: var(--pv-text) !important;
}
.pv-layout-260218 .pv-desktop-nav .q-btn:hover{
  background: rgba(255,255,255,0.22);
}
.pv-layout-260218.pv-dark .pv-desktop-nav .q-btn:hover{
  background: rgba(255,255,255,0.08);
}

.pv-layout-260218 .pv-main{
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 18px 0;
  font-size: 16px; /* v0.9.3: 公開PCでも読みやすい標準サイズへ */
  line-height: 1.8;
}

/* 文章の段落は「余白」をCSSで統一（export/previewの差をなくす） */
.pv-layout-260218 .pv-main p{ margin: 0; }
.pv-layout-260218 .pv-main p + p{ margin-top: 0.9em; }

.pv-layout-260218 .pv-section{
  margin: 22px 0 34px;
}

.pv-layout-260218 .pv-section-head{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.pv-layout-260218 .pv-section-title{
  font-weight: 900;
  font-size: 1.24rem; /* v0.6.992 */
}

.pv-layout-260218 .pv-section-en{
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  opacity: 0.55;
}

.pv-layout-260218 .pv-panel{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--pv-border);
  box-shadow: var(--pv-shadow);
}

.pv-layout-260218 .pv-panel::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(520px 420px at 18% 18%, var(--pv-blob4), transparent 62%),
    radial-gradient(420px 340px at 92% 0%, rgba(255,255,255,0.22), transparent 60%);
  opacity: 0.55;
}

.pv-layout-260218.pv-dark .pv-panel::before{
  background:
    radial-gradient(520px 420px at 18% 18%, var(--pv-blob4), transparent 62%),
    radial-gradient(420px 340px at 92% 0%, rgba(255,255,255,0.10), transparent 60%);
  opacity: 0.45;
}

.pv-layout-260218 .pv-panel > *{
  position: relative;
}

.pv-layout-260218 .pv-panel-glass{
  background: var(--pv-card);
}

.pv-layout-260218 .pv-panel-flat{
  background: linear-gradient(180deg, rgba(255,255,255,0.46), rgba(255,255,255,0.30));
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  padding: 16px;
}

.pv-layout-260218.pv-dark .pv-panel-flat{
  background: linear-gradient(180deg, rgba(15,18,25,0.62), rgba(15,18,25,0.40));
  border-color: rgba(255,255,255,0.12);
}

.pv-layout-260218 .pv-muted{
  color: var(--pv-muted);
}

.pv-layout-260218 .pv-h2{
  font-weight: 900;
  font-size: 1.15rem; /* v0.6.992 */
  margin-bottom: 6px;
}

.pv-layout-260218 .pv-bodytext{
  color: var(--pv-text);
  opacity: 0.86;
  line-height: 1.7;
}

.pv-layout-260218 .pv-bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--pv-text);
  opacity: 0.84;
  line-height: 1.7;
}


/* ====== About: 要点カード（v0.6.992） ====== */
.pv-layout-260218 .pv-points{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pv-layout-260218 .pv-point-card{
  flex: 1 1 180px;
  min-width: 160px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.44), rgba(255,255,255,0.28));
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(14px);
  border-left: 6px solid var(--pv-primary);
  font-weight: 900; /* v0.9.3: ラベルを太字に（HTML側にspanが無くてもOK） */
  line-height: 1.55;
}
.pv-layout-260218.pv-dark .pv-point-card{
  background: linear-gradient(180deg, rgba(15,18,25,0.58), rgba(15,18,25,0.38));
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 18px 44px rgba(0,0,0,0.42);
}
.pv-layout-260218 .pv-point-text{
  font-weight: 900;
  line-height: 1.55;
}

.pv-layout-260218 .pv-hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.pv-layout-260218.pv-mode-pc .pv-hero-grid{
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.pv-layout-260218 .pv-hero-title{
  font-weight: 1000;
  font-size: clamp(1.45rem, 3.8vw, 2.55rem);
  line-height: 1.18;
  margin-bottom: 6px;
}

.pv-layout-260218 .pv-hero-sub{
  color: var(--pv-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.pv-layout-260218 .pv-cta-row{
  gap: 10px;
  flex-wrap: wrap;
}

.pv-layout-260218 .pv-btn.q-btn{
  border-radius: 999px;
  font-weight: 800;
}

.pv-layout-260218 .pv-hero-slider{
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.40);
  box-shadow: var(--pv-shadow);
  background: rgba(255,255,255,0.20);
}
.pv-layout-260218.pv-mode-mobile .pv-hero-slider{
  height: 240px;
}

.pv-layout-260218.pv-mode-pc .pv-hero-slider{
  height: 420px;
}


.pv-layout-260218.pv-dark .pv-hero-slider{
  border-color: rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.14);
}

/* ===== Hero: フル幅 & 大きく（nagomi-support.com のTOPみたいに） ===== */
.pv-layout-260218 .pv-hero-wide{
  position: relative;
  margin: 0;
}
.pv-layout-260218 .pv-hero-slider-wide{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: rgba(255,255,255,0.10);
}
.pv-layout-260218.pv-mode-mobile .pv-hero-slider-wide{
  height: auto;
}
.pv-layout-260218.pv-mode-pc .pv-hero-slider-wide{
  height: auto;
}
.pv-layout-260218.pv-dark .pv-hero-slider-wide{
  background: rgba(0,0,0,0.16);
}

/* ===== Hero slider dots (4 dots) ===== */
.pv-layout-260218 .pv-hero-stage{
  position: relative;
}

/* PC: dots are shown "below" the hero image, so we keep some space under the hero */
.pv-layout-260218.pv-mode-pc .pv-hero-wide{
  margin-bottom: 44px;
}

.pv-layout-260218 .pv-hero-dots{
  position: absolute;
  z-index: 8;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.pv-layout-260218.pv-mode-mobile .pv-hero-dots{
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
}

.pv-layout-260218.pv-mode-pc .pv-hero-dots{
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  flex-direction: row;
}

.pv-layout-260218 .pv-hero-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.30);
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
  transition: transform 140ms ease, background 140ms ease, opacity 140ms ease;
}

.pv-layout-260218 .pv-hero-dot:hover{
  transform: scale(1.15);
}

.pv-layout-260218 .pv-hero-dot.is-active{
  background: var(--pv-primary);
  border-color: rgba(255,255,255,0.92);
  opacity: 1;
}

.pv-layout-260218.pv-dark .pv-hero-dot{
  border-color: rgba(255,255,255,0.62);
  background: rgba(0,0,0,0.24);
  box-shadow: 0 12px 26px rgba(0,0,0,0.26);
}

.pv-layout-260218.pv-dark .pv-hero-dot.is-active{
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.96);
}

.pv-layout-260218 .pv-hero-caption{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: calc(100% - 36px); /* 画像幅からはみ出さない */
  padding: 18px 22px;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 22px 54px rgba(0,0,0,0.12);
}

/* SP: キャッチは画像に重ねず下へ（画像の下で目立たせる） */
.pv-layout-260218.pv-mode-mobile .pv-hero-caption{
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  width: min(92%, 680px);
  margin: 14px auto 0;
  padding: 16px 18px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.72));
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 5px solid var(--pv-primary);
  box-shadow: 0 20px 52px rgba(0,0,0,0.14);
}
.pv-layout-260218.pv-dark.pv-mode-mobile .pv-hero-caption{
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.14);
}

.pv-layout-260218.pv-dark .pv-hero-caption{
  background: rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

/* PC: キャッチを「ガラスっぽく」して目立たせる（v0.6.996） */
.pv-layout-260218.pv-mode-pc .pv-hero-caption{
  bottom: 42px;
  width: fit-content;
  max-width: calc(100% - 36px); /* 画像幅からはみ出さない */
  padding: 18px 22px;
  border-radius: 22px;
  text-align: center;
  backdrop-filter: blur(22px);
  background: linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,255,255,0.14));
  border: 1px solid rgba(255,255,255,0.56);
  box-shadow: 0 40px 120px rgba(0,0,0,0.16);
}
.pv-layout-260218.pv-dark.pv-mode-pc .pv-hero-caption{
  background: linear-gradient(180deg, rgba(0,0,0,0.46), rgba(0,0,0,0.28));
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 24px 64px rgba(0,0,0,0.26);
}
.pv-layout-260218.pv-mode-pc .pv-hero-caption-title{
  font-size: clamp(2.25rem, 3.2vw, 3.9rem);
  letter-spacing: 0.02em;
  text-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.pv-layout-260218.pv-mode-pc .pv-hero-caption-sub{
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  text-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
/* ===== Hero: キャッチ/サブキャッチ 文字サイズ（大/中/小） ===== */
.pv-layout-260218.pv-mode-pc .pv-hero-caption-title.pv-size-l{
  font-size: clamp(2.6rem, 3.6vw, 4.4rem);
}
.pv-layout-260218.pv-mode-pc .pv-hero-caption-title.pv-size-s{
  font-size: clamp(2.0rem, 2.8vw, 3.5rem);
}
.pv-layout-260218.pv-mode-pc .pv-hero-caption-sub.pv-size-l{
  font-size: clamp(1.35rem, 1.65vw, 1.75rem);
}
.pv-layout-260218.pv-mode-pc .pv-hero-caption-sub.pv-size-s{
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
}

.pv-layout-260218.pv-mode-mobile .pv-hero-caption-title.pv-size-l{ font-size: 2.05rem; }
.pv-layout-260218.pv-mode-mobile .pv-hero-caption-title.pv-size-s{ font-size: 1.55rem; }
.pv-layout-260218.pv-mode-mobile .pv-hero-caption-sub{ font-size: 1.02rem; }
.pv-layout-260218.pv-mode-mobile .pv-hero-caption-sub.pv-size-l{ font-size: 1.15rem; }
.pv-layout-260218.pv-mode-mobile .pv-hero-caption-sub.pv-size-s{ font-size: 0.95rem; }


.pv-layout-260218 .pv-hero-caption-title{
  font-weight: 1000;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  line-height: 1.15;
  display: block;
  max-width: 100%;
  white-space: nowrap; /* 1行固定 */
  overflow: hidden;
  text-overflow: ellipsis;
}
.pv-layout-260218.pv-mode-mobile .pv-hero-caption-title{
  font-size: 1.75rem;
}

.pv-layout-260218.pv-mode-mobile .pv-hero-caption-title,
.pv-layout-260218.pv-mode-mobile .pv-hero-caption-sub{
  width: 100%;
  text-align: center;
}
.pv-layout-260218 .pv-hero-caption-sub{
  margin-top: 0;
  line-height: 1.6;
  color: var(--pv-muted);
  display: block;
  max-width: 100%;
  white-space: nowrap; /* 1行固定 */
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv-layout-260218 .pv-hero-track{
  display: flex;
  height: 100%;
  transition: transform 500ms ease;
}

.pv-layout-260218 .pv-hero-slide{
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.pv-layout-260218 .pv-hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.pv-layout-260218 .pv-news-list{
  margin-top: 6px;
}

.pv-layout-260218 .pv-news-item{
  display: grid;
  grid-template-columns: 110px 92px 1fr 24px;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--pv-line);
}

.pv-layout-260218.pv-dark .pv-news-item{
  border-bottom-color: rgba(255,255,255,0.10);
}

.pv-layout-260218 .pv-news-date{
  font-weight: 700;
  opacity: 0.7;
}

.pv-layout-260218 .pv-news-cat{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--pv-primary-weak);
  color: var(--pv-primary);
  font-weight: 900;
  font-size: 0.72rem;
}

.pv-layout-260218.pv-dark .pv-news-cat{
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
}

.pv-layout-260218 .pv-news-title{
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-layout-260218 .pv-news-empty{
  opacity: 0;
}

.pv-layout-260218 .pv-news-arrow{
  justify-self: end;
  opacity: 0.45;
}

.pv-layout-260218.pv-dark .pv-news-arrow{
  opacity: 0.55;
}

.pv-layout-260218 .pv-link-btn.q-btn{
  margin-top: 10px;
  font-weight: 900;
}

.pv-layout-260218 .pv-about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.pv-layout-260218.pv-mode-pc .pv-about-grid{
  grid-template-columns: 1.12fr 0.88fr;
}

.pv-layout-260218 .pv-about-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid var(--pv-border);
  box-shadow: var(--pv-shadow);
}

.pv-layout-260218.pv-mode-mobile .pv-about-img{
  height: auto;
}

.pv-layout-260218 .pv-surface-white{
  background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.34));
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 22px;
  box-shadow: var(--pv-shadow);
  backdrop-filter: blur(16px);
  padding: 16px;
}

.pv-layout-260218.pv-dark .pv-surface-white{
  background: linear-gradient(180deg, rgba(12,15,22,0.64), rgba(12,15,22,0.44));
  border-color: rgba(255,255,255,0.12);
}

/* ===== About / Services: 見出し・本文（exportで崩れないように統一） ===== */
.pv-layout-260218 .pv-about-body,
.pv-layout-260218 .pv-services-body{
  min-width: 0;
}

.pv-layout-260218 .pv-about-title{
  font-weight: 1000;
  font-size: 1.08rem;
  line-height: 1.25;
  margin: 0 0 10px;
  padding-left: 12px;
  border-left: 6px solid var(--pv-primary);
}

.pv-layout-260218 .pv-about-text{
  margin-top: 10px;
  color: var(--pv-text);
  opacity: 0.86;
  line-height: 1.75;
}

.pv-layout-260218 .pv-services-lead{
  margin-top: 6px;
  color: var(--pv-text);
  opacity: 0.86;
  line-height: 1.75;
}

.pv-layout-260218 .pv-service-list{
  margin-top: 10px;
}

.pv-layout-260218 .pv-service-body{
  margin-top: 4px;
  color: var(--pv-text);
  opacity: 0.86;
  line-height: 1.75;
}

.pv-layout-260218 .pv-services-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.pv-layout-260218.pv-mode-pc .pv-services-grid{
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.pv-layout-260218 .pv-services-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.06);
}

.pv-layout-260218.pv-dark .pv-services-img{
  border-color: rgba(255,255,255,0.12);
}

.pv-layout-260218.pv-mode-pc .pv-services-img{
  height: auto;
}

.pv-layout-260218 .pv-service-item{
  padding: 10px 0;
  border-bottom: 1px solid var(--pv-line);
}

.pv-layout-260218.pv-dark .pv-service-item{
  border-bottom-color: rgba(255,255,255,0.10);
}

.pv-layout-260218 .pv-service-title{
  font-weight: 1000;
  margin-bottom: 4px;
  padding: 4px 0 4px 12px;
  border-left: 6px solid var(--pv-primary);
  border-radius: 12px;
  background: rgba(var(--pv-accent-rgb), 0.06);
  line-height: 1.35;
}

.pv-layout-260218.pv-dark .pv-service-title{
  background: rgba(255,255,255,0.06);
}

.pv-layout-260218 .pv-faq-item{
  padding: 12px 0;
  border-bottom: 1px solid var(--pv-line);
}

.pv-layout-260218.pv-dark .pv-faq-item{
  border-bottom-color: rgba(255,255,255,0.10);
}

/* ===== FAQ: ビルダーに近い見え方（Aマークは不要） ===== */
.pv-layout-260218 .pv-faq-q{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 900;
}

.pv-layout-260218 .pv-faq-qmark{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  background: var(--pv-primary-weak);
  color: var(--pv-primary);
  margin-top: 1px;
}

.pv-layout-260218 .pv-faq-qtext{
  flex: 1;
  min-width: 0;
}

.pv-layout-260218 .pv-faq-amark{ display: none; } /* 旧HTML互換: もう表示しない */

.pv-layout-260218 .pv-faq-a{
  margin-top: 8px;
  padding-left: 38px; /* Qマーク分 */
  color: var(--pv-muted);
  line-height: 1.7;
}

.pv-layout-260218 .pv-access-card{
  padding: 16px;
}

.pv-layout-260218 .pv-access-company{
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.pv-layout-260218 .pv-access-meta{
  flex-wrap: wrap;
}
.pv-layout-260218 .pv-access-icon{
  font-size: 18px;
  opacity: 0.92;
}


/* ====== Access: 地図枠（画像風）+ GoogleMap iframe（任意）+ 地図を開くリンク（v0.6.995） ====== */
.pv-layout-260218 .pv-mapframe{
  margin-top: 12px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 260px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 26px 70px rgba(15,23,42,0.14);
  background:
    radial-gradient(420px 260px at 12% 18%, rgba(255,255,255,0.36), transparent 70%),
    radial-gradient(520px 320px at 88% 92%, rgba(255,255,255,0.22), transparent 72%),
    linear-gradient(135deg, var(--pv-primary-weak), rgba(255,255,255,0.14)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.16) 0, rgba(255,255,255,0.16) 2px, transparent 2px, transparent 26px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0, rgba(255,255,255,0.14) 2px, transparent 2px, transparent 30px),
    repeating-linear-gradient(45deg, rgba(15,23,42,0.05) 0, rgba(15,23,42,0.05) 2px, transparent 2px, transparent 78px),
    repeating-linear-gradient(-45deg, rgba(15,23,42,0.04) 0, rgba(15,23,42,0.04) 2px, transparent 2px, transparent 92px);
}
.pv-layout-260218.pv-mode-mobile .pv-mapframe{
  height: 230px;
}
.pv-layout-260218.pv-mode-pc .pv-mapframe{
  height: 310px;
}
.pv-layout-260218.pv-dark .pv-mapframe{
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
  background:
    radial-gradient(420px 260px at 12% 18%, rgba(255,255,255,0.10), transparent 70%),
    radial-gradient(520px 320px at 88% 92%, rgba(255,255,255,0.06), transparent 72%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(0,0,0,0.22)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.08) 2px, transparent 2px, transparent 26px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.08) 2px, transparent 2px, transparent 30px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 78px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 92px);
}

.pv-layout-260218 .pv-mapframe-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

/* live map (iframe) */
.pv-layout-260218 .pv-mapframe-live{
  background: rgba(255,255,255,0.06);
}
.pv-layout-260218.pv-dark .pv-mapframe-live{
  background: rgba(0,0,0,0.20);
}
.pv-layout-260218 .pv-map-iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pv-layout-260218 .pv-mapframe-ui{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pv-layout-260218 .pv-mapframe-ui .pv-mapframe-open{
  pointer-events: auto;
}

.pv-layout-260218 .pv-mapframe-badge{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--pv-text);
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.pv-layout-260218.pv-dark .pv-mapframe-badge{
  background: rgba(0,0,0,0.32);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.90);
}

.pv-layout-260218 .pv-mapframe-pin{
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -70%);
  font-size: 44px;
  color: var(--pv-primary);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.22));
}
.pv-layout-260218 .pv-mapframe-bottom{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(10px);
}
.pv-layout-260218.pv-dark .pv-mapframe-bottom{
  background: rgba(0,0,0,0.22);
  border-color: rgba(255,255,255,0.12);
}

.pv-layout-260218 .pv-mapframe-label{
  font-weight: 900;
  color: var(--pv-text);
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-layout-260218 .pv-mapframe-open{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--pv-accent), var(--pv-accent-2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.pv-layout-260218 .pv-map-openlink{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 900;
  text-decoration: none;
  color: var(--pv-primary);
}
.pv-layout-260218 .pv-map-openlink:hover{
  text-decoration: underline;
}
.pv-layout-260218 .pv-map-openlink .q-icon{
  font-size: 18px;
}

.pv-layout-260218 .pv-contact-card{
  padding: 16px;
}

.pv-layout-260218 .pv-contact-actions{
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pv-layout-260218 .pv-companybar{
  margin: 22px 0 0;
  padding: 0 18px 18px;
}

.pv-layout-260218 .pv-companybar-inner{
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 14px 16px;
  font-size: 18px; /* v0.6.992: 下部バーも読みやすく */
  background: linear-gradient(180deg, rgba(255,255,255,0.40), rgba(255,255,255,0.26));
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pv-layout-260218.pv-dark .pv-companybar-inner{
  background: linear-gradient(180deg, rgba(13,16,22,0.62), rgba(13,16,22,0.44));
  border-color: rgba(255,255,255,0.12);
}

.pv-layout-260218 .pv-companybar-name{
  font-weight: 1000;
}

.pv-layout-260218 .pv-companybar-meta{
  color: var(--pv-muted);
  font-size: 0.95rem; /* v0.6.992 */
  margin-top: 2px;
}

.pv-layout-260218 .pv-mapshot{
  padding: 0 18px 18px;
}

.pv-layout-260218 .pv-mapshot-inner{
  max-width: 1280px;
  margin: 0 auto;
}

.pv-layout-260218 .pv-mapshot-card{
  padding: 14px;
}

.pv-layout-260218 .pv-mapshot-head{
  margin-bottom: 10px;
}

.pv-layout-260218 .pv-mapshot-label{
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  opacity: 0.65;
}

.pv-layout-260218 .pv-mapshot-img-link{
  display: block;
  text-decoration: none;
}

.pv-layout-260218 .pv-mapshot-img{
  position: relative;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: var(--pv-shadow);
  background:
    radial-gradient(520px 220px at 18% 22%, rgba(255,255,255,0.44), transparent 62%),
    radial-gradient(420px 240px at 88% 18%, rgba(255,255,255,0.28), transparent 62%),
    linear-gradient(160deg, rgba(255,255,255,0.30), rgba(255,255,255,0.14)),
    repeating-linear-gradient(0deg, rgba(15,23,42,0.06), rgba(15,23,42,0.06) 1px, transparent 1px, transparent 14px),
    repeating-linear-gradient(90deg, rgba(15,23,42,0.04), rgba(15,23,42,0.04) 1px, transparent 1px, transparent 18px);
}

.pv-layout-260218.pv-mode-pc .pv-mapshot-img{
  height: 280px;
}

.pv-layout-260218.pv-dark .pv-mapshot-img{
  border-color: rgba(255,255,255,0.12);
  background:
    radial-gradient(520px 220px at 18% 22%, rgba(255,255,255,0.14), transparent 62%),
    radial-gradient(420px 240px at 88% 18%, rgba(255,255,255,0.08), transparent 62%),
    linear-gradient(160deg, rgba(15,18,25,0.66), rgba(15,18,25,0.42)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 1px, transparent 1px, transparent 14px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06) 1px, transparent 1px, transparent 18px);
}

.pv-layout-260218 .pv-mapshot-pin{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -62%);
  font-size: 46px;
  color: var(--pv-primary) !important;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12));
  opacity: 0.90;
}

.pv-layout-260218.pv-dark .pv-mapshot-pin{
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.32));
}

.pv-layout-260218 .pv-mapshot-open{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 42%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--pv-text);
  font-weight: 900;
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
}

.pv-layout-260218.pv-dark .pv-mapshot-open{
  background: rgba(15,18,25,0.50);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
}

.pv-layout-260218 .pv-mapshot-address{
  margin-top: 10px;
  color: var(--pv-text);
  opacity: 0.80;
  font-weight: 700;
  line-height: 1.5;
}

.pv-layout-260218 .pv-footer{
  margin-top: 8px;
  padding: 18px;
  background: rgba(10,12,18,0.92);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
}

.pv-layout-260218 .pv-footer-grid{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pv-layout-260218.pv-mode-pc .pv-footer-grid{
  grid-template-columns: 1fr;
}

.pv-layout-260218 .pv-footer-brand{
  font-weight: 1000;
  color: #fff;
  margin-bottom: 6px;
}

.pv-layout-260218 .pv-footer-cap{
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  margin-top: 10px;
  margin-bottom: 6px;
}

.pv-layout-260218 .pv-footer-link.q-btn,
.pv-layout-260218 .pv-footer-link.q-btn .q-btn__content,
.pv-layout-260218 .pv-footer-link.q-btn .q-btn__content span{
  color: rgba(255,255,255,0.86) !important;
}
.pv-layout-260218 .pv-footer-link.q-btn{
  justify-content: flex-start;
  padding-left: 0;
  font-size: 0.82rem; /* v0.9.3: フッターメニューを小さく */
  letter-spacing: 0.01em;
}

.pv-layout-260218 .pv-footer-link.q-btn:hover{
  color: #fff !important;
}

.pv-layout-260218 .pv-footer-text{
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
}

.pv-layout-260218 .pv-footer-copy{
  max-width: 1280px;
  margin: 12px auto 0;
  opacity: 0.62;
  font-size: 0.8rem;
}
/* ====== Legal (Privacy Policy) ====== */
.pv-legal-title{
  font-weight: 900;
  font-size: 1.05rem;
}
.pv-legal-md{
  font-size: 0.98rem;
  line-height: 1.85;
}
.pv-legal-md h1,
.pv-legal-md h2,
.pv-legal-md h3{
  margin: 14px 0 8px;
  font-weight: 900;
}
.pv-legal-md h2{ font-size: 1.05rem; }
.pv-legal-md h3{ font-size: 1.0rem; }
.pv-legal-md ul{ padding-left: 1.2em; }
.pv-legal-md li{ margin: 6px 0; }

/* ====== Preview tabs icon spacing ====== */
.cvhb-preview-tabs .q-tab__icon { margin-right: 6px; }
    

/* ===== CVHB Export Base ===== */
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans JP",sans-serif; line-height:1.7; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; text-rendering:optimizeLegibility;}
a{color:inherit;text-decoration:none;}
a:hover{text-decoration:none;}

/* Quasarっぽい最小ユーティリティ（プレビューCSSが前提にしているため） */
.row{display:flex;flex-wrap:wrap;}
.no-wrap{flex-wrap:nowrap;}
.items-center{align-items:center;}
.items-start{align-items:flex-start;}
.items-end{align-items:flex-end;}
.justify-between{justify-content:space-between;}
.justify-center{justify-content:center;}
.justify-end{justify-content:flex-end;}

/* ボタン風（q-btn依存を外すため、exportでは素のa/buttonにも効かせる） */
.pv-layout-260218 .pv-desktop-nav-btn,
.pv-layout-260218 .pv-menu-btn,
.pv-layout-260218 .pv-link-btn,
.pv-layout-260218 .pv-nav-item,
.pv-layout-260218 .pv-footer-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  cursor:pointer;
  font-weight:800;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}

.pv-layout-260218 .pv-link-btn{padding:10px 18px;}

/* v0.9.3: ヘッダー/フッターメニューは少し小さめ（PCで横並びが崩れにくい） */
.pv-layout-260218 .pv-desktop-nav-btn{
  padding: 6px 10px;
  font-size: 0.86rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.pv-layout-260218 .pv-menu-btn{
  padding: 6px 10px;
  font-size: 18px;
  line-height: 1;
}
.pv-layout-260218 .pv-footer-link{
  padding: 6px 10px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.pv-layout-260218 .pv-btn-primary{background:var(--pv-accent); color:#fff;}
.pv-layout-260218 .pv-btn-outline{border-color:rgba(var(--pv-accent-rgb),.95); color:var(--pv-accent);}
.pv-layout-260218 .pv-btn-outline:hover{background:rgba(var(--pv-accent-rgb),.10);}

.pv-layout-260218 .pv-inline-link{color:var(--pv-accent); text-decoration:underline; text-underline-offset:3px;}

/* ===== Export Footer Layout ===== */
.pv-layout-260218 .pv-footer-inner{
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pv-layout-260218 .pv-footer-links{
  display: flex;
  flex-wrap: nowrap; /* どの画面幅でも「1行」 */
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge(旧) */
}
.pv-layout-260218 .pv-footer-links::-webkit-scrollbar{ display:none; }

/* PC: さらに詰めて1行を維持（入りきらない場合は横スクロール） */
.pv-layout-260218.pv-mode-pc .pv-footer-links{
  gap: 8px;
}

/* v0.9.5: PCヒーローのキャッチ/サブキャッチは必ず1行（崩れ防止） */
.pv-layout-260218.pv-mode-pc .pv-hero-caption-title,
.pv-layout-260218.pv-mode-pc .pv-hero-caption-sub{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Export: プレビュー用「固定幅シェル」をWebに合わせて解放 ===== */
.pv-shell.pv-layout-260218,
.pv-shell.pv-layout-260218.pv-mode-mobile,
.pv-shell.pv-layout-260218.pv-mode-pc{
  width:100% !important;
  max-width:none !important;
  height:auto !important;
  min-height:100vh;
  border-radius:0 !important;
  overflow:visible !important;
}

.pv-layout-260218 .pv-scroll{
  overflow:visible !important;
}

/* PCではメニューボタンを隠す（プレビューは条件レンダリングだが、exportは両方DOMに置く） */
.pv-layout-260218.pv-mode-pc .pv-menu-btn{display:none;}

/* ===== Mobile Menu Overlay (export only) ===== */
.pv-nav-overlay{
  position:fixed;
  inset:0;
  padding:16px;
  background:rgba(0,0,0,.45);
  display:none;
  align-items:flex-start;
  justify-content:flex-end;
  z-index:999;
}
.pv-nav-overlay.is-open{display:flex;}

.pv-nav-card{
  width:min(420px, 100%);
  border-radius:18px;
  padding:14px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}
.pv-dark .pv-nav-card{
  background:rgba(18,18,18,.92);
  border-color:rgba(255,255,255,.12);
}

.pv-nav-title{font-weight:900; font-size:14px; opacity:.7; margin:2px 8px 10px;}
.pv-nav-item{width:100%; justify-content:flex-start; border-radius:14px; padding:12px 14px;}
.pv-nav-close{width:100%; margin-top:10px; padding:12px 14px; border-radius:14px; border:1px solid rgba(0,0,0,.08); background:rgba(0,0,0,.05); font-weight:900; cursor:pointer;}
.pv-dark .pv-nav-close{border-color:rgba(255,255,255,.12); background:rgba(255,255,255,.08); color:var(--pv-text);}

/* ===== Contact Form (export only) ===== */
.pv-error-box{
  margin:12px 0 0;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255, 59, 48, .14);
  border:1px solid rgba(255, 59, 48, .35);
  color:var(--pv-text);
  font-weight:800;
}

.pv-form{margin-top:14px;}
.pv-form-row{margin-top:12px;}
.pv-form label{display:block; font-weight:900; font-size:14px;}
.pv-form input,
.pv-form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.14);
  color:var(--pv-text);
  outline:none;
}
.pv-dark .pv-form input,
.pv-dark .pv-form textarea{
  border-color:rgba(255,255,255,.18);
  background:rgba(0,0,0,.20);
}

.pv-form textarea{resize:vertical; min-height:140px;}
.pv-form input:focus,
.pv-form textarea:focus{
  border-color:rgba(var(--pv-accent-rgb), .9);
  box-shadow:0 0 0 3px rgba(var(--pv-accent-rgb), .20);
}

.pv-agree{display:flex; gap:10px; align-items:flex-start; margin-top:14px; font-weight:800;}
.pv-agree input{margin-top:3px;}

.pv-form-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;}

/* ===== Privacy / Legal (export only) ===== */
.pv-legal{padding-top:6px;}
.pv-legal h1,.pv-legal h2,.pv-legal h3{line-height:1.3;}
.pv-legal h1{font-size:22px; margin:0 0 10px;}
.pv-legal h2{font-size:18px; margin:18px 0 8px;}
.pv-legal p{margin:8px 0;}
.pv-legal ul{margin:8px 0 8px 1.2em;}
.pv-legal li{margin:6px 0;}

/* ===== Thanks ===== */
.pv-thanks-card{padding:22px;}
.pv-thanks-title{font-size:20px; font-weight:1000;}
.pv-thanks-message{margin-top:10px; opacity:.92;}
.pv-thanks-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px;}
.pv-thanks-mail{margin-top:18px; padding-top:14px; border-top:1px solid rgba(255,255,255,.20);}
.pv-thanks-mail-title{font-weight:900; margin-bottom:10px; opacity:.8;}
