/* ===== base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #0a0e12;
    --secondary: #131a20;
    --accent: #00ffa3;
    --gold: #ff8a00;
    --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); }

.nv9-bar { position: relative; z-index: 900; display: flex; align-items: stretch; flex-wrap: wrap; }
.nv9-logo { display: flex; align-items: center; gap: 9px; padding: 18px 30px; background: var(--primary); color: #fff; text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.nv9-ico { font-size: 23px; line-height: 1; }
.nv9-kw { font-size: 21px; font-weight: 800; letter-spacing: 1px; }
.nv9-kw em { font-style: normal; color: var(--gold); }
.nv9-brand { font-size: 11px; color: rgba(255,255,255,0.62); padding-left: 10px; border-left: 1px solid rgba(255,255,255,0.3); }
.nv9-block { flex: 1; display: flex; align-items: center; justify-content: flex-end; background: var(--secondary); min-width: 0; }
.nv9-menu { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; list-style: none; }
.nv9-menu a { display: block; padding: 18px 20px; font-size: 14px; color: rgba(255,255,255,0.9); text-decoration: none; }
.nv9-menu a:hover { background: rgba(255,255,255,0.18); color: #fff; }
@media (max-width:768px) {
    .nv9-bar { flex-direction: column; }
    .nv9-logo { justify-content: center; padding: 12px 16px; }
    .nv9-ico { font-size: 20px; }
    .nv9-kw { font-size: 18px; }
    .nv9-brand { font-size: 10px; padding-left: 8px; }
    .nv9-block { justify-content: center; }
    .nv9-menu { justify-content: center; }
    .nv9-menu a { padding: 10px 12px; font-size: 13px; }
}
.hr3-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    padding: 90px 0;
    background: var(--primary);
    overflow: hidden;
}
.hr3-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hr3-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.34) 50%, rgba(0,0,0,0.74) 100%);
}
.hr3-stage {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}
.hr3-card {
    width: 100%;
    max-width: 640px;
    padding: 54px 48px 46px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.97);
    box-shadow: 0 26px 60px rgba(0,0,0,0.42);
    text-align: center;
}
.hr3-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}
.hr3-genre {
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 14px;
    letter-spacing: 4px;
}
.hr3-title {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.24;
}
.hr3-title span {
    color: var(--accent);
}
.hr3-desc {
    margin-bottom: 30px;
    color: #555;
    font-size: 16px;
    line-height: 1.85;
}
.hr3-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hr3-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .hr3-hero {
        min-height: 460px;
        padding: 56px 0;
    }
    .hr3-card {
        padding: 34px 22px 28px;
    }
    .hr3-mark {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
        font-size: 22px;
    }
    .hr3-genre {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }
    .hr3-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .hr3-desc {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.72;
    }
    .hr3-btn {
        padding: 11px 26px;
        font-size: 14px;
    }
}
.it8-head { margin-bottom: 36px; }
.it8-head .sec-sub { margin-bottom: 0; }
.it8-line { position: relative; max-width: 880px; }
.it8-line::before { content: ""; position: absolute; left: 84px; top: 10px; bottom: 10px; width: 1px; background: rgba(0, 0, 0, .12); }
.it8-row { position: relative; display: grid; grid-template-columns: 84px 1fr; gap: 26px; padding-bottom: 30px; }
.it8-row:last-child { padding-bottom: 0; }
.it8-row::after { content: ""; position: absolute; left: 84px; top: 7px; width: 9px; height: 9px; margin-left: -4px; border-radius: 50%; background: var(--accent); }
.it8-idx { display: block; font-size: 15px; font-weight: 800; letter-spacing: .08em; color: var(--accent); }
.it8-body { padding-left: 30px; }
.it8-body p { margin: 0; color: #555; line-height: 1.95; font-size: 15px; }
.it8-body p strong { color: var(--primary); }
.it8-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(0, 0, 0, .08); }
.it8-stats .it1-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0; text-align: center; background: none; border: 0; border-left: 0; border-radius: 0; }
.it8-stats .it1-num { font-size: 30px; line-height: 1.1; color: var(--primary); }
.it8-stats .it1-lbl { font-size: 13px; color: #666; }
@media (max-width: 768px) {
    .it8-line::before { left: 42px; }
    .it8-row { grid-template-columns: 42px 1fr; gap: 16px; padding-bottom: 22px; }
    .it8-row::after { left: 42px; }
    .it8-body { padding-left: 10px; }
    .it8-stats { grid-template-columns: 1fr; gap: 16px; margin-top: 26px; padding-top: 22px; }
    .it8-stats .it1-num { font-size: 24px; }
}
.wk8-table {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.wk8-head {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 168px 128px 132px;
    align-items: center;
    gap: 16px;
    height: 48px;
    padding: 0 20px;
    background: var(--primary);
}
.wk8-th {
    color: rgba(255,255,255,0.86);
    font-size: 13px;
    letter-spacing: 2px;
}
.wk8-table .wk1-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 168px 128px 132px;
    align-items: center;
    gap: 16px;
    min-height: 78px;
    padding: 0 20px;
    border-bottom: 1px solid #eef1f6;
    transition: background 0.25s ease;
}
.wk8-table .wk1-item:nth-child(even) {
    background: #fafbfd;
}
.wk8-table .wk1-item:last-child {
    border-bottom: none;
}
.wk8-table .wk1-item:hover {
    background: var(--light);
}
.wk8-table .wk1-thumb {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
}
.wk8-table .wk1-thumb img {
    display: none;
}
.wk8-table .wk1-idx {
    color: var(--accent);
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
}
.wk8-table .wk1-badge {
    padding: 1px 9px;
    border-radius: 999px;
    background: var(--light);
    color: var(--secondary);
    font-size: 11px;
    line-height: 1.7;
    white-space: nowrap;
}
.wk8-table .wk1-item:hover .wk1-badge {
    background: #fff;
}
.wk8-table .wk1-info {
    display: contents;
}
.wk8-table .wk1-head {
    display: contents;
}
.wk8-table .wk1-title {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    margin: 0;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}
.wk8-table .wk1-item:hover .wk1-title {
    color: var(--accent);
}
.wk8-table .wk1-meta {
    grid-column: 3;
    grid-row: 1;
    color: var(--gray);
    font-size: 13px;
}
.wk8-table .wk1-tag {
    grid-column: 4;
    grid-row: 1;
    justify-self: start;
    padding: 3px 12px;
    border-radius: 999px;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 12px;
    white-space: nowrap;
}
.wk8-table .wk1-btn {
    grid-column: 5;
    grid-row: 1;
    justify-self: start;
    padding: 7px 20px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: transparent;
    color: var(--accent);
    font-size: 13px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
.wk8-table .wk1-btn:hover {
    background: var(--accent);
    color: #fff;
}
.wk8-table .wk1-desc {
    display: none;
}
@media (max-width: 768px) {
    .wk8-head {
        display: none;
    }
    .wk8-table .wk1-item {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 6px 14px;
        min-height: 0;
        padding: 14px 16px;
    }
    .wk8-table .wk1-thumb {
        grid-column: 1;
        grid-row: 1 / span 5;
        justify-content: flex-start;
    }
    .wk8-table .wk1-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 15px;
    }
    .wk8-table .wk1-meta {
        grid-column: 2;
        grid-row: 2;
        font-size: 12px;
    }
    .wk8-table .wk1-tag {
        grid-column: 2;
        grid-row: 3;
        justify-self: start;
        padding: 2px 10px;
        font-size: 11px;
    }
    .wk8-table .wk1-desc {
        display: -webkit-box;
        grid-column: 2;
        grid-row: 4;
        margin: 0;
        overflow: hidden;
        color: var(--gray);
        font-size: 12px;
        line-height: 1.65;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .wk8-table .wk1-btn {
        grid-column: 2;
        grid-row: 5;
        justify-self: start;
        padding: 6px 15px;
        font-size: 12px;
    }
}
.ad5-acc{max-width:820px;margin:0 auto}
.ad5-acc > .ad1-item{position:relative;background:#fff;border:1px solid #e6eaf0;border-radius:var(--radius);padding:0 22px;margin-bottom:14px;overflow:hidden;transition:box-shadow .3s ease,border-color .3s ease}
.ad5-acc > .ad1-item:hover{box-shadow:var(--shadow);border-color:var(--accent)}
.ad5-acc .ad1-toggle{position:absolute;top:0;left:0;width:1px;height:1px;opacity:0;pointer-events:none}
.ad5-acc .ad1-icon{display:none}
.ad5-acc .ad1-num{display:none}
.ad5-acc .ad1-title{position:relative;font-size:17px;font-weight:700;color:var(--primary);margin:0;line-height:1.5}
.ad5-acc .ad1-label{display:block;cursor:pointer;padding:18px 46px 18px 0}
.ad5-acc .ad1-title::after{content:"+";position:absolute;right:0;top:50%;transform:translateY(-50%);font-size:22px;font-weight:400;line-height:1;color:var(--accent)}
.ad5-acc .ad1-toggle:checked ~ .ad1-title::after{content:"-"}
.ad5-acc .ad1-desc{max-height:0;margin:0;padding:0;font-size:14px;line-height:1.8;color:#666;opacity:0;overflow:hidden;transition:max-height .35s ease,opacity .3s ease,padding .35s ease}
.ad5-acc .ad1-toggle:checked ~ .ad1-desc{max-height:420px;opacity:1;padding-bottom:18px}
@media (max-width:768px){
  .ad5-acc > .ad1-item{padding:0 16px;margin-bottom:10px}
  .ad5-acc .ad1-title{font-size:16px}
  .ad5-acc .ad1-label{padding:15px 38px 15px 0}
  .ad5-acc .ad1-desc{font-size:13px;line-height:1.75}
  .ad5-acc .ad1-toggle:checked ~ .ad1-desc{max-height:520px}
}
.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 }
}
.faq6-deck { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq6-deck .fq1-item { position: relative; border-left: 4px solid transparent; border-radius: 20px; background: #fff; box-shadow: 0 4px 18px rgba(0, 0, 0, .06); transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease; }
.faq6-deck .fq1-item:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, .1); }
.faq6-deck .fq1-item.open { border-left-color: var(--accent); box-shadow: 0 14px 32px rgba(0, 0, 0, .12); }
.faq6-deck .fq1-q { display: flex; align-items: center; gap: 14px; padding: 20px 22px; font-size: 16px; line-height: 1.6; font-weight: 700; color: var(--primary); cursor: pointer; transition: color .3s ease; }
.faq6-deck .fq1-item.open .fq1-q { color: var(--accent); }
.faq6-deck .fq1-no { flex: none; display: block; width: 34px; height: 34px; border-radius: 12px; background: var(--light); color: var(--gray); font-size: 13px; font-weight: 700; line-height: 34px; text-align: center; transition: background .3s ease, color .3s ease; }
.faq6-deck .fq1-item.open .fq1-no { background: var(--accent); color: #fff; }
.faq6-deck .fq1-q::after { content: "+"; flex: none; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; margin-left: auto; border-radius: 50%; background: var(--primary); color: #fff; font-size: 18px; line-height: 1; transition: background .3s ease, transform .3s ease; }
.faq6-deck .fq1-item.open .fq1-q::after { background: var(--accent); transform: rotate(45deg); }
.faq6-deck .fq1-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq6-deck .fq1-item.open .fq1-a { max-height: 480px; }
.faq6-deck .fq1-a-in { margin: 0 22px; padding: 14px 0 20px 48px; border-top: 1px solid rgba(0, 0, 0, .07); font-size: 14px; line-height: 1.9; color: var(--gray); }
@media (max-width: 768px) {
    .faq6-deck { gap: 12px; }
    .faq6-deck .fq1-item { border-radius: 14px; }
    .faq6-deck .fq1-q { gap: 10px; padding: 15px 16px; font-size: 15px; }
    .faq6-deck .fq1-no { width: 28px; height: 28px; border-radius: 9px; font-size: 12px; line-height: 28px; }
    .faq6-deck .fq1-q::after { width: 24px; height: 24px; font-size: 16px; }
    .faq6-deck .fq1-item.open .fq1-a { max-height: 640px; }
    .faq6-deck .fq1-a-in { margin: 0 16px; padding: 12px 0 16px; font-size: 13px; }
}
.cm1-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px }
.cm1-grid .cm1-item { position:relative; overflow:hidden; padding:22px 22px 20px; background:#fff; border:1px solid #e8ecf2; border-radius:var(--radius); box-shadow:var(--shadow); transition:transform .3s ease, box-shadow .3s ease }
.cm1-grid .cm1-item:hover { transform:translateY(-5px); box-shadow:0 18px 36px rgba(15,23,42,.14) }
.cm1-grid .cm1-head { display:flex; align-items:center; gap:12px }
.cm1-grid .cm1-av { flex:none; width:44px; height:44px; border-radius:50%; object-fit:cover; border:2px solid var(--light); background:var(--light) }
.cm1-grid .cm1-who { display:flex; flex-direction:column; gap:3px; min-width:0 }
.cm1-grid .cm1-name { font-size:15px; font-weight:600; color:var(--primary) }
.cm1-grid .cm1-date { font-size:12px; color:var(--gray) }
.cm1-grid .cm1-text { margin:14px 0 0; font-size:14px; line-height:1.8; color:#4b5563 }
.cm1-grid .cm1-idx { position:absolute; top:18px; right:20px; font-size:12px; letter-spacing:1px; color:#c3cad6 }
.cm1-grid .cm1-initial { position:absolute; right:14px; bottom:-16px; font-size:66px; font-weight:700; line-height:1; color:var(--light); pointer-events:none }
@media (max-width:768px) {
    .cm1-grid { grid-template-columns:minmax(0,1fr); gap:14px }
    .cm1-grid .cm1-item { padding:16px 16px 15px }
    .cm1-grid .cm1-item:hover { transform:none }
    .cm1-grid .cm1-av { width:38px; height:38px }
    .cm1-grid .cm1-name { font-size:14px }
    .cm1-grid .cm1-text { margin-top:10px; font-size:13px; line-height:1.75 }
    .cm1-grid .cm1-idx { top:14px; right:16px }
    .cm1-grid .cm1-initial { font-size:48px; bottom:-12px }
}
.ft4-foot { background: var(--primary); color: rgba(255,255,255,0.68); }
.ft4-top { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr; gap: 34px; padding: 46px 20px 34px; }
.ft4-logo { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; }
.ft4-ico { font-size: 20px; line-height: 1; }
.ft4-kw { font-size: 19px; font-weight: 800; letter-spacing: 1px; }
.ft4-kw em { font-style: normal; color: var(--gold); }
.ft4-brand { font-size: 11px; color: rgba(255,255,255,0.44); padding-left: 8px; border-left: 1px solid rgba(255,255,255,0.2); white-space: nowrap; }
.ft4-line { margin-top: 15px; font-size: 13px; line-height: 1.95; color: rgba(255,255,255,0.6); }
.ft4-h { margin-bottom: 15px; font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.ft4-menu { list-style: none; }
.ft4-menu li { margin-bottom: 9px; }
.ft4-menu a { font-size: 13px; color: rgba(255,255,255,0.66); text-decoration: none; }
.ft4-menu a:hover { color: var(--gold); }
.ft4-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.ft4-tags li { padding: 4px 12px; font-size: 12px; color: #fff; border: 1px solid rgba(255,255,255,0.26); border-radius: 999px; }
.ft4-bar { background: rgba(0,0,0,0.26); }
.ft4-barin { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; font-size: 12px; color: rgba(255,255,255,0.56); }
.ft4-copy b { font-weight: 600; color: var(--gold); letter-spacing: 1px; }
@media (max-width:768px) {
    .ft4-top { grid-template-columns: 1fr; gap: 26px; padding: 30px 20px 24px; }
    .ft4-ico { font-size: 18px; }
    .ft4-kw { font-size: 17px; }
    .ft4-brand { font-size: 10px; }
    .ft4-line { margin-top: 11px; font-size: 12px; }
    .ft4-h { margin-bottom: 11px; font-size: 13px; }
    .ft4-menu li { margin-bottom: 8px; }
    .ft4-menu a { font-size: 12px; }
    .ft4-tags li { padding: 3px 10px; font-size: 11px; }
    .ft4-barin { flex-direction: column; gap: 6px; text-align: center; padding: 12px 20px; }
    .ft4-copy { font-size: 11px; }
}


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