﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=DM+Mono:wght@300;400;500&display=swap");
:root { --bg: #ffffff; --bg2: #f5f5f5; --bg3: #ebebeb; --surface: #ffffff; --border: #e0e0e0; --text: #111111; --text2: #555555; --text3: #999999; --accent: #0052cc; --accent2: #003d99; --accent-soft: #e8f0ff; --danger: #cc2200; --radius: 6px; --radius-lg: 12px; --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.06); --shadow-lg: 0 8px 32px rgba(0,0,0,.12); --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; --font-mono: 'DM Mono', monospace; --transition: .18s cubic-bezier(.4,0,.2,1); --header-h: 56px; }
[data-theme="dark"] { --bg: #0a0a0a; --bg2: #141414; --bg3: #1e1e1e; --surface: #141414; --border: #2a2a2a; --text: #f0f0f0; --text2: #999999; --text3: #555555; --accent: #4d8eff; --accent2: #6ba3ff; --accent-soft: #0d1f3c; --shadow: 0 1px 3px rgba(0,0,0,.3), 0 4px 12px rgba(0,0,0,.2); --shadow-lg: 0 8px 32px rgba(0,0,0,.4); }
*, ::before, ::after { box-sizing: border-box; margin: 0px; padding: 0px; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.6; overflow-x: hidden; transition: background var(--transition), color var(--transition); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
#builder-shell { display: flex; flex-direction: column; height: 100vh; overflow: hidden; }
#top-bar { height: var(--header-h); background: var(--surface); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0px 16px; gap: 0px; flex-shrink: 0; z-index: 100; }
.brand { font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: -0.01em; color: var(--text); margin-right: 24px; white-space: nowrap; }
.brand span { color: var(--accent); }
.tab-bar { display: flex; gap: 2px; flex: 1 1 0%; overflow-x: auto; scrollbar-width: none; }
.tab-bar::-webkit-scrollbar { display: none; }
.tab-btn { padding: 6px 14px; border-radius: var(--radius); border: none; background: transparent; color: var(--text2); font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; white-space: nowrap; transition: all var(--transition); display: flex; align-items: center; gap: 6px; }
.tab-btn:hover { background: var(--bg2); color: var(--text); }
.tab-btn.active { background: var(--accent); color: rgb(255, 255, 255); }
.tab-btn .dot { width: 6px; height: 6px; border-radius: 50%; background: currentcolor; opacity: 0.5; }
.top-bar-actions { display: flex; align-items: center; gap: 8px; margin-left: 16px; }
.icon-btn { width: 32px; height: 32px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); color: var(--text2); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--transition); }
.icon-btn:hover { background: var(--bg2); color: var(--text); }
.icon-btn.active { background: var(--text); color: var(--bg); border-color: var(--text); }
#workspace { flex: 1 1 0%; display: flex; overflow: hidden; }
#panel-splitter { width: 6px; background: var(--bg2); cursor: col-resize; flex-shrink: 0; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
body.resizing { cursor: col-resize; user-select: none; }
#right-panel { width: 360px; min-width: 300px; background: var(--surface); border-left: 1px solid var(--border); display: flex; flex-direction: column; flex-shrink: 0; overflow: hidden; transition: width var(--transition); }
#right-panel.collapsed { width: 0px; }
.panel-head { padding: 12px 16px; border-bottom: 1px solid var(--border); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text3); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.sort-list { display: flex; flex-direction: column; gap: 4px; padding: 4px 0px; }
.sort-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); cursor: grab; user-select: none; transition: background 0.15s, box-shadow 0.15s, opacity 0.15s; font-size: 12px; }
.sort-item:hover { background: var(--bg3, #e8eaf0); border-color: var(--accent, #0052cc); }
.sort-item.dragging { opacity: 0.4; cursor: grabbing; }
.sort-item.drag-over { border-color: var(--accent, #0052cc); background: var(--accent-light, #e8f0fe); box-shadow: 0 0 0 2px var(--accent, #0052cc); }
.sort-handle { color: var(--text3); font-size: 14px; flex-shrink: 0; cursor: grab; }
.sort-icon { font-size: 14px; flex-shrink: 0; width: 18px; text-align: center; }
.sort-labels { flex: 1 1 0%; min-width: 0px; display: flex; flex-direction: column; gap: 1px; }
.sort-primary { font-size: 11px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sort-secondary { font-size: 10px; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sort-badge-off { font-size: 9px; padding: 1px 5px; border-radius: 3px; background: var(--text3); color: rgb(255, 255, 255); flex-shrink: 0; }
.sort-hint { font-size: 10px; color: var(--text3); text-align: center; padding: 6px 0px 2px; }
.sort-empty { padding: 24px 12px; text-align: center; color: var(--text3); font-size: 12px; }
.panel-scroll { flex: 1 1 0%; overflow-y: auto; padding: 12px; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
#preview-wrap { flex: 1 1 0%; display: flex; flex-direction: column; background: var(--bg3); overflow: hidden; }
#preview-toolbar { height: 40px; background: var(--surface); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0px 12px; gap: 8px; flex-shrink: 0; }
.vp-btn { padding: 4px 10px; border-radius: var(--radius); border: 1px solid var(--border); background: transparent; color: var(--text2); font-size: 11px; font-family: var(--font-mono); cursor: pointer; transition: all var(--transition); }
.vp-btn:hover, .vp-btn.active { background: var(--accent); color: rgb(255, 255, 255); border-color: var(--accent); }
.preview-url { flex: 1 1 0%; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 10px; font-family: var(--font-mono); font-size: 11px; color: var(--text2); text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
#preview-frame-wrap { flex: 1 1 0%; overflow: auto; display: flex; align-items: flex-start; justify-content: center; padding: 20px; }
#preview-frame { background: rgb(255, 255, 255); box-shadow: var(--shadow-lg); transition: all var(--transition); width: 100%; max-width: 1440px; min-height: 600px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
#preview-frame.mobile { max-width: 390px; }
#preview-frame.tablet { max-width: 768px; }
.section-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); padding: 8px 4px 4px; }
.divider { height: 1px; background: var(--border); margin: 12px 0px; }
.btn { padding: 8px 16px; border-radius: var(--radius); border: none; font-family: var(--font-body); font-size: 12px; font-weight: 500; cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.btn-primary { background: var(--accent); color: rgb(255, 255, 255); }
.btn-primary:hover { background: var(--accent2); }
.btn-ghost { background: transparent; color: var(--text2); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg2); color: var(--text); }
.btn-danger { background: transparent; color: var(--danger); border: 1px solid var(--danger); }
.btn-danger:hover { background: var(--danger); color: rgb(255, 255, 255); }
.btn-sm { padding: 5px 10px; font-size: 11px; }
.btn-full { width: 100%; justify-content: center; }
.form-group { margin-bottom: 12px; }
.form-label { display: block; font-size: 11px; font-weight: 500; color: var(--text2); margin-bottom: 4px; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 6px 9px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 12px; transition: all var(--transition); outline: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.form-textarea { resize: vertical; min-height: 64px; }
.tag { display: inline-block; padding: 2px 8px; border-radius: 100px; font-size: 10px; font-weight: 600; }
.tag-blue { background: var(--accent-soft); color: var(--accent); }
.block-list { display: flex; flex-direction: column; gap: 4px; }
.block-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--radius); background: var(--bg2); border: 1px solid transparent; cursor: pointer; transition: all var(--transition); user-select: none; }
.block-item:hover { border-color: var(--accent); background: var(--accent-soft); }
.block-icon { width: 28px; height: 28px; border-radius: 4px; background: var(--accent); color: rgb(255, 255, 255); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.block-name { font-size: 12px; font-weight: 500; color: var(--text); }
.block-desc { font-size: 10px; color: var(--text3); }
#drop-zone { margin: 12px; border: 2px dashed var(--border); border-radius: var(--radius-lg); padding: 20px; text-align: center; cursor: pointer; transition: all var(--transition); background: var(--bg2); }
#drop-zone:hover, #drop-zone.dragover { border-color: var(--accent); background: var(--accent-soft); }
.drop-icon { font-size: 24px; margin-bottom: 8px; }
.drop-text { font-size: 12px; color: var(--text2); line-height: 1.5; }
.drop-hint { font-size: 10px; color: var(--text3); margin-top: 4px; }
.block-order-list { display: flex; flex-direction: column; gap: 4px; }
.block-order-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--radius); background: var(--bg2); border: 1px solid transparent; transition: all var(--transition); }
.block-order-item.disabled { opacity: 0.4; }
.drag-handle { color: var(--text3); font-size: 14px; cursor: grab; flex-shrink: 0; }
.block-order-name { flex: 1 1 0%; font-size: 12px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.block-actions { display: flex; gap: 3px; flex-shrink: 0; }
.block-action-btn { width: 22px; height: 22px; border-radius: 4px; border: none; background: transparent; color: var(--text3); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 11px; transition: all var(--transition); }
.block-action-btn:hover { background: var(--bg3); color: var(--text); }
.block-action-btn.del:hover { background: var(--danger); color: rgb(255, 255, 255); }
.modal-overlay { position: fixed; inset: 0px; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: min(640px, 90vw); max-height: 85vh; display: flex; flex-direction: column; transform: translateY(20px) scale(0.97); transition: transform var(--transition); overflow: hidden; }
.modal-overlay.open .modal { transform: translateY(0px) scale(1); }
.modal-head { padding: 20px 24px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.modal-body { padding: 20px 24px; overflow-y: auto; flex: 1 1 0%; }
.modal-foot { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; gap: 8px; justify-content: flex-end; }
#toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { background: var(--text); color: var(--bg); padding: 10px 16px; border-radius: var(--radius); font-size: 12px; font-weight: 500; box-shadow: var(--shadow-lg); animation: 0.2s ease 0s 1 normal none running toastIn; }
@keyframes toastIn { 
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.prompt-copy-box { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; font-family: var(--font-mono); font-size: 11px; line-height: 1.8; color: var(--text); white-space: pre-wrap; word-break: break-word; max-height: 420px; overflow-y: auto; user-select: all; }
.img-drop-zone { border: 1.5px dashed var(--border); border-radius: var(--radius); background: var(--bg3, #f0f2f5); transition: border-color 0.15s, background 0.15s; display: flex; align-items: center; justify-content: center; }
.img-drop-zone:hover { border-color: var(--accent, #0052cc); background: var(--accent-light, #e8f0fe); }
.img-drop-zone.dragover { border-color: var(--accent, #0052cc); background: var(--accent-light, #e8f0fe); box-shadow: 0 0 0 2px var(--accent, #0052cc); }
:root { --header-height: 50px; --anchor-nav-height: 45px; }
.site { font-family: var(--font-body); font-size: 16px; color: rgb(17, 17, 17); background: rgb(255, 255, 255); min-height: 100vh; scroll-behavior: smooth; overflow-x: clip; }
html { scroll-behavior: smooth; }
.anchor-target, [id^="extra-video-"] { scroll-margin-top: calc(var(--header-height) + var(--anchor-nav-height) + 4px); }
.site[data-theme="dark"] { color: rgb(240, 240, 240); background: rgb(10, 10, 10); }
.site-header { position: sticky; top: 0px; z-index: 1000; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgb(232, 232, 232); padding: 0px 40px; display: flex; align-items: center; height: var(--header-height); gap: 32px; }
.site[data-theme="dark"] .site-header { background: rgba(10, 10, 10, 0.92); border-color: rgb(42, 42, 42); }
.site-logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.03em; color: inherit; text-decoration: none; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.site-logo-icon { width: 32px; height: 32px; background: rgb(17, 17, 17); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgb(255, 255, 255); font-size: 14px; font-weight: 900; }
.site-logo.has-image .site-logo-icon { width: 120px; height: 36px; background: transparent; border-radius: 0px; }
.site-logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.site[data-theme="dark"] .site-logo-icon { background: rgb(255, 255, 255); color: rgb(17, 17, 17); }
.site-nav-container { display: flex; align-items: center; gap: 32px; flex: 1 1 0%; overflow: visible !important; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { padding: 6px 12px; border-radius: 6px; text-decoration: none; color: rgb(68, 68, 68); font-size: 14px; font-weight: 500; transition: 0.15s; }
.site[data-theme="dark"] .site-nav a { color: rgb(170, 170, 170); }
.site-nav a:hover { background: rgb(245, 245, 245); color: rgb(17, 17, 17); }
.site[data-theme="dark"] .site-nav a:hover { background: rgb(30, 30, 30); color: rgb(240, 240, 240); }
.site-search { display: flex; align-items: center; position: relative; background: transparent; cursor: pointer; transition: 0.2s; }
.search-icon-only { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgb(245, 245, 245); color: rgb(68, 68, 68); transition: 0.2s; }
.search-icon-only:hover { background: rgb(224, 224, 224); }
.search-input-wrap { width: 0px; opacity: 0; overflow: hidden; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); background: rgb(245, 245, 245); border-radius: 8px; margin-left: 8px; white-space: nowrap; }
.site-search.active .search-input-wrap { width: 400px; max-width: 60vw; opacity: 1; padding: 4px 12px; }
.site-search.active .search-icon-only { background: rgb(0, 82, 204); color: rgb(255, 255, 255); }
.site[data-theme="dark"] .search-icon-only, .site[data-theme="dark"] .search-input-wrap { background: rgb(30, 30, 30); color: rgb(204, 204, 204); }
.site[data-theme="dark"] .search-icon-only:hover { background: rgb(42, 42, 42); }
.site[data-theme="dark"] .site-search.active .search-icon-only { background: rgb(77, 142, 255); color: rgb(17, 17, 17); }
.gcse-searchbox-only { width: 100%; }
.gsc-results-wrapper-overlay { top: 50px !important; box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 40px !important; border-radius: 0px 0px 12px 12px !important; }
.site-header-toggle { display: none; }
.s-section { padding: 72px 80px; }
@media (max-width: 768px) {
  .s-section { padding: 32px 16px; }
}
.s-section-sm { padding: 40px 80px; }
@media (max-width: 768px) {
  .s-section-sm { padding: 24px 16px; }
}
.s-section-alt { background: rgb(249, 249, 249); }
.site[data-theme="dark"] .s-section-alt { background: rgb(17, 17, 17); }
.s-title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.s-subtitle { color: rgb(102, 102, 102); font-size: 15px; margin-bottom: 40px; }
.site[data-theme="dark"] .s-subtitle { color: rgb(136, 136, 136); }
.s-breadcrumb { display: flex; gap: 6px; align-items: center; font-size: 12px; color: rgb(136, 136, 136); padding: 16px 80px; }
@media (max-width: 768px) {
  .s-breadcrumb { padding: 16px 20px; }
}
.s-breadcrumb a { color: rgb(136, 136, 136); text-decoration: none; }
.s-breadcrumb a:hover { color: rgb(0, 82, 204); }
.s-breadcrumb-sep { opacity: 0.5; }
.hero-slider { position: relative; width: 100%; overflow: hidden; background: rgb(0, 0, 0); min-height: 720px; }
.hero-slide { position: absolute; inset: 0px; display: flex; align-items: center; padding: 100px 80px; opacity: 0; transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1); color: inherit; cursor: pointer; overflow: hidden; }
.hero-slide:hover .hero-slide-bg { transform: scale(1.05); }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg { position: absolute; inset: 0px; background-size: cover; background-position: center center; background-repeat: no-repeat; z-index: 0; transition: transform 1s cubic-bezier(0.2, 0, 0.2, 1); }
.hero-slide-bg:not([style*="background-image"]) { background-image: linear-gradient(135deg, rgb(10, 10, 10) 0%, rgb(26, 26, 46) 100%); }
.hero-slide-content { position: relative; z-index: 10; max-width: 640px; }
.hero-tag { display: inline-block; padding: 4px 12px; background: rgba(0, 82, 204, 0.3); color: rgb(124, 179, 255); border: 1px solid rgba(0, 82, 204, 0.4); border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: rgb(255, 255, 255); margin-bottom: 16px; }
.hero-sub { font-size: 16px; color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-p { padding: 12px 28px; background: rgb(255, 255, 255); color: rgb(17, 17, 17); border-radius: 8px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; font-family: var(--font-body); transition: 0.15s; }
.btn-hero-p:hover { background: rgb(240, 240, 240); transform: translateY(-1px); }
.btn-hero-g { padding: 12px 28px; border: 1px solid rgba(255, 255, 255, 0.3); color: rgb(255, 255, 255); border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; background: transparent; font-family: var(--font-body); transition: 0.15s; }
.btn-hero-g:hover { border-color: rgba(255, 255, 255, 0.7); }
.hero-img-side { position: absolute; right: 0px; top: 0px; bottom: 0px; width: 50%; display: flex; align-items: center; justify-content: center; z-index: 1; }
.hero-placeholder-img { width: 70%; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.1); font-size: 48px; }
.slider-dots { position: absolute; bottom: 24px; left: 80px; display: flex; gap: 8px; z-index: 5; }
.slider-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transition: 0.3s; cursor: pointer; border: none; }
.slider-dot.active { background: rgb(255, 255, 255); width: 24px; border-radius: 3px; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.cat-card { background: rgb(245, 245, 245); border-radius: 12px; padding: 24px 20px; text-align: center; cursor: pointer; transition: 0.2s; border: 2px solid transparent; text-decoration: none; color: inherit; display: block; }
.site[data-theme="dark"] .cat-card { background: rgb(20, 20, 20); }
.cat-card:hover { border-color: rgb(0, 82, 204); transform: translateY(-2px); }
.cat-icon { font-size: 32px; margin-bottom: 12px; }
@media (max-width: 768px) {
  :root { --header-height: 56px; }
  .site-header { height: 56px; padding: 0px 16px; justify-content: space-between; }
  .site-logo { font-size: 16px; }
  .site-header-toggle { display: flex; flex-direction: column; justify-content: space-around; width: 24px; height: 24px; background: transparent; border: none; cursor: pointer; padding: 0px; z-index: 10; }
  .site-header-toggle span { width: 24px; height: 2px; background: rgb(17, 17, 17); border-radius: 10px; transition: 0.3s linear; position: relative; transform-origin: 1px center; }
  .site[data-theme="dark"] .site-header-toggle span { background: rgb(240, 240, 240); }
  .site-header.nav-open .site-header-toggle span:first-child { transform: rotate(45deg); }
  .site-header.nav-open .site-header-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .site-header-toggle span:nth-child(3) { transform: rotate(-45deg); }
  .site-nav-container { position: absolute; top: var(--header-height); left: 0px; width: 100%; background: rgba(255, 255, 255, 0.98); flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid rgb(232, 232, 232); display: none; box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px; backdrop-filter: blur(12px); z-index: 100; }
  .site[data-theme="dark"] .site-nav-container { background: rgba(10, 10, 10, 0.98); border-color: rgb(42, 42, 42); }
  .site-header.nav-open .site-nav-container { display: flex; }
  .site-nav { flex-direction: column; align-items: flex-start; width: 100%; gap: 0px; }
  .site-nav a { width: 100%; padding: 12px; font-size: 16px; border-bottom: 1px solid rgb(240, 240, 240); border-radius: 0px; }
  .site[data-theme="dark"] .site-nav a { border-color: rgb(34, 34, 34); }
  .site-search { width: 100%; min-width: 0px; }
  .hero-slider { min-height: 400px; }
  .hero-slide { padding: 40px 20px; flex-direction: column; text-align: center; justify-content: center; }
  .hero-slide-content { max-width: 100%; }
  .hero-img-side { position: static; width: 100%; margin-top: 32px; }
  .hero-placeholder-img { width: 100%; }
  .slider-dots { left: 50%; transform: translateX(-50%); bottom: 16px; }
  .notice-grid { grid-template-columns: 1fr; gap: 16px; }
  .notice-box { padding: 20px; }
  .notice-item { flex-direction: column; gap: 4px; }
  .notice-date { margin-top: 0px; }
  .product-list-layout { flex-direction: column; gap: 24px; }
  .cat-sidebar { width: calc(100% + 32px); margin-left: -16px; margin-right: -16px; padding: 12px 16px 16px; background: rgb(255, 255, 255); z-index: 30; top: var(--header-height); display: flex; flex-wrap: wrap; gap: 8px; }
  .site[data-theme="dark"] .cat-sidebar { background: rgb(10, 10, 10); }
  .cat-sidebar::-webkit-scrollbar { display: none; }
  .cat-sidebar-title { display: none; }
  .cat-sidebar-item { white-space: nowrap; margin-bottom: 0px; padding: 6px 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-body { padding: 12px; }
  .product-name { font-size: 13px; }
  .product-hero { padding: 40px 20px; flex-direction: column; gap: 32px; text-align: center; }
  .product-hero-img { width: 100%; }
  .anchor-nav { padding: 0px 16px; top: var(--header-height); }
  .sp-full { grid-template-columns: 1fr; }
  .sp-full-content { padding: 32px 20px; }
  .sp-half-grid { grid-template-columns: 1fr; }
  .sp-half-item { padding: 32px 20px; }
  .sp-compact { padding: 24px 20px; flex-direction: column; gap: 16px; }
}
.cat-name { font-weight: 600; font-size: 13px; }
.cat-count { font-size: 11px; color: rgb(136, 136, 136); margin-top: 4px; }
.notice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.notice-box { background: rgb(245, 245, 245); border-radius: 12px; padding: 24px; }
.site[data-theme="dark"] .notice-box { background: rgb(20, 20, 20); }
.notice-box-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.notice-item { padding: 12px 0px; border-bottom: 1px solid rgb(232, 232, 232); display: flex; gap: 12px; align-items: flex-start; text-decoration: none; }
.site[data-theme="dark"] .notice-item { border-color: rgb(42, 42, 42); }
.notice-item:last-child { border-bottom: none; padding-bottom: 0px; }
.notice-date { font-family: var(--font-mono); font-size: 11px; color: rgb(136, 136, 136); white-space: nowrap; margin-top: 2px; }
.notice-text { font-size: 13px; color: rgb(51, 51, 51); line-height: 1.5; }
.site[data-theme="dark"] .notice-text { color: rgb(204, 204, 204); }
.product-list-layout { display: flex; gap: 32px; align-items: flex-start; }
.cat-sidebar { width: 200px; flex-shrink: 0; position: sticky; top: 100px; }
.cat-sidebar-title { font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: rgb(136, 136, 136); margin-bottom: 12px; }
.cat-sidebar-item { padding: 8px 12px; border-radius: 8px; font-size: 13px; cursor: pointer; color: rgb(68, 68, 68); transition: 0.15s; margin-bottom: 2px; display: block; text-decoration: none; }
.site[data-theme="dark"] .cat-sidebar-item { color: rgb(170, 170, 170); }
.cat-sidebar-item:hover, .cat-sidebar-item.active { background: rgb(240, 244, 255); color: rgb(0, 82, 204); }
.site[data-theme="dark"] .cat-sidebar-item:hover, .site[data-theme="dark"] .cat-sidebar-item.active { background: rgb(13, 31, 60); color: rgb(77, 142, 255); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.product-card { background: rgb(255, 255, 255); border: 1px solid rgb(232, 232, 232); border-radius: 12px; overflow: hidden; cursor: pointer; transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1); transform-origin: center center; text-decoration: none; color: inherit; display: block; }
.product-card.discontinued { border-style: dashed; }
.new-arrival-cat { animation: 1.5s ease 0s infinite normal none running bg-pulse-red; color: rgb(255, 51, 0) !important; font-weight: 800 !important; }
@keyframes bg-pulse-red { 
  0% { background-color: transparent; }
  50% { background-color: rgba(255, 51, 0, 0.15); }
  100% { background-color: transparent; }
}
.new-badge { position: absolute; top: 8px; right: 8px; background: rgb(255, 51, 0); color: rgb(255, 255, 255); font-size: 10px; font-weight: 900; padding: 2px 6px; border-radius: 4px; z-index: 10; box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px; }
.cat-badge { position: absolute; top: 30px; right: 8px; background: rgba(0, 82, 204, 0.85); color: rgb(255, 255, 255); font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 3px; z-index: 10; pointer-events: none; white-space: nowrap; }
.discontinued-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-15deg); background: rgba(0, 0, 0, 0.7); color: rgb(255, 255, 255); padding: 4px 12px; border-radius: 4px; font-size: 14px; font-weight: 700; border: 2px solid rgb(255, 255, 255); pointer-events: none; z-index: 5; }
.site[data-theme="dark"] .product-card { background: rgb(20, 20, 20); border-color: rgb(42, 42, 42); }
.product-card:hover { box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 32px; transform: translateY(-2px); }
.product-img { width: 100%; aspect-ratio: 4 / 3; background: rgb(240, 240, 240); display: flex; align-items: center; justify-content: center; color: rgb(204, 204, 204); font-size: 36px; position: relative; overflow: hidden; }
.site[data-theme="dark"] .product-img { background: rgb(30, 30, 30); color: rgb(51, 51, 51); }
.product-img video { position: absolute; inset: 0px; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.3s; }
.product-card:hover .product-img video { opacity: 1; }
.product-body { padding: 12px; }
.product-pn { font-family: var(--font-mono); font-size: 9px; color: rgb(136, 136, 136); margin-bottom: 2px; }
.product-name { font-weight: 600; font-size: 13px; margin-bottom: 4px; line-height: 1.3; }
.product-desc { font-size: 11px; color: rgb(102, 102, 102); line-height: 1.4; }
.site[data-theme="dark"] .product-desc { color: rgb(136, 136, 136); }
.product-jan { font-family: var(--font-mono); font-size: 10px; color: rgb(170, 170, 170); margin-top: 8px; }
.site-main-content { opacity: 0; transform: translateY(10px); transition: opacity 0.4s, transform 0.4s; }
.site-main-content.fade-in { opacity: 1; transform: translateY(0px); }
.right-panel-body input:focus, .right-panel-body textarea:focus { outline: rgb(0, 82, 204) solid 2px; }
.gallery-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery-item-sm { aspect-ratio: 1 / 1; background: rgb(240, 240, 240); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; font-size: 24px; transition: transform 0.2s; }
.gallery-item-sm:hover { transform: scale(1.05); }
.gallery-item-sm img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .gallery-grid-5 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
.lightbox-overlay { position: fixed; inset: 0px; background: rgba(0, 0, 0, 0.9); z-index: 9999; display: flex; align-items: center; justify-content: center; cursor: zoom-out; }
.lightbox-content { max-width: 90%; max-height: 90%; }
.lightbox-content img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 40px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: rgb(255, 255, 255); font-size: 32px; cursor: pointer; font-weight: bold; }
.product-hero { background: center center / cover no-repeat rgb(10, 10, 10); padding: 80px; display: flex; gap: 60px; align-items: center; min-height: 600px; position: relative; overflow: hidden; }
.product-hero::before { content: ""; position: absolute; inset: 0px; background: linear-gradient(70deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%); z-index: 2; }
.product-hero-bg-video { position: absolute; inset: 0px; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-sp-video { display: none; }
@media (max-width: 768px) {
  .hero-pc-video { display: none; }
  .hero-sp-video { display: block; }
}
.product-hero-overlay { position: absolute; inset: 0px; background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%) 0% 0% / 100% 2px, linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03)) 0% 0% / 3px 100%; pointer-events: none; z-index: 3; opacity: 0.3; }
.product-hero-content { flex: 1 1 0%; position: relative; z-index: 10; }
.product-hero-model { font-family: var(--font-mono); font-size: 12px; color: rgba(255, 255, 255, 0.4); margin-bottom: 16px; letter-spacing: 0.04em; }
.product-hero-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: rgb(255, 255, 255); margin-bottom: 16px; max-width: 55%; }
.product-hero-text { font-size: 15px; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: 32px; max-width: 50%; }
@media (max-width: 768px) {
  .product-hero-title, .product-hero-text { max-width: 100%; }
}
.product-quick-links { display: flex; gap: 8px; flex-wrap: wrap; }
.product-quick-link { padding: 8px 16px; border: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.7); border-radius: 6px; font-size: 12px; font-weight: 500; cursor: pointer; transition: 0.15s; text-decoration: none; background: transparent; font-family: var(--font-body); }
.product-quick-link:hover { border-color: rgba(255, 255, 255, 0.5); color: rgb(255, 255, 255); }
.product-hero-img { display: none; }
.hero-product-ph video { position: absolute; inset: 0px; width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.anchor-nav { position: sticky; top: var(--header-height); z-index: 40; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px); border-bottom: 1px solid rgb(232, 232, 232); display: flex; padding: 0px 80px; overflow-x: auto; scrollbar-width: none; }
@media (max-width: 768px) {
  .anchor-nav { top: 56px; padding: 0px 16px; }
}
.site[data-theme="dark"] .anchor-nav { background: rgba(10, 10, 10, 0.92); border-color: rgb(42, 42, 42); }
.anchor-nav::-webkit-scrollbar { display: none; }
.anchor-nav-link { padding: 12px 16px; font-size: 13px; font-weight: 500; color: rgb(102, 102, 102); text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap; transition: 0.15s; cursor: pointer; background: transparent; border-left: none; border-right: none; border-top: none; font-family: var(--font-body); }
.anchor-nav-link:hover { color: rgb(17, 17, 17); }
.site[data-theme="dark"] .anchor-nav-link { color: rgb(136, 136, 136); }
.site[data-theme="dark"] .anchor-nav-link:hover { color: rgb(240, 240, 240); }
.anchor-nav-link.active { color: rgb(0, 82, 204); border-bottom-color: rgb(0, 82, 204); }
.site[data-theme="dark"] .anchor-nav-link.active { color: rgb(77, 142, 255); border-bottom-color: rgb(77, 142, 255); }
.sp-full { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.sp-full-img { background: rgb(17, 17, 17); display: flex; align-items: center; justify-content: center; font-size: 64px; color: rgb(34, 34, 34); min-height: 360px; position: relative; overflow: hidden; }
.sp-full-img video { position: absolute; inset: 0px; width: 100%; height: 100%; object-fit: cover; }
.sp-full-content { padding: 60px; display: flex; flex-direction: column; justify-content: center; background: rgb(255, 255, 255); }
.site[data-theme="dark"] .sp-full-content { background: rgb(10, 10, 10); }
.sp-half-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgb(240, 240, 240); }
.site[data-theme="dark"] .sp-half-grid { background: rgb(26, 26, 26); }
.sp-half-item { background: rgb(255, 255, 255); padding: 40px; }
.site[data-theme="dark"] .sp-half-item { background: rgb(10, 10, 10); }
.sp-half-img { width: 100%; aspect-ratio: 16 / 9; background: rgb(240, 240, 240); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 36px; color: rgb(204, 204, 204); margin-bottom: 20px; position: relative; overflow: hidden; }
.site[data-theme="dark"] .sp-half-img { background: rgb(30, 30, 30); color: rgb(51, 51, 51); }
.sp-half-img video { position: absolute; inset: 0px; width: 100%; height: 100%; object-fit: cover; }
.sp-compact { padding: 32px 80px; display: flex; gap: 32px; align-items: flex-start; border-bottom: 1px solid rgb(240, 240, 240); }
.site[data-theme="dark"] .sp-compact { border-color: rgb(30, 30, 30); }
.sp-compact:last-of-type { border-bottom: none; }
.sp-compact-icon { font-size: 32px; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.sp-compact-icon img { width: 100%; height: 100%; object-fit: contain; }
.sp-compact-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sp-compact-text { font-size: 14px; color: rgb(102, 102, 102); line-height: 1.6; }
.site[data-theme="dark"] .sp-compact-text { color: rgb(136, 136, 136); }
.sp-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; padding: 40px 80px; }
.sp-card { background: rgb(245, 245, 245); border-radius: 12px; padding: 24px; }
.site[data-theme="dark"] .sp-card { background: rgb(20, 20, 20); }
.sp-card-icon { font-size: 32px; margin-bottom: 12px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: flex-start; }
.sp-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.sp-card-title { font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.sp-card-text { font-size: 13px; color: rgb(102, 102, 102); line-height: 1.5; }
.site[data-theme="dark"] .sp-card-text { color: rgb(136, 136, 136); }
.sp-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgb(0, 82, 204); margin-bottom: 12px; }
.site[data-theme="dark"] .sp-eyebrow { color: rgb(77, 142, 255); }
.sp-title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 36px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.sp-text { font-size: 15px; color: rgb(85, 85, 85); line-height: 1.75; }
.site[data-theme="dark"] .sp-text { color: rgb(153, 153, 153); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.gallery-item { aspect-ratio: 1 / 1; background: rgb(240, 240, 240); display: flex; align-items: center; justify-content: center; font-size: 32px; color: rgb(204, 204, 204); cursor: pointer; overflow: hidden; position: relative; transition: 0.2s; }
.site[data-theme="dark"] .gallery-item { background: rgb(30, 30, 30); color: rgb(51, 51, 51); }
.gallery-item:hover { filter: brightness(0.85); }
.spec-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.spec-table tr { border-bottom: 1px solid rgb(232, 232, 232); }
.site[data-theme="dark"] .spec-table tr { border-color: rgb(42, 42, 42); }
.spec-table th { text-align: left; padding: 12px 16px; background: rgb(245, 245, 245); font-weight: 600; width: 36%; color: rgb(68, 68, 68); font-size: 12px; }
.site[data-theme="dark"] .spec-table th { background: rgb(20, 20, 20); color: rgb(136, 136, 136); }
.spec-table td { padding: 12px 16px; color: rgb(51, 51, 51); }
.site[data-theme="dark"] .spec-table td { color: rgb(204, 204, 204); }
.spec-table tr:last-child { border-bottom: none; }
.spec-note { font-size: 12px; color: rgb(136, 136, 136); margin-top: 12px; line-height: 1.6; }
.faq-item { border-bottom: 1px solid rgb(232, 232, 232); }
.site[data-theme="dark"] .faq-item { border-color: rgb(42, 42, 42); }
.faq-q { padding: 16px 0px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: "+"; font-size: 20px; font-weight: 300; flex-shrink: 0; }
.faq-q.open::after { content: "−"; }
.faq-a { font-size: 13px; color: rgb(102, 102, 102); line-height: 1.7; padding-bottom: 16px; display: none; }
.site[data-theme="dark"] .faq-a { color: rgb(136, 136, 136); }
.faq-a.open { display: block; }
.buy-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.buy-link { padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; transition: 0.15s; display: flex; align-items: center; gap: 8px; font-family: var(--font-body); border: none; }
.buy-link-primary { background: rgb(0, 82, 204); color: rgb(255, 255, 255); }
.buy-link-primary:hover { background: rgb(0, 61, 153); }
.buy-link-outline { background: transparent; color: rgb(51, 51, 51); border: 2px solid rgb(232, 232, 232); }
.site[data-theme="dark"] .buy-link-outline { color: rgb(204, 204, 204); border-color: rgb(42, 42, 42); }
.buy-link-outline:hover { border-color: rgb(153, 153, 153); }
.support-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.support-card { background: rgb(245, 245, 245); border-radius: 12px; padding: 28px; cursor: pointer; transition: 0.2s; border: 2px solid transparent; text-decoration: none; color: inherit; display: block; }
.site[data-theme="dark"] .support-card { background: rgb(20, 20, 20); }
.support-card:hover { border-color: rgb(0, 82, 204); background: rgb(240, 244, 255); }
.site[data-theme="dark"] .support-card:hover { background: rgb(13, 31, 60); }
.support-icon { font-size: 36px; margin-bottom: 12px; }
.support-card-title { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.support-card-text { font-size: 13px; color: rgb(102, 102, 102); line-height: 1.5; }
.site[data-theme="dark"] .support-card-text { color: rgb(136, 136, 136); }
.contact-form { max-width: 600px; }
.s-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.s-form-group { margin-bottom: 20px; }
.s-form-label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: rgb(68, 68, 68); }
.site[data-theme="dark"] .s-form-label { color: rgb(170, 170, 170); }
.s-form-input, .s-form-select, .s-form-textarea { width: 100%; padding: 10px 14px; border: 1px solid rgb(224, 224, 224); border-radius: 8px; font-family: var(--font-body); font-size: 14px; color: rgb(17, 17, 17); background: rgb(255, 255, 255); transition: 0.15s; outline: none; }
.site[data-theme="dark"] .s-form-input, .site[data-theme="dark"] .s-form-select, .site[data-theme="dark"] .s-form-textarea { background: rgb(30, 30, 30); border-color: rgb(42, 42, 42); color: rgb(240, 240, 240); }
.s-form-input:focus, .s-form-select:focus, .s-form-textarea:focus { border-color: rgb(0, 82, 204); box-shadow: rgba(0, 82, 204, 0.1) 0px 0px 0px 3px; }
.s-form-textarea { resize: vertical; min-height: 120px; }
.site-footer { background: rgb(10, 10, 10); color: rgba(255, 255, 255, 0.6); padding: 60px 80px 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 24px; margin-bottom: 48px; }
.footer-col-title { font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.3); margin-bottom: 12px; }
.footer-link { display: block; font-size: 13px; color: rgba(255, 255, 255, 0.5); text-decoration: none; padding: 3px 0px; transition: color 0.15s; }
.footer-link:hover { color: rgba(255, 255, 255, 0.9); }
.footer-divider { border-right: none; border-bottom: none; border-left: none; border-image: initial; border-top: 1px solid rgba(255, 255, 255, 0.08); margin: 0px 0px 24px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: rgba(255, 255, 255, 0.3); }
.footer-sns { display: flex; gap: 12px; }
.footer-sns-link { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.4); font-size: 14px; text-decoration: none; transition: 0.15s; cursor: pointer; }
.footer-sns-link:hover { border-color: rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.9); background: rgba(255, 255, 255, 0.05); }
.footer-copy { font-size: 11px; color: rgba(255, 255, 255, 0.25); }
@media (max-width: 768px) {
  .s-section { padding: 48px 24px; }
  .s-breadcrumb { padding: 12px 24px; }
  .site-header { padding: 12px 20px; gap: 12px; flex-wrap: wrap; height: var(--header-height); justify-content: space-between; }
  .site-logo { order: 1; margin-right: auto; }
  .site-search { order: 2; flex: 0 0 auto; width: auto; min-width: auto; }
  .site-nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; margin-top: 4px; }
  .site-nav::-webkit-scrollbar { display: none; }
  .notice-grid { grid-template-columns: 1fr; }
  .product-list-layout { flex-direction: column; gap: 16px; }
  .cat-sidebar { width: calc(100% + 48px); margin: 0px -24px 16px; padding: 12px 24px 16px; background: rgb(255, 255, 255); z-index: 100; top: var(--header-height); display: flex; flex-wrap: wrap; gap: 8px; position: sticky; box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px; }
  .site[data-theme="dark"] .cat-sidebar { background: rgb(10, 10, 10); }
  .cat-sidebar::-webkit-scrollbar { display: none; }
  .cat-sidebar-title { display: none; }
  .cat-sidebar-item { display: inline-block; margin: 0px; padding: 6px 12px; font-size: 12px; border: 1px solid rgb(232, 232, 232); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-img { aspect-ratio: 1 / 1; font-size: 24px; }
  .product-body { padding: 12px; }
  .product-name { font-size: 13px; line-height: 1.4; }
  .product-desc { display: none; }
  .hero-slide { padding: 40px 24px; min-height: 400px; display: flex; flex-direction: column; justify-content: center; }
  .hero-img-side { display: none; }
  .hero-title { font-size: clamp(28px, 6vw, 40px); margin-bottom: 12px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .product-hero { margin-top: var(--header-height); padding: 60px 16px; flex-direction: column; gap: 0px; min-height: 480px; position: relative; justify-content: center; text-align: center; background-image: var(--bg-sp-url) !important; }
  .product-hero::before { background: rgba(0, 0, 0, 0.4); }
  .product-hero-content { position: relative; z-index: 2; text-shadow: rgba(0, 0, 0, 0.8) 0px 2px 10px; width: 100%; }
  .product-quick-links { justify-content: center; }
  .sp-full { display: flex; flex-direction: column; }
  .sp-full-content { display: contents; }
  .sp-full .sp-title { order: 1; padding: 32px 20px 8px; background: rgb(255, 255, 255); }
  .sp-full .sp-eyebrow { order: 2; padding: 0px 20px 20px; background: rgb(255, 255, 255); margin-bottom: 0px; }
  .site[data-theme="dark"] .sp-full .sp-title, .site[data-theme="dark"] .sp-full .sp-eyebrow, .site[data-theme="dark"] .sp-full .sp-text { background: rgb(10, 10, 10); }
  .sp-full-img { order: 3; }
  .sp-full-img[data-bg-sp]:not([data-bg-sp=""]) { background-image: var(--bg-sp-url-full) !important; }
  .sp-full .sp-text { order: 4; padding: 24px 20px 40px; background: rgb(255, 255, 255); }
  .sp-half-grid { grid-template-columns: 1fr; gap: 0px; }
  .sp-half-item { padding: 32px 20px; display: flex; flex-direction: column; }
  .sp-half-item .sp-title { order: 1; margin-bottom: 8px; }
  .sp-half-item .sp-eyebrow { order: 2; margin-bottom: 20px; }
  .sp-half-item .sp-half-img { order: 3; margin-bottom: 20px; }
  .sp-half-item .sp-text { order: 4; }
  .sp-compact { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .sp-card-grid { padding: 24px 20px; grid-template-columns: 1fr; }
  .anchor-nav { padding: 0px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding: 48px 20px 24px; }
  .s-form-row { grid-template-columns: 1fr; }
  .responsive-grid[data-cols-sp="1"] { grid-template-columns: 1fr !important; }
  .responsive-grid[data-cols-sp="2"] { grid-template-columns: repeat(2, 1fr) !important; }
  .responsive-grid[data-cols-sp="3"] { grid-template-columns: repeat(3, 1fr) !important; }
  .responsive-grid[data-cols-sp="4"] { grid-template-columns: repeat(4, 1fr) !important; }
  .responsive-grid[data-cols-sp="5"] { grid-template-columns: repeat(5, 1fr) !important; }
  .responsive-grid[data-cols-sp="6"] { grid-template-columns: repeat(6, 1fr) !important; }
}
@media (min-width: 769px) {
  .responsive-grid[data-cols="1"] { grid-template-columns: 1fr; }
  .responsive-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
  .responsive-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
  .responsive-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
  .responsive-grid[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
  .responsive-grid[data-cols="6"] { grid-template-columns: repeat(6, 1fr); }
}
.site-footer-light { background: rgb(255, 255, 255); border-top: 1px solid rgb(224, 228, 234); color: rgb(51, 51, 51); }
.site-footer-light .footer-col-title { color: rgb(26, 26, 46); }
.site-footer-light .footer-link { color: rgb(85, 85, 85); }
.site-footer-light .footer-link:hover { color: rgb(0, 82, 204); }
.site-footer-light .footer-divider { border-color: rgb(224, 228, 234); }
.site-footer-light .footer-brand { color: rgb(26, 26, 46); font-weight: 700; }
.site-footer-light .footer-copy { color: rgb(136, 136, 136); }
.site-footer-light .footer-sns-link { background: rgb(240, 242, 245); color: rgb(51, 51, 51); }
.site-footer-light .footer-sns-link:hover { background: rgb(0, 82, 204); color: rgb(255, 255, 255); }
.s-extra-wrap { padding: 0 var(--site-pad, 48px); }
.extra-table-wrap { overflow-x: auto; }
.extra-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.extra-table th { background: rgb(240, 244, 248); color: rgb(26, 26, 46); font-weight: 600; padding: 10px 14px; border: 1px solid rgb(208, 215, 224); text-align: left; }
.extra-table td { padding: 9px 14px; border: 1px solid rgb(224, 228, 234); color: rgb(51, 51, 51); }
.extra-table tr:nth-child(2n) td { background: rgb(248, 250, 252); }
.extra-table-caption { font-size: 12px; color: rgb(136, 136, 136); margin-top: 8px; text-align: right; }
[data-theme="dark"] .extra-table th { background: rgb(42, 45, 62); color: rgb(224, 224, 224); border-color: rgb(58, 61, 80); }
[data-theme="dark"] .extra-table td { border-color: rgb(58, 61, 80); color: rgb(204, 204, 204); }
[data-theme="dark"] .extra-table tr:nth-child(2n) td { background: rgb(30, 32, 48); }
[data-theme="dark"] .site-footer-light { background: rgb(26, 28, 46); border-color: rgb(42, 45, 62); color: rgb(204, 204, 204); }
[data-theme="dark"] .site-footer-light .footer-col-title { color: rgb(224, 224, 224); }
[data-theme="dark"] .site-footer-light .footer-link { color: rgb(170, 170, 170); }
[data-theme="dark"] .site-footer-light .footer-brand { color: rgb(224, 224, 224); }
[data-theme="dark"] .site-footer-light .footer-copy { color: rgb(102, 102, 102); }
[data-theme="dark"] .site-footer-light .footer-divider { border-color: rgb(42, 45, 62); }
[data-theme="dark"] .site-footer-light .footer-sns-link { background: rgb(42, 45, 62); color: rgb(204, 204, 204); }
.blank-section { width: 100%; box-sizing: border-box; }
.blank-cell { min-width: 0px; box-sizing: border-box; }
@media (max-width: 768px) {
  .blank-section[data-cols-sp="1"] { grid-template-columns: 1fr !important; }
  .blank-section[data-cols-sp="2"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .blank-section { grid-template-columns: 1fr !important; }
}
.export-menu-item { display: block; width: 100%; padding: 8px 14px; text-align: left; background: transparent; border: none; font-size: 12px; color: var(--text); cursor: pointer; white-space: nowrap; transition: background 0.1s; line-height: 1.5; }
.export-menu-item:hover { background: var(--bg2); }
[data-ce-target] { cursor: pointer; transition: outline 0.1s; }
[data-ce-target]:hover { outline: rgb(0, 82, 204) dashed 2px; outline-offset: 2px; }
