/* ============================================================
   style.css
   設置場所: /home/5q7ak_r3989316/public_html/scenario-forest.site/assets/css/style.css
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:     #2D6A4F;
  --green-lt:  #F0F7F4;
  --green-bd:  #B7D5C8;
  --text:      #1C1C1C;
  --muted:     #5C5C5C;
  --hint:      #999;
  --bg:        #FAFAF8;
  --surface:   #FFFFFF;
  --border:    #E2E2DC;
  --serif-f:   'Noto Serif JP', serif;
  --sans-f:    'Noto Sans JP', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans-f);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a { color: var(--green); }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ── Header ── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 56px;
}

.logo {
  font-family: var(--serif-f);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.logo:hover { text-decoration: none; color: var(--green); }

.hdr-nav {
  display: flex;
  gap: 0;
  margin-left: auto;
}
.hdr-nav a {
  padding: 8px 14px;
  font-size: 13px;
  text-decoration: none;
  color: var(--muted);
  transition: color .15s;
  border-bottom: 2px solid transparent;
  line-height: 40px;
}
.hdr-nav a:hover { color: var(--text); }
.hdr-nav a.on {
  color: var(--green);
  border-bottom-color: var(--green);
  font-weight: 700;
}

/* ハンバーガー（SP用） */
.hdr-menu-btn {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hdr-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all .2s;
}

