/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #2d1a3d;
    --secondary: #4a276b;
    --accent: #9d4edd;
    --gold: #00f5d4;
    --light: #f0f0f0;
    --gray: #888;
    --radius: 12px;
    --shadow: 0 8px 32px rgba(0,0,0,0.18);
    --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: #fafafa; color: #222; line-height: 1.7; font-size: 16px; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sec { padding: 70px 0; }
.alt { background: #f5f7fa; }
.tc { text-align: center; }
.sec-title { font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
.sec-title span { color: var(--accent); }
.sec-sub { color: #666; max-width: 680px; margin-bottom: 40px; }
.tc .sec-sub { margin-left: auto; margin-right: auto; }

/* ===== breadcrumb ===== */
.bc { background: #f5f5f5; padding: 10px 0; font-size: 13px; color: #666; }
.bc a { color: #666; }
.bc a:hover { color: var(--accent); }
.bc .bc-sep { margin: 0 8px; color: #bbb; }

/* ===== friend links ===== */
.flinks { background: #f7f8fa; padding: 32px 0; border-top: 1px solid #e8ecf2; }
.flinks .fl-title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.flinks ul { list-style: none; display: flex; flex-wrap: wrap; gap: 9px 24px; }
.flinks a { color: #666; font-size: 13px; }
.flinks a:hover { color: var(--accent); }
.flinks.g2 ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 26px; }
.flinks.g2 a { position: relative; padding-left: 13px; }
.flinks.g2 a::before { content: ''; position: absolute; left: 0; top: 50%; margin-top: -2px; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.flinks.col ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 11px 22px; }
.flinks.col a { display: block; padding: 7px 12px; background: #fff; border-radius: calc(var(--radius) - 4px); border: 1px solid #e8ecf2; }
.flinks.col a:hover { border-color: var(--accent); }
@media (max-width: 768px) {
    .flinks.g2 ul, .flinks.col ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ===== modal ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity var(--transition); padding: 20px; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-box { background: #fff; border-radius: var(--radius); max-width: 560px; width: 100%; padding: 30px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border: none; background: #f0f0f0; border-radius: 50%; cursor: pointer; font-size: 18px; line-height: 1; color: #444; }
.modal-box h2 { font-size: 24px; margin-bottom: 8px; color: var(--primary); }
.modal-box .m-year { color: #888; margin-bottom: 16px; }
.modal-box .m-desc { color: #555; line-height: 1.8; margin-bottom: 16px; }
.modal-box .m-meta { color: var(--accent); font-size: 14px; font-weight: 600; }

/* ===== demo -> detail links (works cards / faq questions become real anchors) ===== */
a.wk1-btn { display: inline-block; text-align: center; }
.fq1-link { color: inherit; }
.fq1-link:hover { color: var(--accent); }

.nv6-bar { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.1); }
.nv6-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 62px; flex-wrap: wrap; }
.nv6-toggle { position: absolute; top: 0; left: 0; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.nv6-logo { display: flex; align-items: center; gap: 9px; color: var(--primary); text-decoration: none; white-space: nowrap; }
.nv6-ico { font-size: 22px; line-height: 1; }
.nv6-kw { font-size: 20px; font-weight: 800; letter-spacing: 1px; }
.nv6-kw em { font-style: normal; color: var(--accent); }
.nv6-brand { font-size: 12px; color: var(--gray); padding-left: 9px; border-left: 1px solid rgba(0,0,0,0.14); }
.nv6-burger { display: none; }
.nv6-drawer { display: block; }
.nv6-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nv6-menu a { display: block; padding: 8px 14px; font-size: 14px; color: #3d3d3d; border-radius: var(--radius); text-decoration: none; }
.nv6-menu a:hover { background: var(--light); color: var(--accent); }
@media (max-width:768px) {
    .nv6-burger { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 42px; height: 42px; border: 1px solid rgba(0,0,0,0.16); border-radius: var(--radius); cursor: pointer; }
    .nv6-burger span { display: block; width: 20px; height: 2px; background: var(--primary); transition: transform 0.28s ease, opacity 0.28s ease; }
    .nv6-drawer { order: 9; width: 100%; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .nv6-menu { flex-direction: column; align-items: stretch; gap: 0; }
    .nv6-menu a { padding: 12px 4px; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,0.07); border-radius: 0; }
    .nv6-toggle:checked ~ .nv6-drawer { max-height: 460px; }
    .nv6-toggle:checked ~ .nv6-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nv6-toggle:checked ~ .nv6-burger span:nth-child(2) { opacity: 0; }
    .nv6-toggle:checked ~ .nv6-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nv6-ico { font-size: 19px; }
    .nv6-kw { font-size: 18px; }
    .nv6-brand { font-size: 11px; padding-left: 8px; }
}
.hr2-hero {
    padding: 76px 0;
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 52%, var(--light) 100%);
}
.hr2-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.hr2-copy {
    max-width: 560px;
}
.hr2-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent);
    background: var(--light);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}
.hr2-title {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.22;
}
.hr2-title em {
    color: var(--accent);
    font-style: normal;
}
.hr2-desc {
    margin-bottom: 30px;
    color: #555;
    font-size: 16px;
    line-height: 1.9;
}
.hr2-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hr2-btn {
    padding: 13px 34px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hr2-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
.hr2-link {
    padding-bottom: 2px;
    border-bottom: 2px solid var(--gold);
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
}
.hr2-link:hover {
    color: var(--accent);
}
.hr2-figure {
    position: relative;
}
.hr2-figure::before {
    content: '';
    position: absolute;
    top: -18px;
    right: -18px;
    width: 58%;
    height: 58%;
    border-top: 6px solid var(--accent);
    border-right: 6px solid var(--accent);
    border-radius: 0 var(--radius) 0 0;
}
.hr2-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hr2-tag {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 20px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .hr2-hero {
        padding: 46px 0;
    }
    .hr2-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hr2-title {
        font-size: 28px;
    }
    .hr2-desc {
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.75;
    }
    .hr2-figure::before {
        display: none;
    }
    .hr2-btn {
        padding: 11px 24px;
        font-size: 14px;
    }
    .hr2-label {
        font-size: 12px;
        margin-bottom: 14px;
    }
}
.it9-head { margin-bottom: 30px; }
.it9-head .sec-sub { margin-bottom: 0; }
.it9-quote { max-width: 880px; margin: 0 auto 32px; text-align: center; }
.it9-mark { display: block; margin-bottom: 12px; font-size: 52px; line-height: .8; color: var(--accent); opacity: .32; }
.it9-quote p { margin: 0; font-family: var(--font); font-size: 24px; line-height: 1.7; font-weight: 700; color: var(--primary); }
.it9-quote p strong { color: var(--accent); }
.it9-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 880px; margin: 0 auto 40px; border-top: 1px solid rgba(0, 0, 0, .1); border-bottom: 1px solid rgba(0, 0, 0, .1); }
.it9-stats .it1-stat { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 22px 10px; text-align: center; background: none; border: 0; border-left: 0; border-radius: 0; border-right: 1px solid rgba(0, 0, 0, .1); }
.it9-stats .it1-stat:last-child { border-right: 0; }
.it9-stats .it1-num { font-size: 30px; line-height: 1.1; color: var(--accent); }
.it9-stats .it1-lbl { font-size: 13px; color: #666; }
.it9-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; max-width: 880px; margin: 0 auto; }
.it9-notes p { margin: 0; padding-left: 20px; border-left: 3px solid rgba(0, 0, 0, .08); color: #555; line-height: 1.9; font-size: 15px; }
.it9-notes p strong { color: var(--primary); }
@media (max-width: 768px) {
    .it9-head { margin-bottom: 24px; }
    .it9-quote { margin-bottom: 24px; }
    .it9-mark { font-size: 40px; }
    .it9-quote p { font-size: 18px; }
    .it9-stats { grid-template-columns: 1fr; margin-bottom: 28px; }
    .it9-stats .it1-stat { padding: 16px 10px; border-right: 0; border-bottom: 1px solid rgba(0, 0, 0, .1); }
    .it9-stats .it1-stat:last-child { border-bottom: 0; }
    .it9-stats .it1-num { font-size: 24px; }
    .it9-notes { grid-template-columns: 1fr; gap: 18px; }
}
.wk5-rail { position:relative }
.wk5-scroller { display:flex; gap:20px; overflow-x:auto; overflow-y:hidden; padding:4px 4px 18px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch }
.wk5-scroller::-webkit-scrollbar { height:8px }
.wk5-scroller::-webkit-scrollbar-track { border-radius:999px; background:var(--light) }
.wk5-scroller::-webkit-scrollbar-thumb { border-radius:999px; background:var(--accent) }
.wk5-scroller .wk1-item { flex:0 0 320px; max-width:320px; scroll-snap-align:start; display:flex; flex-direction:column; background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); transition:transform .3s ease }
.wk5-scroller .wk1-item:hover { transform:translateY(-6px) }
.wk5-scroller .wk1-thumb { position:relative; aspect-ratio:16/9; overflow:hidden; background:var(--light) }
.wk5-scroller .wk1-thumb img { display:block; width:100%; height:100%; object-fit:cover; transition:transform .5s ease }
.wk5-scroller .wk1-item:hover .wk1-thumb img { transform:scale(1.07) }
.wk5-scroller .wk1-badge { position:absolute; top:10px; left:10px; padding:4px 10px; border-radius:999px; background:var(--accent); color:#fff; font-size:12px }
.wk5-scroller .wk1-idx { position:absolute; right:10px; bottom:10px; color:#fff; font-size:20px; font-weight:700; line-height:1; opacity:.75 }
.wk5-scroller .wk1-info { display:flex; flex-direction:column; flex:1; padding:16px }
.wk5-scroller .wk1-head { display:flex; align-items:flex-start; justify-content:space-between; gap:10px }
.wk5-scroller .wk1-title { margin:0; font-size:17px; line-height:1.42; color:var(--primary) }
.wk5-scroller .wk1-tag { flex:none; padding:2px 9px; border-radius:999px; background:var(--light); color:var(--secondary); font-size:12px }
.wk5-scroller .wk1-meta { margin-top:8px; font-size:13px; color:var(--gray) }
.wk5-scroller .wk1-desc { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; margin:10px 0 14px; font-size:13px; line-height:1.7; color:var(--gray) }
.wk5-scroller .wk1-btn { align-self:flex-start; margin-top:auto; padding:8px 18px; border:none; border-radius:999px; background:var(--secondary); color:#fff; font-size:13px; cursor:pointer; transition:background .25s ease }
.wk5-scroller .wk1-btn:hover { background:var(--accent) }
@media (max-width:768px) {
    .wk5-scroller { gap:14px; padding:4px 4px 14px }
    .wk5-scroller .wk1-item { flex:0 0 78%; max-width:78% }
    .wk5-scroller .wk1-title { font-size:15px }
    .wk5-scroller .wk1-desc { -webkit-line-clamp:2; margin:8px 0 10px }
    .wk5-scroller::-webkit-scrollbar { height:6px }
}
.ad8-outline{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.ad8-outline > .ad1-item{position:relative;overflow:hidden;background:transparent;border:1px solid #dfe5ee;border-radius:var(--radius);padding:30px 30px 28px;transition:border-color .3s ease,transform .3s ease,box-shadow .3s ease}
.ad8-outline > .ad1-item:hover{border-color:var(--accent);transform:translateY(-4px);box-shadow:var(--shadow)}
.ad8-outline > .ad1-item::before{content:"";position:absolute;left:0;top:0;width:100%;height:3px;background:linear-gradient(90deg,var(--primary),var(--accent));opacity:0;transition:opacity .3s ease}
.ad8-outline > .ad1-item:hover::before{opacity:1}
.ad8-outline .ad1-toggle{display:none}
.ad8-outline .ad1-icon{position:relative;z-index:1;width:48px;height:48px;margin-bottom:18px;border:1px solid var(--accent);border-radius:12px;color:var(--accent);display:flex;align-items:center;justify-content:center;font-size:21px;line-height:1}
.ad8-outline .ad1-num{position:absolute;right:-6px;bottom:-26px;z-index:0;font-size:112px;font-weight:900;line-height:1;color:#f0f3f8;pointer-events:none;user-select:none}
.ad8-outline .ad1-label{display:inline}
.ad8-outline .ad1-title{position:relative;z-index:1;font-size:18px;font-weight:700;color:var(--primary);margin:0 0 10px;line-height:1.45}
.ad8-outline .ad1-desc{position:relative;z-index:1;font-size:14px;line-height:1.8;color:#666;margin:0}
@media (max-width:768px){
  .ad8-outline{grid-template-columns:1fr;gap:14px}
  .ad8-outline > .ad1-item{padding:22px 18px}
  .ad8-outline .ad1-icon{width:40px;height:40px;margin-bottom:12px;border-radius:10px;font-size:17px}
  .ad8-outline .ad1-num{right:-4px;bottom:-18px;font-size:78px}
  .ad8-outline .ad1-title{font-size:16px;margin-bottom:7px}
  .ad8-outline .ad1-desc{font-size:13px;line-height:1.75}
}
.nw4-feature { display:flex; flex-direction:column; gap:16px }
.nw4-feature .nw1-item { text-decoration:none }
.nw4-feature .nw1-item:first-child { position:relative; display:block; overflow:hidden; padding:40px 36px 38px; border-radius:var(--radius); background:linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); box-shadow:0 20px 44px rgba(15,23,42,.24) }
.nw4-feature .nw1-item:first-child::after { content:""; position:absolute; right:-50px; top:-50px; width:200px; height:200px; border-radius:50%; background:rgba(255,255,255,.07) }
.nw4-feature .nw1-item:first-child .nw1-date { display:inline-block; padding:5px 16px; border-radius:999px; background:var(--gold); color:#1f2937; font-size:13px; font-weight:600; letter-spacing:.5px }
.nw4-feature .nw1-item:first-child .nw1-title { display:block; position:relative; z-index:1; max-width:760px; margin-top:18px; font-size:27px; line-height:1.4; font-weight:700; color:#fff; transition:color .3s ease }
.nw4-feature .nw1-item:first-child:hover .nw1-title { color:var(--gold) }
.nw4-feature .nw1-item:first-child .nw1-idx { position:absolute; right:28px; bottom:2px; font-size:86px; font-weight:800; line-height:1; color:rgba(255,255,255,.1) }
.nw4-feature .nw1-item:not(:first-child) { display:grid; grid-template-columns:112px minmax(0,1fr) auto; align-items:center; column-gap:18px; padding:16px 22px; background:#fff; border-radius:var(--radius); box-shadow:var(--shadow); transition:transform .25s ease, box-shadow .25s ease }
.nw4-feature .nw1-item:not(:first-child):hover { transform:translateX(6px); box-shadow:0 14px 28px rgba(15,23,42,.14) }
.nw4-feature .nw1-item:not(:first-child) .nw1-date { font-size:13px; letter-spacing:.5px; color:var(--accent) }
.nw4-feature .nw1-item:not(:first-child) .nw1-title { min-width:0; font-size:16px; line-height:1.5; font-weight:600; color:var(--primary); transition:color .25s ease }
.nw4-feature .nw1-item:not(:first-child):hover .nw1-title { color:var(--accent) }
.nw4-feature .nw1-item:not(:first-child) .nw1-idx { display:flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:var(--light); color:var(--gray); font-size:12px }
@media (max-width:768px) {
    .nw4-feature { gap:10px }
    .nw4-feature .nw1-item:first-child { padding:26px 20px 28px }
    .nw4-feature .nw1-item:first-child .nw1-date { padding:4px 12px; font-size:12px }
    .nw4-feature .nw1-item:first-child .nw1-title { margin-top:12px; font-size:19px }
    .nw4-feature .nw1-item:first-child .nw1-idx { right:16px; font-size:56px }
    .nw4-feature .nw1-item:not(:first-child) { grid-template-columns:minmax(0,1fr) auto; column-gap:10px; row-gap:4px; padding:13px 15px }
    .nw4-feature .nw1-item:not(:first-child) .nw1-date { grid-column:1; grid-row:1; font-size:12px }
    .nw4-feature .nw1-item:not(:first-child) .nw1-title { grid-column:1; grid-row:2; font-size:14px }
    .nw4-feature .nw1-item:not(:first-child) .nw1-idx { grid-column:2; grid-row:1 / span 2; width:22px; height:22px; font-size:11px }
}
.fq3-tabs { position:relative; display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); grid-template-rows:auto auto; column-gap:8px; row-gap:16px }
.fq3-tabs .fq3-r { position:absolute; top:0; left:0; width:1px; height:1px; margin:0; border:0; opacity:0; appearance:none; -webkit-appearance:none }
.fq3-tabs .fq3-hit { position:absolute; top:0; z-index:3; height:56px; cursor:pointer }
.fq3-tabs .fq3-hit:nth-of-type(1) { left:0; width:calc((100% - 32px) / 5) }
.fq3-tabs .fq3-hit:nth-of-type(2) { left:calc((100% - 32px) / 5 + 8px); width:calc((100% - 32px) / 5) }
.fq3-tabs .fq3-hit:nth-of-type(3) { left:calc((200% - 64px) / 5 + 16px); width:calc((100% - 32px) / 5) }
.fq3-tabs .fq3-hit:nth-of-type(4) { left:calc((300% - 96px) / 5 + 24px); width:calc((100% - 32px) / 5) }
.fq3-tabs .fq3-hit:nth-of-type(5) { left:calc((400% - 128px) / 5 + 32px); width:calc((100% - 32px) / 5) }
.fq3-tabs .fq1-item { display:contents }
.fq3-tabs .fq1-q { display:flex; align-items:center; justify-content:center; height:56px; padding:0 10px; overflow:hidden; border:1px solid #e2e8f0; border-radius:var(--radius); background:#fff; font-size:13px; line-height:1.35; font-weight:600; color:var(--primary); text-align:center; transition:background .25s ease, color .25s ease, border-color .25s ease }
.fq3-tabs .fq1-no { display:none }
.fq3-tabs .fq1-item:nth-of-type(1) .fq1-q { grid-column:1; grid-row:1 }
.fq3-tabs .fq1-item:nth-of-type(2) .fq1-q { grid-column:2; grid-row:1 }
.fq3-tabs .fq1-item:nth-of-type(3) .fq1-q { grid-column:3; grid-row:1 }
.fq3-tabs .fq1-item:nth-of-type(4) .fq1-q { grid-column:4; grid-row:1 }
.fq3-tabs .fq1-item:nth-of-type(5) .fq1-q { grid-column:5; grid-row:1 }
.fq3-tabs .fq1-a { grid-row:2; grid-column:1 / -1; max-height:0; overflow:hidden; opacity:0; transition:max-height .4s ease, opacity .35s ease }
.fq3-tabs .fq1-a-in { padding:20px 24px; border:1px solid #e2e8f0; border-top:2px solid var(--accent); border-radius:var(--radius); background:#fff; font-size:14px; line-height:1.85; color:var(--gray) }
#fq3r1:checked ~ .fq1-item:nth-of-type(1) .fq1-q { background:var(--primary); border-color:var(--primary); color:#fff }
#fq3r2:checked ~ .fq1-item:nth-of-type(2) .fq1-q { background:var(--primary); border-color:var(--primary); color:#fff }
#fq3r3:checked ~ .fq1-item:nth-of-type(3) .fq1-q { background:var(--primary); border-color:var(--primary); color:#fff }
#fq3r4:checked ~ .fq1-item:nth-of-type(4) .fq1-q { background:var(--primary); border-color:var(--primary); color:#fff }
#fq3r5:checked ~ .fq1-item:nth-of-type(5) .fq1-q { background:var(--primary); border-color:var(--primary); color:#fff }
#fq3r1:checked ~ .fq1-item:nth-of-type(1) .fq1-a { max-height:600px; opacity:1 }
#fq3r2:checked ~ .fq1-item:nth-of-type(2) .fq1-a { max-height:600px; opacity:1 }
#fq3r3:checked ~ .fq1-item:nth-of-type(3) .fq1-a { max-height:600px; opacity:1 }
#fq3r4:checked ~ .fq1-item:nth-of-type(4) .fq1-a { max-height:600px; opacity:1 }
#fq3r5:checked ~ .fq1-item:nth-of-type(5) .fq1-a { max-height:600px; opacity:1 }
@media (max-width:768px) {
    .fq3-tabs { grid-template-columns:minmax(0,1fr); grid-template-rows:auto auto auto auto auto auto; column-gap:0; row-gap:12px }
    .fq3-tabs .fq1-q { height:48px; justify-content:flex-start; padding:0 14px; font-size:14px; text-align:left }
    .fq3-tabs .fq1-item:nth-of-type(1) .fq1-q { grid-column:1; grid-row:1 }
    .fq3-tabs .fq1-item:nth-of-type(2) .fq1-q { grid-column:1; grid-row:2 }
    .fq3-tabs .fq1-item:nth-of-type(3) .fq1-q { grid-column:1; grid-row:3 }
    .fq3-tabs .fq1-item:nth-of-type(4) .fq1-q { grid-column:1; grid-row:4 }
    .fq3-tabs .fq1-item:nth-of-type(5) .fq1-q { grid-column:1; grid-row:5 }
    .fq3-tabs .fq1-a { grid-column:1; grid-row:6 }
    .fq3-tabs .fq3-hit:nth-of-type(n) { left:0; width:100%; height:48px }
    .fq3-tabs .fq3-hit:nth-of-type(1) { top:0 }
    .fq3-tabs .fq3-hit:nth-of-type(2) { top:60px }
    .fq3-tabs .fq3-hit:nth-of-type(3) { top:120px }
    .fq3-tabs .fq3-hit:nth-of-type(4) { top:180px }
    .fq3-tabs .fq3-hit:nth-of-type(5) { top:240px }
    .fq3-tabs .fq1-a-in { padding:14px 16px; font-size:13px }
}
.cm8-flow { position:relative; padding-left:6px }
.cm8-flow::before { content:""; position:absolute; top:8px; bottom:8px; left:32px; width:2px; background:linear-gradient(180deg,var(--accent),rgba(15,23,42,.06)) }
.cm8-flow .cm1-item { position:relative; padding:0 0 30px 84px; min-height:64px }
.cm8-flow .cm1-item:last-child { padding-bottom:0 }
.cm8-flow .cm1-head { position:absolute; left:0; top:0; display:flex; flex-direction:column; align-items:center; gap:6px; width:64px }
.cm8-flow .cm1-av { width:46px; height:46px; border-radius:50%; object-fit:cover; background:var(--light); border:3px solid #fff; box-shadow:0 4px 12px rgba(15,23,42,.16) }
.cm8-flow .cm1-who { display:flex; flex-direction:column; align-items:center; gap:1px; width:100% }
.cm8-flow .cm1-name { font-size:11px; font-weight:600; line-height:1.35; text-align:center; color:var(--primary); word-break:break-all }
.cm8-flow .cm1-date { font-size:11px; color:var(--gray); white-space:nowrap }
.cm8-flow .cm1-text { margin:0; padding:16px 20px; background:#fff; border:1px solid #e8ecf2; border-left:3px solid var(--accent); border-radius:0 var(--radius) var(--radius) 0; box-shadow:var(--shadow); font-size:14px; line-height:1.85; color:#4b5563 }
.cm8-flow .cm1-item:nth-child(even) .cm1-text { border-left-color:var(--secondary) }
.cm8-flow .cm1-idx { display:none }
.cm8-flow .cm1-initial { position:absolute; right:16px; bottom:10px; font-size:44px; font-weight:700; line-height:1; color:var(--light); pointer-events:none }
@media (max-width:768px) {
    .cm8-flow { padding-left:0 }
    .cm8-flow::before { left:22px }
    .cm8-flow .cm1-item { padding:0 0 22px 58px }
    .cm8-flow .cm1-head { width:46px; gap:4px }
    .cm8-flow .cm1-av { width:36px; height:36px; border-width:2px }
    .cm8-flow .cm1-name { font-size:10px }
    .cm8-flow .cm1-date { font-size:10px }
    .cm8-flow .cm1-text { padding:12px 14px; font-size:13px; line-height:1.75 }
    .cm8-flow .cm1-initial { font-size:30px; right:12px; bottom:8px }
}
.ft5-foot { background: var(--light); border-top: 1px solid rgba(0,0,0,0.1); padding: 32px 0; }
.ft5-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; gap: 20px; }
.ft5-left { display: flex; align-items: center; justify-content: flex-start; }
.ft5-logo { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); text-decoration: none; }
.ft5-ico { font-size: 19px; line-height: 1; }
.ft5-kw { font-size: 18px; font-weight: 800; letter-spacing: 1px; white-space: nowrap; }
.ft5-kw em { font-style: normal; color: var(--accent); }
.ft5-brand { font-size: 11px; font-weight: 500; color: var(--gray); padding-left: 8px; border-left: 1px solid rgba(0,0,0,0.14); white-space: nowrap; }
.ft5-nav { display: flex; justify-content: center; }
.ft5-menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; list-style: none; }
.ft5-menu a { font-size: 13px; color: #5b6470; text-decoration: none; }
.ft5-menu a:hover { color: var(--primary); }
.ft5-right { text-align: right; }
.ft5-line { font-size: 12px; line-height: 1.8; color: #6b7280; }
.ft5-dom { display: block; margin-top: 4px; font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--primary); }
@media (max-width:768px) {
    .ft5-foot { padding: 24px 0; }
    .ft5-grid { grid-template-columns: 1fr; gap: 14px; }
    .ft5-left { justify-content: center; }
    .ft5-ico { font-size: 17px; }
    .ft5-kw { font-size: 16px; }
    .ft5-brand { font-size: 10px; }
    .ft5-menu { gap: 6px 14px; }
    .ft5-menu a { font-size: 12px; }
    .ft5-right { text-align: center; }
    .ft5-line { font-size: 11px; }
    .ft5-dom { font-size: 11px; }
}


@media (max-width: 768px) {
    .sec { padding: 50px 0; }
    .sec-title { font-size: 26px; }
}
