/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #2b2b28;
    --secondary: #3d3d38;
    --accent: #d97706;
    --gold: #fbbf24;
    --light: #f0f0f0;
    --gray: #888;
    --radius: 20px;
    --shadow: 0 8px 32px rgba(0,0,0,0.18);
    --font: "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, 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); }

.nv5-bar { position: absolute; top: 0; left: 0; right: 0; z-index: 1000; padding: 22px 0; background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0)); }
.nv5-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nv5-logo { display: flex; align-items: center; gap: 9px; color: #fff; text-decoration: none; white-space: nowrap; text-shadow: 0 2px 10px rgba(0,0,0,0.72); }
.nv5-ico { font-size: 24px; line-height: 1; }
.nv5-kw { font-size: 22px; font-weight: 800; letter-spacing: 2px; }
.nv5-kw em { font-style: normal; color: var(--gold); }
.nv5-brand { font-size: 12px; color: rgba(255,255,255,0.86); padding-left: 9px; border-left: 1px solid rgba(255,255,255,0.5); }
.nv5-menu { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px; list-style: none; }
.nv5-menu a { display: block; padding: 7px 16px; font-size: 13px; color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,0.6); border-radius: 999px; background: rgba(0,0,0,0.18); text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.nv5-menu a:hover { background: rgba(255,255,255,0.26); border-color: #fff; }
@media (max-width:768px) {
    .nv5-bar { padding: 14px 0; }
    .nv5-inner { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .nv5-ico { font-size: 20px; }
    .nv5-kw { font-size: 18px; letter-spacing: 1px; }
    .nv5-brand { font-size: 11px; }
    .nv5-menu { justify-content: center; width: 100%; gap: 6px; }
    .nv5-menu a { padding: 5px 12px; font-size: 12px; }
}
.hr9-hero {
    position: relative;
    padding-bottom: 82px;
    background: var(--light);
    overflow: hidden;
}
.hr9-visual {
    position: relative;
    height: 400px;
    background: var(--primary);
    overflow: hidden;
}
.hr9-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hr9-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.30) 100%);
}
.hr9-panel {
    position: relative;
    z-index: 2;
    margin-top: -96px;
    padding: 44px 50px 46px;
    border-top: 5px solid var(--accent);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.hr9-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 4px;
}
.hr9-eyebrow span {
    color: var(--accent);
    letter-spacing: 0;
}
.hr9-title {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.22;
}
.hr9-title span {
    display: block;
    margin-top: 10px;
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
}
.hr9-desc {
    max-width: 720px;
    margin-bottom: 28px;
    color: #555;
    font-size: 16px;
    line-height: 1.9;
}
.hr9-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hr9-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .hr9-hero {
        padding-bottom: 52px;
    }
    .hr9-visual {
        height: 230px;
    }
    .hr9-panel {
        margin-top: -62px;
        padding: 26px 22px 28px;
    }
    .hr9-eyebrow {
        margin-bottom: 12px;
        font-size: 12px;
        letter-spacing: 2px;
    }
    .hr9-title {
        margin-bottom: 12px;
        font-size: 25px;
    }
    .hr9-title span {
        margin-top: 6px;
        font-size: 15px;
        letter-spacing: 2px;
    }
    .hr9-desc {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.72;
    }
    .hr9-btn {
        padding: 11px 26px;
        font-size: 14px;
    }
}
.it3-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.it3-text { padding-right: 46px; }
.it3-text .sec-sub { color: #666; max-width: none; margin-bottom: 22px; }
.it3-text p { color: #555; line-height: 1.9; font-size: 15px; margin-bottom: 14px; }
.it3-text p:last-child { margin-bottom: 0; }
.it3-text p strong { color: var(--primary); }
.it3-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-left: 46px; border-left: 1px solid rgba(0, 0, 0, .08); }
.it3-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; aspect-ratio: 1 / 1; padding: 12px; text-align: center; background: var(--light); border: 1px solid rgba(0, 0, 0, .06); border-radius: var(--radius); }
.it3-stat:nth-child(3) { grid-column: span 2; aspect-ratio: 2 / 1; }
.it3-num { font-size: 30px; line-height: 1; font-weight: 800; color: var(--accent); }
.it3-lbl { font-size: 13px; color: #666; }
@media (max-width: 768px) {
    .it3-wrap { grid-template-columns: 1fr; }
    .it3-text { padding-right: 0; }
    .it3-boxes { margin-top: 26px; padding-left: 0; padding-top: 26px; border-left: 0; border-top: 1px solid rgba(0, 0, 0, .08); }
    .it3-stat { aspect-ratio: auto; min-height: 96px; padding: 18px 12px; }
    .it3-stat:nth-child(3) { grid-column: span 2; aspect-ratio: auto; }
    .it3-num { font-size: 24px; }
}
.wk11-split {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: 6px;
    border-top: 2px solid var(--light);
}
.wk11-split .wk1-item {
    order: 1;
    flex: 1 1 170px;
    min-width: 0;
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.wk11-split .wk1-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.wk11-split .wk1-item:first-child {
    order: 2;
    flex: 1 0 100%;
    display: grid;
    grid-template-columns: 1.45fr minmax(0, 1fr);
    margin-top: 10px;
    border: 2px solid var(--accent);
}
.wk11-split .wk1-thumb {
    position: relative;
    height: 148px;
    overflow: hidden;
    background: var(--light);
}
.wk11-split .wk1-item:first-child .wk1-thumb {
    height: auto;
    min-height: 300px;
}
.wk11-split .wk1-thumb img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.wk11-split .wk1-item:hover .wk1-thumb img {
    transform: scale(1.07);
}
.wk11-split .wk1-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 9px;
    border-radius: 999px;
    background: rgba(15,23,42,0.72);
    color: #fff;
    font-size: 11px;
    line-height: 1.7;
}
.wk11-split .wk1-item:first-child .wk1-badge {
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--gold);
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.wk11-split .wk1-idx {
    position: absolute;
    right: 9px;
    bottom: 6px;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}
.wk11-split .wk1-item:first-child .wk1-idx {
    right: 18px;
    bottom: 12px;
    font-size: 40px;
    opacity: 0.86;
}
.wk11-split .wk1-info {
    padding: 10px 12px 12px;
}
.wk11-split .wk1-item:first-child .wk1-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 32px;
}
.wk11-split .wk1-head {
    display: block;
}
.wk11-split .wk1-item:first-child .wk1-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.wk11-split .wk1-title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.wk11-split .wk1-item:first-child .wk1-title {
    display: block;
    font-size: 24px;
    line-height: 1.34;
}
.wk11-split .wk1-item:not(:first-child) .wk1-tag,
.wk11-split .wk1-item:not(:first-child) .wk1-meta,
.wk11-split .wk1-item:not(:first-child) .wk1-desc,
.wk11-split .wk1-item:not(:first-child) .wk1-btn {
    display: none;
}
.wk11-split .wk1-item:first-child .wk1-tag {
    flex: none;
    padding: 4px 13px;
    border-radius: 999px;
    background: var(--light);
    color: var(--secondary);
    font-size: 12px;
}
.wk11-split .wk1-item:first-child .wk1-meta {
    margin-top: 10px;
    color: var(--gray);
    font-size: 13px;
}
.wk11-split .wk1-item:first-child .wk1-desc {
    margin: 12px 0 20px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
}
.wk11-split .wk1-item:first-child .wk1-btn {
    align-self: flex-start;
    padding: 11px 30px;
    border: none;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.25s ease;
}
.wk11-split .wk1-item:first-child .wk1-btn:hover {
    background: var(--primary);
}
@media (max-width: 768px) {
    .wk11-split {
        gap: 12px;
    }
    .wk11-split .wk1-item {
        flex: 1 1 44%;
    }
    .wk11-split .wk1-thumb {
        height: 104px;
    }
    .wk11-split .wk1-title {
        font-size: 12px;
    }
    .wk11-split .wk1-item:first-child {
        flex: 1 0 100%;
        grid-template-columns: minmax(0, 1fr);
        margin-top: 4px;
    }
    .wk11-split .wk1-item:first-child .wk1-thumb {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
    .wk11-split .wk1-item:first-child .wk1-idx {
        right: 12px;
        bottom: 8px;
        font-size: 24px;
    }
    .wk11-split .wk1-item:first-child .wk1-info {
        padding: 18px;
    }
    .wk11-split .wk1-item:first-child .wk1-title {
        font-size: 18px;
    }
    .wk11-split .wk1-item:first-child .wk1-meta {
        margin-top: 8px;
        font-size: 12px;
    }
    .wk11-split .wk1-item:first-child .wk1-desc {
        margin: 10px 0 14px;
        font-size: 13px;
        line-height: 1.72;
    }
    .wk11-split .wk1-item:first-child .wk1-btn {
        padding: 9px 22px;
        font-size: 13px;
    }
}
.ad2-nums{counter-reset:ad2no;display:grid;grid-template-columns:repeat(2,1fr);column-gap:46px}
.ad2-nums > .ad1-item{counter-increment:ad2no;position:relative;display:grid;grid-template-columns:auto 1fr;column-gap:20px;row-gap:8px;padding:26px 0;border-top:1px solid #e6eaf0;background:none;border-radius:0;box-shadow:none}
.ad2-nums > .ad1-item:nth-child(1),
.ad2-nums > .ad1-item:nth-child(2){border-top:0}
.ad2-nums .ad1-toggle{display:none}
.ad2-nums .ad1-icon{display:none}
.ad2-nums .ad1-num{grid-column:1;grid-row:1 / span 2;align-self:start;font-size:0;line-height:1;color:var(--accent);font-weight:800}
.ad2-nums .ad1-num::before{content:counter(ad2no,decimal-leading-zero);font-size:54px;line-height:1}
.ad2-nums .ad1-label{display:inline}
.ad2-nums .ad1-title{grid-column:2;grid-row:1;font-size:18px;font-weight:700;color:var(--primary);margin:0;line-height:1.4}
.ad2-nums .ad1-desc{grid-column:2;grid-row:2;font-size:14px;line-height:1.8;color:#666;margin:0}
@media (max-width:768px){
  .ad2-nums{grid-template-columns:1fr;column-gap:0}
  .ad2-nums > .ad1-item{padding:20px 0;column-gap:14px}
  .ad2-nums > .ad1-item:nth-child(2){border-top:1px solid #e6eaf0}
  .ad2-nums .ad1-num::before{font-size:36px}
  .ad2-nums .ad1-title{font-size:16px}
  .ad2-nums .ad1-desc{font-size:13px}
}
.nw5-cols { column-count:2; column-gap:48px; column-rule:1px solid #e8ecf2 }
.nw5-cols .nw1-item { display:flex; align-items:baseline; gap:14px; padding:15px 2px; border-bottom:1px solid #eef1f6; text-decoration:none; break-inside:avoid; -webkit-column-break-inside:avoid; page-break-inside:avoid; transition:padding .25s ease, background .25s ease, border-color .25s ease }
.nw5-cols .nw1-date { flex:none; width:88px; font-size:12px; letter-spacing:.5px; color:var(--gray); transition:color .25s ease }
.nw5-cols .nw1-title { flex:1; min-width:0; font-size:15px; line-height:1.55; font-weight:600; color:var(--primary); transition:color .25s ease }
.nw5-cols .nw1-idx { flex:none; font-size:12px; line-height:1.6; color:#c9d2dd; transition:color .25s ease }
.nw5-cols .nw1-item:hover { padding-left:10px; background:#f7f9fc; border-bottom-color:var(--accent) }
.nw5-cols .nw1-item:hover .nw1-title { color:var(--accent) }
.nw5-cols .nw1-item:hover .nw1-date { color:var(--primary) }
.nw5-cols .nw1-item:hover .nw1-idx { color:var(--accent) }
@media (max-width:768px) {
    .nw5-cols { column-count:1; column-gap:0; column-rule:none }
    .nw5-cols .nw1-item { gap:10px; padding:12px 2px }
    .nw5-cols .nw1-date { width:76px; font-size:11px }
    .nw5-cols .nw1-title { font-size:14px }
    .nw5-cols .nw1-idx { font-size:11px }
    .nw5-cols .nw1-item:hover { padding-left:6px }
}
.faq7-flow { max-width: 960px; margin: 0 auto; }
.faq7-flow .fq1-item { position: relative; padding: 24px 0 24px 104px; border-top: 1px solid rgba(0, 0, 0, .1); }
.faq7-flow .fq1-item:last-child { border-bottom: 1px solid rgba(0, 0, 0, .1); }
.faq7-flow .fq1-no { position: absolute; top: 22px; left: 0; display: block; font-size: 40px; line-height: 1; font-weight: 800; letter-spacing: -.02em; color: rgba(0, 0, 0, .12); transition: color .3s ease; }
.faq7-flow .fq1-item.open .fq1-no { color: var(--accent); }
.faq7-flow .fq1-q { position: relative; padding-right: 34px; font-size: 17px; line-height: 1.6; font-weight: 700; color: var(--primary); cursor: pointer; transition: color .3s ease; }
.faq7-flow .fq1-item.open .fq1-q { color: var(--accent); }
.faq7-flow .fq1-q::after { content: "+"; position: absolute; top: -2px; right: 0; color: var(--gray); font-size: 22px; line-height: 1.3; transition: transform .3s ease, color .3s ease; }
.faq7-flow .fq1-item.open .fq1-q::after { color: var(--accent); transform: rotate(45deg); }
.faq7-flow .fq1-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq7-flow .fq1-item.open .fq1-a { max-height: 440px; }
.faq7-flow .fq1-a-in { margin: 14px 34px 2px 0; padding: 16px 20px; border-radius: var(--radius); background: var(--light); font-size: 14px; line-height: 1.9; color: var(--gray); }
@media (max-width: 768px) {
    .faq7-flow .fq1-item { padding: 18px 0 18px 62px; }
    .faq7-flow .fq1-no { top: 16px; font-size: 28px; }
    .faq7-flow .fq1-q { padding-right: 26px; font-size: 15px; }
    .faq7-flow .fq1-q::after { font-size: 20px; }
    .faq7-flow .fq1-item.open .fq1-a { max-height: 620px; }
    .faq7-flow .fq1-a-in { margin: 10px 26px 2px 0; padding: 12px 14px; font-size: 13px; }
}
.cm6-quotes { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px }
.cm6-quotes .cm1-item { position:relative; overflow:hidden; padding:36px 26px 24px; background:#fff; border-radius:var(--radius); border-top:3px solid var(--accent); box-shadow:var(--shadow); transition:transform .3s ease }
.cm6-quotes .cm1-item:nth-child(even) { border-top-color:var(--secondary) }
.cm6-quotes .cm1-item:nth-child(3n) { border-top-color:var(--gold) }
.cm6-quotes .cm1-item:hover { transform:translateY(-4px) }
.cm6-quotes .cm1-item::before { content:"\201C"; position:absolute; top:-18px; left:12px; font-family:var(--font); font-size:132px; line-height:1; color:rgba(15,23,42,.06); pointer-events:none }
.cm6-quotes .cm1-head { position:relative; z-index:1; display:flex; align-items:center; gap:12px }
.cm6-quotes .cm1-av { flex:none; width:46px; height:46px; border-radius:14px; object-fit:cover; background:var(--light) }
.cm6-quotes .cm1-who { display:flex; flex-direction:column; gap:3px; min-width:0 }
.cm6-quotes .cm1-name { font-size:15px; font-weight:600; color:var(--primary) }
.cm6-quotes .cm1-date { font-size:12px; color:var(--gray) }
.cm6-quotes .cm1-text { position:relative; z-index:1; margin:16px 0 0; font-size:14px; line-height:1.85; color:#4b5563 }
.cm6-quotes .cm1-idx { position:absolute; top:14px; right:18px; font-size:12px; letter-spacing:1px; color:#c3cad6 }
.cm6-quotes .cm1-initial { position:absolute; right:16px; bottom:10px; font-size:54px; font-weight:700; line-height:1; color:var(--light); pointer-events:none }
@media (max-width:768px) {
    .cm6-quotes { grid-template-columns:minmax(0,1fr); gap:14px }
    .cm6-quotes .cm1-item { padding:28px 16px 18px }
    .cm6-quotes .cm1-item:hover { transform:none }
    .cm6-quotes .cm1-item::before { top:-14px; font-size:96px }
    .cm6-quotes .cm1-av { width:38px; height:38px; border-radius:12px }
    .cm6-quotes .cm1-name { font-size:14px }
    .cm6-quotes .cm1-text { margin-top:12px; font-size:13px; line-height:1.75 }
    .cm6-quotes .cm1-idx { top:12px; right:14px; font-size:11px }
    .cm6-quotes .cm1-initial { font-size:38px }
}
.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; }
}