/* SPナビ */
.sp-nav {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.sp-nav.open { display: block; }
.sp-nav a {
  display: block;
  padding: 13px 24px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .15s;
}
.sp-nav a:hover {
  color: var(--text);
  background: var(--green-lt);
}
.sp-nav a.on {
  color: var(--green);
  border-left-color: var(--green);
  font-weight: 700;
  background: var(--green-lt);
}

/* ── Footer ── */
.ft {
  background: var(--text);
  padding: 32px;
  margin-top: auto;
}
.ft-inner { max-width: 860px; margin: 0 auto; }
.ft-logo {
  font-family: var(--serif-f);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.ft-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.ft-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.ft-links a:hover { color: rgba(255,255,255,0.8); }
.ft-copy { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ── セリフ一覧タブ（ラジオボタン方式） ── */
.slist-tab-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
  margin-bottom: 0;
}
.slist-tab-wrap > label {
  flex: 1 1;
  order: -1;
  opacity: .55;
  min-width: 80px;
  padding: .6em 1.2em;
  border-radius: 5px 5px 0 0;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: opacity .15s;
  letter-spacing: .04em;
  user-select: none;
}
.slist-tab-wrap > label:hover { opacity: .8; }
.slist-tab-wrap input[type="radio"] { display: none; }
.slist-tab-wrap > label.r18-label {
  background: #C0392B;
}
.slist-tab-wrap > div {
  display: none;
  width: 100%;
  border-top: 2px solid var(--green);
}
.slist-tab-wrap > label.r18-label ~ div {
  border-top-color: #C0392B;
}
.slist-tab-wrap label:has(:checked) { opacity: 1; }
.slist-tab-wrap label:has(:checked) + div { display: block; }

/* R18ロック表示 */
.r18-locked-notice {
  padding: 24px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.r18-locked-notice p {
  font-size: 13px;
  color: var(--muted);
}
.r18-locked-notice a {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: #C0392B;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s;
}
.r18-locked-notice a:hover { opacity: .85; color: #fff; text-decoration: none; }

/* R18タブ内の注意書き */
.r18-tab-notice {
  font-size: 12px;
  color: #C0392B;
  background: #FEE2E2;
  padding: 8px 14px;
  border-bottom: 1px solid #FECACA;
}

/* 未確認時のR18タイトルのぼかし */
.scard-r18-blur h3 {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}
.scard-r18-blur::after {
  content: '年齢確認が必要です';
  display: block;
  font-size: 12px;
  color: #C0392B;
  margin-top: 4px;
}

/* ── Script card（一覧） ── */
.slist { display: flex; flex-direction: column; }

.scard {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background .15s;
}
.scard:first-child { border-top: 1px solid var(--border); }
.scard:hover {
  background: var(--green-lt);
  margin: 0 -16px;
  padding: 20px 16px;
}

.scard-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.scard-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
}
.scard-sep { color: var(--border); font-size: 12px; }
.scard-time, .scard-len { font-size: 12px; color: var(--hint); }
.scard-author { font-size: 12px; color: var(--muted); }
.scard-author a { color: var(--green); text-decoration: none; }
.scard-author a:hover { text-decoration: underline; }

/* R18バッジ */
.bdg-r18 {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  background: #C0392B;
  color: #fff;
  letter-spacing: .04em;
  vertical-align: middle;
}

.scard h3 {
  font-family: var(--serif-f);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}
.scard .exc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── ページネーション ── */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-top: 36px;
}
.pgbtn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-family: var(--sans-f);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  text-decoration: none;
}
.pgbtn:hover { border-color: var(--green); color: var(--green); }
.pgbtn.cur {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 700;
}
.pager-sep { font-size: 13px; color: var(--hint); padding: 0 4px; }

/* ── 一覧ページ共通 ── */
.list-outer { max-width: 860px; margin: 0 auto; padding: 40px 32px 80px; }

.list-head {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--text);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.list-head h1 {
  font-family: var(--serif-f);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
}
.list-head-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.list-count { font-size: 13px; color: var(--hint); }
.sort-sel {
  padding: 6px 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-family: var(--sans-f);
  color: var(--muted);
  outline: none;
}

/* ── 台本詳細ページ ── */
.detail-outer { max-width: 720px; margin: 0 auto; padding: 28px 32px 80px; }

.bcrumb {
  font-size: 12px;
  color: var(--hint);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.bcrumb a { color: var(--green); text-decoration: none; }
.bcrumb a:hover { text-decoration: underline; }

.detail-type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 8px;
}
.detail-title {
  font-family: var(--serif-f);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.detail-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.detail-meta span { font-size: 13px; color: var(--hint); }
.detail-author { font-size: 13px; color: var(--muted); margin-left: auto; }
.detail-author a {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}
.detail-author a:hover { text-decoration: underline; }

.script-box {
  background: var(--bg);
  border-left: 3px solid var(--green);
  padding: 24px;
  font-size: 15px;
  line-height: 2.3;
  color: var(--text);
  white-space: pre-wrap;
  margin-bottom: 16px;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--green);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans-f);
  cursor: pointer;
  transition: opacity .15s;
  margin-bottom: 32px;
}
.copy-btn:hover { opacity: .85; }
.copy-btn.copied { background: #3B6D11; }

.usage-box {
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  padding: 18px 20px;
  margin-bottom: 40px;
}
.usage-box h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.usage-box ul { padding-left: 16px; }
.usage-box li { font-size: 13px; color: #2D5040; line-height: 1.9; }
.usage-box a { color: var(--green); }

.related h2 {
  font-family: var(--serif-f);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.related-note { font-size: 12px; color: var(--hint); margin-bottom: 16px; }

/* ── トップページ ── */
.top-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 52px 32px 44px;
}
.top-hero-inner { max-width: 860px; margin: 0 auto; }
.top-hero h1 {
  font-family: var(--serif-f);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.top-hero p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 28px;
}
.top-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-main {
  padding: 11px 0;
  width: 180px;
  text-align: center;
  background: var(--green);
  color: #fff;
  border: none;
  font-size: 14px;
  font-family: var(--sans-f);
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
  text-decoration: none;
  display: inline-block;
}
.cta-main:hover { opacity: .85; color: #fff; text-decoration: none; }

/* ランダムピック */
.top-picks {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pick-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.pick-head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.pick-head h2 {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
}
.shuffle-btn {
  padding: 5px 12px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 12px;
  font-family: var(--sans-f);
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
}
.shuffle-btn:hover { border-color: var(--green); color: var(--green); }
.pick-body { padding: 20px; flex: 1; }
.pick-title {
  font-family: var(--serif-f);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.pick-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pick-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.pick-link {
  font-size: 13px;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}
.pick-link:hover { text-decoration: underline; }

/* ── システム音声ページ ── */
.sys-outer { max-width: 860px; margin: 0 auto; padding: 40px 32px 80px; }
.sys-page-head {
  padding-bottom: 16px;
  border-bottom: 2px solid var(--text);
  margin-bottom: 28px;
}
.sys-page-head h1 {
  font-family: var(--serif-f);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.sys-page-head p { font-size: 13px; color: var(--muted); }
.sys-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  color: var(--green);
  font-size: 12px;
  padding: 4px 10px;
  margin-top: 10px;
  font-weight: 700;
}

/* デバイスタブ */
.dev-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.dev-tab {
  padding: 10px 22px;
  font-size: 14px;
  font-family: var(--sans-f);
  color: var(--hint);
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .15s;
  font-weight: 500;
}
.dev-tab:hover { color: var(--muted); }
.dev-tab.on { color: var(--green); border-bottom-color: var(--green); font-weight: 700; }

.dev-panel { display: none; }
.dev-panel.on { display: block; }

.dev-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.dev-card-head h3 {
  font-family: var(--serif-f);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.dev-card-head p { font-size: 12px; color: var(--hint); margin-top: 2px; }

.sys-table { width: 100%; border-collapse: collapse; }
.sys-table thead th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--hint);
  text-align: left;
  padding: 10px 14px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.sys-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}
.sys-table tbody tr:last-child { border-bottom: none; }
.sys-table tbody tr:hover { background: var(--green-lt); }
.sys-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  vertical-align: top;
}
.sys-table tbody td:first-child {
  width: 200px;
  font-size: 12px;
  color: var(--hint);
  white-space: nowrap;
}

/* ── 寄稿フォーム ── */
.contrib-outer { max-width: 680px; margin: 0 auto; padding: 40px 32px 80px; }
.contrib-outer h1 {
  font-family: var(--serif-f);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--text);
  margin-bottom: 28px;
}
.contrib-lead {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 32px;
}
.contrib-notice {
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.contrib-notice h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}
.contrib-notice ul { padding-left: 16px; }
.contrib-notice li { font-size: 13px; color: #2D5040; line-height: 1.9; }

.form-row { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}
.form-label .req {
  font-size: 11px;
  font-weight: 700;
  color: #C0392B;
  margin-left: 6px;
}
.form-label .opt {
  font-size: 11px;
  color: var(--hint);
  margin-left: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  font-family: var(--sans-f);
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--green); }
.form-textarea { min-height: 200px; resize: vertical; line-height: 1.8; }
.form-note { font-size: 12px; color: var(--hint); margin-top: 5px; line-height: 1.6; }
.form-error { font-size: 12px; color: #C0392B; margin-top: 4px; }

.form-submit {
  padding: 12px 0;
  width: 200px;
  background: var(--green);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans-f);
  cursor: pointer;
  transition: opacity .15s;
  margin-top: 8px;
}
.form-submit:hover { opacity: .85; }
.form-submit:disabled { opacity: .5; cursor: not-allowed; }

/* ── 利用規約ページ ── */
.terms-outer { max-width: 760px; margin: 0 auto; padding: 40px 32px 80px; }
.terms-outer h1 {
  font-family: var(--serif-f);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--text);
  margin-bottom: 8px;
}
.terms-date { font-size: 12px; color: var(--hint); margin-bottom: 32px; }

.terms-toc {
  border: 1px solid var(--green-bd);
  background: var(--green-lt);
  padding: 18px 22px;
  margin-bottom: 32px;
}
.terms-toc h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 10px;
}
.terms-toc ol { padding-left: 18px; }
.terms-toc li { font-size: 13px; color: var(--green); line-height: 2.1; }

