/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #2b1a1a;
    --secondary: #3d2424;
    --accent: #ff7675;
    --gold: #ffeaa7;
    --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); }

.nv3-bar { position: relative; z-index: 900; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08); }
.nv3-topin { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px; }
.nv3-logo { display: flex; align-items: center; gap: 10px; color: var(--primary); text-decoration: none; white-space: nowrap; }
.nv3-ico { font-size: 26px; line-height: 1; }
.nv3-kw { font-size: 24px; font-weight: 800; letter-spacing: 1px; }
.nv3-kw em { font-style: normal; color: var(--accent); }
.nv3-brand { font-size: 12px; font-weight: 500; color: var(--gray); padding-left: 10px; border-left: 1px solid rgba(0,0,0,0.14); }
.nv3-note { font-size: 12px; color: var(--primary); border: 1px dashed rgba(0,0,0,0.22); border-radius: 999px; padding: 5px 13px; white-space: nowrap; }
.nv3-strip { background: var(--primary); }
.nv3-menu { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; list-style: none; }
.nv3-menu a { display: block; padding: 12px 22px; font-size: 14px; color: rgba(255,255,255,0.88); text-decoration: none; border-right: 1px solid rgba(255,255,255,0.14); }
.nv3-menu li:last-child a { border-right: none; }
.nv3-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.08); }
@media (max-width:768px) {
    .nv3-topin { padding: 10px 20px; gap: 10px; }
    .nv3-ico { font-size: 21px; }
    .nv3-kw { font-size: 19px; }
    .nv3-brand { font-size: 11px; padding-left: 8px; }
    .nv3-note { display: none; }
    .nv3-menu a { padding: 10px 12px; font-size: 13px; }
}
.hr4-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    padding: 96px 0 130px;
    background: linear-gradient(135deg, var(--primary) 0%, #0e1520 52%, var(--secondary) 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.hr4-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(circle at 50% 36%, #000 0%, transparent 76%);
    mask-image: radial-gradient(circle at 50% 36%, #000 0%, transparent 76%);
}
.hr4-glow {
    position: absolute;
    top: -190px;
    left: 50%;
    width: 620px;
    height: 620px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 66%);
    opacity: 0.32;
}
.hr4-band {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.4;
    -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,0.2) 62%, transparent 100%);
    mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,0.2) 62%, transparent 100%);
}
.hr4-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}
.hr4-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    margin-bottom: 26px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}
.hr4-title {
    margin-bottom: 10px;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 6px;
}
.hr4-sub {
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 8px;
}
.hr4-desc {
    max-width: 640px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.9;
}
.hr4-btn {
    display: inline-block;
    padding: 14px 42px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.hr4-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .hr4-hero {
        min-height: 440px;
        padding: 60px 0 92px;
    }
    .hr4-chip {
        padding: 5px 14px;
        margin-bottom: 16px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    .hr4-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    .hr4-sub {
        margin-bottom: 14px;
        font-size: 14px;
        letter-spacing: 4px;
    }
    .hr4-desc {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.72;
    }
    .hr4-band {
        height: 180px;
    }
    .hr4-btn {
        padding: 11px 26px;
        font-size: 14px;
    }
}
.it2-head { max-width: 720px; margin-bottom: 34px; }
.it2-head .sec-sub { margin-bottom: 0; }
.it2-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-bottom: 46px; }
.it2-cols p { color: #555; line-height: 1.9; font-size: 15px; margin: 0; padding-top: 18px; border-top: 2px solid rgba(0, 0, 0, .06); }
.it2-cols p strong { color: var(--primary); }
.it2-bar { display: flex; background: var(--primary); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.it2-stat { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 26px 14px; text-align: center; border-right: 1px solid rgba(255, 255, 255, .16); }
.it2-stat:last-child { border-right: 0; }
.it2-num { font-size: 32px; line-height: 1; font-weight: 800; color: #fff; }
.it2-lbl { font-size: 13px; color: rgba(255, 255, 255, .72); }
@media (max-width: 768px) {
    .it2-cols { grid-template-columns: 1fr; gap: 18px; margin-bottom: 30px; }
    .it2-bar { flex-direction: column; }
    .it2-stat { flex: none; width: 100%; padding: 18px 14px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
    .it2-stat:last-child { border-bottom: 0; }
    .it2-num { font-size: 26px; }
}
.wk10-zig {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.wk10-zig .wk1-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wk10-zig .wk1-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(15,23,42,0.17);
}
.wk10-zig .wk1-thumb {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    min-height: 272px;
    overflow: hidden;
    background: var(--light);
}
.wk10-zig .wk1-item:nth-child(even) .wk1-thumb {
    grid-column: 2;
    grid-row: 1;
}
.wk10-zig .wk1-thumb img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.wk10-zig .wk1-item:hover .wk1-thumb img {
    transform: scale(1.05);
}
.wk10-zig .wk1-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
}
.wk10-zig .wk1-idx {
    position: absolute;
    left: 18px;
    bottom: 12px;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    opacity: 0.82;
}
.wk10-zig .wk1-info {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px;
    background: #fff;
}
.wk10-zig .wk1-item:nth-child(even) .wk1-info {
    grid-column: 1;
    grid-row: 1;
}
.wk10-zig .wk1-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}
.wk10-zig .wk1-title {
    margin: 0;
    color: var(--primary);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.36;
}
.wk10-zig .wk1-tag {
    flex: none;
    padding: 3px 13px;
    border-radius: 999px;
    background: var(--light);
    color: var(--secondary);
    font-size: 12px;
}
.wk10-zig .wk1-meta {
    margin-top: 10px;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
}
.wk10-zig .wk1-desc {
    margin: 14px 0 20px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.85;
}
.wk10-zig .wk1-btn {
    align-self: flex-start;
    padding: 10px 28px;
    border: 1px solid var(--primary);
    border-radius: 999px;
    background: transparent;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
.wk10-zig .wk1-btn:hover {
    background: var(--primary);
    color: #fff;
}
@media (max-width: 768px) {
    .wk10-zig {
        gap: 18px;
    }
    .wk10-zig .wk1-item {
        grid-template-columns: minmax(0, 1fr);
    }
    .wk10-zig .wk1-thumb {
        grid-column: 1;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
    .wk10-zig .wk1-item:nth-child(even) .wk1-thumb {
        grid-column: 1;
        grid-row: auto;
    }
    .wk10-zig .wk1-info {
        grid-column: 1;
        grid-row: auto;
        padding: 18px;
    }
    .wk10-zig .wk1-item:nth-child(even) .wk1-info {
        grid-column: 1;
        grid-row: auto;
    }
    .wk10-zig .wk1-badge {
        top: 10px;
        left: 10px;
        padding: 4px 11px;
    }
    .wk10-zig .wk1-idx {
        left: 12px;
        bottom: 8px;
        font-size: 22px;
    }
    .wk10-zig .wk1-title {
        font-size: 17px;
    }
    .wk10-zig .wk1-meta {
        margin-top: 8px;
        font-size: 12px;
    }
    .wk10-zig .wk1-desc {
        margin: 10px 0 14px;
        font-size: 13px;
        line-height: 1.75;
    }
    .wk10-zig .wk1-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}
.ad4-big{display:grid;grid-template-columns:repeat(3,1fr);gap:40px 42px}
.ad4-big > .ad1-item{padding-left:24px;border-left:3px solid var(--accent);background:none;border-radius:0;box-shadow:none}
.ad4-big .ad1-toggle{display:none}
.ad4-big .ad1-num{display:none}
.ad4-big .ad1-label{display:inline}
.ad4-big .ad1-icon{font-size:28px;line-height:1;margin-bottom:16px}
.ad4-big .ad1-title{font-size:27px;font-weight:800;color:var(--primary);line-height:1.3;margin:0 0 12px;letter-spacing:-.5px}
.ad4-big .ad1-desc{font-size:14px;line-height:1.85;color:#666;margin:0}
@media (max-width:768px){
  .ad4-big{grid-template-columns:1fr;gap:26px}
  .ad4-big > .ad1-item{padding-left:16px}
  .ad4-big .ad1-icon{font-size:22px;margin-bottom:10px}
  .ad4-big .ad1-title{font-size:21px;margin-bottom:8px}
  .ad4-big .ad1-desc{font-size:13px;line-height:1.75}
}
.nw2-timeline { position:relative; padding-left:30px }
.nw2-timeline::before { content:""; position:absolute; left:9px; top:8px; bottom:8px; width:2px; background:linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%) }
.nw2-timeline .nw1-item { position:relative; display:grid; grid-template-columns:104px minmax(0,1fr); align-items:center; column-gap:18px; margin-bottom:16px; padding:18px 20px; background:#fff; border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; text-decoration:none; transition:transform .3s ease, box-shadow .3s ease }
.nw2-timeline .nw1-item:last-child { margin-bottom:0 }
.nw2-timeline .nw1-item::before { content:""; position:absolute; left:-27px; top:50%; width:14px; height:14px; margin-top:-7px; box-sizing:border-box; border:3px solid #fff; border-radius:50%; background:var(--primary); box-shadow:0 0 0 2px var(--accent) }
.nw2-timeline .nw1-item:hover { transform:translateX(6px); box-shadow:0 16px 32px rgba(15,23,42,.14) }
.nw2-timeline .nw1-date { grid-column:1; grid-row:1; justify-self:start; padding:4px 12px; border-radius:999px; background:var(--light); color:var(--secondary); font-size:12px; line-height:1.6; letter-spacing:.5px; transition:background .3s ease, color .3s ease }
.nw2-timeline .nw1-title { grid-column:2; grid-row:1; min-width:0; font-size:17px; line-height:1.5; font-weight:600; color:var(--primary); transition:color .3s ease }
.nw2-timeline .nw1-idx { position:absolute; right:16px; bottom:4px; font-size:40px; font-weight:800; line-height:1; color:rgba(15,23,42,.05) }
.nw2-timeline .nw1-item:hover .nw1-date { background:var(--accent); color:#fff }
.nw2-timeline .nw1-item:hover .nw1-title { color:var(--accent) }
@media (max-width:768px) {
    .nw2-timeline { padding-left:22px }
    .nw2-timeline::before { left:6px }
    .nw2-timeline .nw1-item { grid-template-columns:minmax(0,1fr); row-gap:8px; column-gap:0; margin-bottom:12px; padding:14px 15px }
    .nw2-timeline .nw1-item::before { left:-21px; top:22px; margin-top:0; width:12px; height:12px }
    .nw2-timeline .nw1-date { grid-column:1; grid-row:1; font-size:11px; padding:3px 10px }
    .nw2-timeline .nw1-title { grid-column:1; grid-row:2; font-size:15px }
    .nw2-timeline .nw1-idx { font-size:28px; right:12px }
}
.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 }
}
.cm4-wall { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:26px; text-align:center }
.cm4-wall .cm1-item { position:relative; display:flex; flex-direction:column; align-items:center; padding:26px 18px 22px; background:#fff; border-radius:var(--radius); box-shadow:var(--shadow); transition:transform .3s ease }
.cm4-wall .cm1-item:hover { transform:translateY(-6px) }
.cm4-wall .cm1-head { display:flex; flex-direction:column; align-items:center; gap:10px }
.cm4-wall .cm1-av { width:76px; height:76px; border-radius:50%; object-fit:cover; border:3px solid var(--light); background:var(--light); box-shadow:0 8px 18px rgba(15,23,42,.14) }
.cm4-wall .cm1-who { display:flex; flex-direction:column; align-items:center; gap:4px; min-width:0 }
.cm4-wall .cm1-name { font-size:15px; font-weight:700; color:var(--primary) }
.cm4-wall .cm1-date { font-size:12px; color:var(--gray) }
.cm4-wall .cm1-text { margin:12px 0 0; font-size:13px; line-height:1.8; color:#4b5563 }
.cm4-wall .cm1-idx { position:absolute; top:14px; left:16px; font-size:12px; letter-spacing:1px; color:#c3cad6 }
.cm4-wall .cm1-initial { position:absolute; top:10px; right:14px; font-size:40px; font-weight:700; line-height:1; color:var(--light); pointer-events:none }
@media (max-width:768px) {
    .cm4-wall { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px }
    .cm4-wall .cm1-item { padding:18px 12px 16px }
    .cm4-wall .cm1-item:hover { transform:none }
    .cm4-wall .cm1-av { width:56px; height:56px; border-width:2px }
    .cm4-wall .cm1-name { font-size:14px }
    .cm4-wall .cm1-text { margin-top:10px; font-size:12px; line-height:1.75 }
    .cm4-wall .cm1-idx { top:10px; left:12px; font-size:11px }
    .cm4-wall .cm1-initial { font-size:28px; top:8px; right:10px }
}
.ft7-foot { background: var(--primary); padding: 54px 0; }
.ft7-card { display: grid; grid-template-columns: 1.25fr 1fr; align-items: center; gap: 30px; padding: 32px 36px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.ft7-logo { display: inline-flex; align-items: center; gap: 9px; color: var(--primary); text-decoration: none; }
.ft7-ico { font-size: 22px; line-height: 1; }
.ft7-kw { font-size: 20px; font-weight: 800; letter-spacing: 1px; }
.ft7-kw em { font-style: normal; color: var(--accent); }
.ft7-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; }
.ft7-line { margin-top: 12px; font-size: 13px; line-height: 1.9; color: #667085; }
.ft7-menu { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 14px; list-style: none; }
.ft7-menu a { font-size: 12px; color: var(--primary); text-decoration: none; }
.ft7-menu a:hover { color: var(--accent); }
.ft7-info { list-style: none; padding-left: 30px; border-left: 1px dashed rgba(0,0,0,0.12); }
.ft7-info li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: 12px; color: #8892a0; }
.ft7-info b { font-weight: 700; color: var(--primary); }
.ft7-dom { font-weight: 700; letter-spacing: 1px; color: var(--accent); }
@media (max-width:768px) {
    .ft7-foot { padding: 34px 0; }
    .ft7-card { grid-template-columns: 1fr; gap: 20px; padding: 24px 22px; }
    .ft7-ico { font-size: 19px; }
    .ft7-kw { font-size: 17px; }
    .ft7-brand { font-size: 10px; }
    .ft7-line { margin-top: 9px; font-size: 12px; }
    .ft7-menu { margin-top: 11px; gap: 6px 13px; }
    .ft7-menu a { font-size: 11px; }
    .ft7-info { padding-left: 0; padding-top: 14px; border-left: none; border-top: 1px dashed rgba(0,0,0,0.12); }
    .ft7-info li { padding: 6px 0; font-size: 11px; }
}


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