.terms-block { margin-bottom: 32px; }
.terms-block h2 {
  font-family: var(--serif-f);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.terms-block h3 { font-size: 14px; font-weight: 700; color: var(--text); margin: 14px 0 6px; }
.terms-block p { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 8px; }
.terms-block ul, .terms-block ol { padding-left: 20px; }
.terms-block li { font-size: 14px; color: var(--muted); line-height: 1.9; }
.terms-example {
  font-size: 13px;
  color: var(--hint);
  background: var(--bg);
  border-left: 3px solid var(--border);
  padding: 8px 14px;
  margin: 8px 0;
}
.terms-note {
  font-size: 13px;
  color: var(--green);
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  padding: 10px 14px;
  margin: 10px 0;
}

/* ── 年齢確認ページ ── */
.agegate-outer {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 24px;
}
.agegate-box {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
  padding: 40px 36px;
  text-align: center;
}
.agegate-box h1 {
  font-family: var(--serif-f);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.agegate-box p { font-size: 13px; color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.agegate-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.agegate-yes {
  padding: 11px 0;
  width: 160px;
  background: var(--green);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans-f);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.agegate-yes:hover { opacity: .85; color: #fff; }
.agegate-no {
  padding: 11px 0;
  width: 160px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: var(--sans-f);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.agegate-no:hover { border-color: var(--text); color: var(--text); }
.agegate-note {
  font-size: 11px;
  color: var(--hint);
  margin-top: 20px;
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hdr { padding: 0 20px; }
  .top-hero { padding: 40px 20px 32px; }
  .top-picks { padding: 28px 20px; gap: 16px; }
  .list-outer,
  .detail-outer,
  .sys-outer,
  .contrib-outer,
  .terms-outer { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 860px) {
  .hdr-nav { display: none; }
  .hdr-menu-btn { display: flex; }
}

@media (max-width: 640px) {
  .hdr { padding: 0 16px; }

  .top-hero { padding: 32px 16px 28px; }
  .top-hero h1 { font-size: 26px; }
  .top-ctas { flex-direction: column; }
  .cta-main { width: 100%; }
  .top-picks { grid-template-columns: 1fr; padding: 20px 16px; gap: 14px; }

  .list-outer { padding: 24px 16px 80px; }
  .list-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .list-head-right { width: 100%; justify-content: space-between; }

  .detail-outer { padding: 20px 16px 80px; }
  .detail-title { font-size: 22px; }
  .detail-meta { flex-wrap: wrap; }
  .detail-author { margin-left: 0; }
  .script-box { padding: 16px; font-size: 14px; line-height: 2; }

  .sys-outer { padding: 20px 16px 80px; }
  .dev-tab { padding: 8px 12px; font-size: 13px; }
  .sys-table tbody td:first-child { width: 100px; font-size: 11px; white-space: normal; }
  .sys-table tbody td { padding: 11px 10px; font-size: 13px; }

  .contrib-outer { padding: 24px 16px 80px; }
  .terms-outer { padding: 24px 16px 80px; }

  .pager { gap: 2px; }
  .pgbtn { width: 30px; height: 30px; font-size: 12px; }
}